/* ============================================
   GEORGE LAW — MIAMI DUI MICROSITE
   Shared Styles
============================================ */

@import url('https://fonts.googleapis.com/css2?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');

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Barlow:wght@300;400;500;600&display=swap');

:root {
  --gl-red: #d03816;
  --navy: #0a1628;
  --navy-mid: #112240;
  --navy-light: #1a3a5c;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-pale: #f5e7c0;
  --white: #ffffff;
  --off-white: #f8f6f1;
  --gray-light: #e8e4dc;
  --gray-mid: #9a9486;
  --text-dark: #1a1612;
  --text-body: #3a3530;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-display: 'Cormorant Garamond', serif;
  --font-sans: 'Barlow', sans-serif;
  --font-poppins: 'Poppins', sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.35s var(--ease-out);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

p {
  font-family: var(--font-poppins) !important;
}

a {
  text-decoration: none;
  font-family: var(--font-poppins) !important;
}

span {
  font-family: var(--font-poppins) !important;
}

ul li {
  font-family: var(--font-poppins) !important;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--off-white);
  color: var(--text-body);
  font-family: var(--font-poppins);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

.section-padding {
  padding: 100px 0;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  padding: 12px 40px 12px 10px;

  background: url("../images/down-arrow-black.png") no-repeat right 15px center !important;
  background-size: 20px !important;
}



/* ---- NAV ---- */
.main-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* height: 76px; */
  padding: 20px 0;
}

.site-nav .container-fluid {
  padding: 0;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;


  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  /* transition: box-shadow 0.3s ease; */
  background: #0e3a51;
}

.site-nav.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
}

.nav-logo img {
  width: 200px;
}

.nav-logo-main {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.nav-logo-sub {
  font-family: var(--font-poppins);
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.nav-links a {
  font-family: var(--font-poppins);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
  display: flex;
  /* padding-bottom: 2px; */
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--gl-red);
  transition: right var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gl-red);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  right: 0;
}

.nav-cta {
  background: var(--gl-red);
  color: white !important;
  padding: 10px 22px;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  transition: all 0.3s ease !important;
  cursor: pointer;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  /* background: var(--gold-light) !important; */
  transform: translateY(-2px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ---- FOOTER ---- */
.site-footer {
  background: #0e3a51;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 72px;
  padding-bottom: 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #ffffff54;
}

.footer-logo-social-icon ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-social-icon ul li a {
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

.footer-logo-social-icon ul li a:hover,
.footer-logo-social-icon ul li a:hover i {
  border-color: var(--gl-red);
  color: var(--gl-red);
  transition: all 0.3s ease;
}

.footer-logo-social-icon ul li a i {
  border: 1px solid white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand .nav-logo-main {
  font-size: 1.5rem;
}

.footer-brand .nav-logo-sub {
  font-size: 0.65rem;
  margin-bottom: 16px;
  display: block;
}

.footer-tagline {
  color: white;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1rem;
}

.footer-col h4 {
  font-family: var(--font-poppins);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.footer-col ul a:hover {
  color: var(--gl-red);
}

.footer-col ul a:hover i {
  border-color: var(--gl-red);
}

.footer-contact p {
  font-size: 1;
  margin-bottom: 6px;
}

.footer-contact ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact ul li a i {
  border: 1px solid white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.footer-contact a {
  color: var(--gold-light);
  text-decoration: none;
}

.footer-bottom {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  color: white;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom a {
  color: white;
  text-decoration: none;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gl-red);
  color: white;
  font-family: var(--font-poppins);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 11px 24px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease !important;
}

.btn-primary:hover {
  background: var(--gl-red);
  transition: all 0.3s ease;
  transform: translateY(-2px);
  /* box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3); */
}

.btn-outline {
  display: inline-block;
  border: 1px solid var(--gl-red);
  color: var(--gl-red);
  background: transparent;
  font-family: var(--font-poppins);
  font-size: 0.8rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 11px 24px;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--gl-red);
  transform: translateY(-2px);
  transition: all 0.3s ease;
  color: white;
}

.btn-outline-white {
  border: 1px solid #fff;
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 11px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ---- SECTION HEADERS ---- */
.section-label {
  display: block;
  font-family: var(--font-poppins);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gl-red);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title.on-dark {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 560px;
  line-height: 1.8;
}

.section-subtitle.on-dark {
  color: rgba(255, 255, 255, 0.7);
}

/* ---- GOLD DIVIDER ---- */
.gold-rule {
  width: 60px;
  height: 2px;
  background: var(--gl-red);
  margin: 20px 0 28px;
}

/* ---- PAGE WRAPPER ---- */
.page-wrap {
  padding-top: 76px;
}

/* ---- INNER PAGE HERO ---- */
.inner-banner-section {
  /* background: var(--navy); */
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.inner-banner-section .section-label {
  color: var(--white);
}

.inner-banner-section::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background-color: #0000006e;
  z-index: 0;
}

.inner-banner-img {
  position: absolute;
  width: 100%;
  height: 100%;
}

.inner-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-hero {
  padding-top: 150px;
  padding-bottom: 0px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* .inner-banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
} */

.inner-hero-content {
  position: relative;
}

.inner-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.home-page-content-wrapper {
  /* padding: 80px 0; */
}

.inner-hero-sub-content {
  color: #fff;
  max-width: 560px;
  font-size: 1.05rem;
  margin-top: 12px;
}

.inner-hero .breadcrumb {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.inner-hero .breadcrumb a {
  color: var(--gl-red);
  text-decoration: none;
}

/* ---- EMERGENCY BAR ---- */
.emergency-bar {
  background: var(--gl-red);
  color: white;
  text-align: center;
  padding: 10px 24px;
  font-family: var(--font-poppins);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1001;
  line-height: normal;
}

.emergency-bar a {
  color: white;
  text-decoration: none;
}

/* ---- CARD STYLES ---- */
.card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--gl-red);
}

/* ---- POPUP OVERLAY ---- */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.85);
  z-index: 9999;
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
}

.popup-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease forwards;
  overflow: auto;
}

.popup-box {
  background: var(--white);
  width: 90%;
  max-width: 580px;
  padding: 30px 20px;
  position: relative;
  animation: slideUp 0.4s var(--ease-out) forwards;
  margin: auto auto;
}

.popup-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gl-red), var(--gl-red));
}

.popup-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--gray-mid);
  transition: color 0.2s;
  line-height: 1;
}

.popup-close:hover {
  color: var(--navy);
}

.popup-box h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.popup-box p {
  color: var(--gray-mid);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 16px;
  border: 1px solid var(--gray-light);
  background: var(--off-white);
  font-family: var(--font-poppins);
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: border-color 0.2s ease;
  outline: none;
  appearance: none;
  /* text-transform: capitalize; */
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gl-red);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ---- ANIMATE ON SCROLL ---- */
.anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.anim.visible {
  opacity: 1;
  transform: none;
}

.anim-delay-1 {
  transition-delay: 0.1s;
}

.anim-delay-2 {
  transition-delay: 0.2s;
}

.anim-delay-3 {
  transition-delay: 0.3s;
}

.anim-delay-4 {
  transition-delay: 0.4s;
}



/* ------------------------------------------------------------- */
/* ------------------- Home Page Css Start --------------------- */
/* ------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 145px;
  z-index: 3;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgb(10 22 40 / 43%) 0%, rgb(10 22 40 / 19%) 50%, rgba(10, 22, 40, 0.45) 100%);
  z-index: 1;
}


/* Fallback gradient behind video */
/* .hero::before {
  content: '';
  position: absolute;
  inset: 0;
 background: linear-gradient(110deg, rgb(10 22 40 / 43%) 0%, rgb(10 22 40 / 19%) 50%, rgba(10, 22, 40, 0.45) 100%);
  z-index: -1;
} */

/* Miami city silhouette accent */
/* .hero-skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.6), transparent);
  z-index: 2;
} */

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-poppins);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: white;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 3.9rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 900px;
}

.hero h1 em {
  font-style: italic;
  color: white;
}

.hero-sub {
  font-size: 1.1rem;
  color: #fff;
  max-width: 650px;
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-badges {
  /* position: absolute;
  right: 48px;
  bottom: 80px; */
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  /* flex-direction: column; */
  gap: 12px;
  margin-top: 40px;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.35);
  backdrop-filter: blur(8px);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-badge-icon {
  width: 36px;
  height: 36px;
  background: var(--gl-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-badge-icon i {
  color: white;
}

.hero-badge-text {
  font-size: 0.78rem;
  color: var(--white);
  line-height: 1.35;
  font-family: var(--font-poppins);
}

.hero-badge-text strong {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
}

/* ---- SCROLL INDICATOR ---- */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 6px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollWheel 1.6s ease infinite;
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  80% {
    transform: translateY(10px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 0;
  }
}

/* ---- URGENCY STRIP ---- */
.start-strap-section {
  background: #0e3a51;
  /* border-top: 2px solid var(--gold); */
  /* border-bottom: 1px solid rgba(201, 168, 76, 0.2); */
  padding: 20px 0;
}

.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.urgency-stat {
  text-align: center;
  flex: 1;
  min-width: 160px;
  border-right: 1px solid rgba(201, 168, 76, 0.2);
}

.urgency-stat:last-child {
  border-right: none;
}

.urgency-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  display: block;
}

.urgency-label {
  font-size: 0.75rem;
  color: white;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

/* ---- WHY ACT NOW ---- */
.why-section {
  background: var(--off-white);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-visual {
  position: relative;
}

.why-image-placeholder {
  background: var(--navy);
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}

.why-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .why-image-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
} */

/* .why-image-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  opacity: 0.15;
} */

.why-accent-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: #0e3a51;
  padding: 28px 32px;
  z-index: 2;
}

.why-accent-card .number {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  display: block;
}

.why-accent-card .label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
}

.why-points {
  list-style: none;
  margin: 28px 0 36px;
}

.why-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-light);
}

.why-point:first-child {
  border-top: 1px solid var(--gray-light);
}

.why-point-icon {
  width: 32px;
  height: 32px;
  background: var(--gl-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-point-icon i {
  color: white;
}

.why-point-text strong {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.why-point-text span {
  font-size: 0.875rem;
  color: #000;
}

/* ---- PROCESS SECTION ---- */
.process-section {
  background: var(--navy);
}

.process-header {
  text-align: center;
  margin-bottom: 64px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  position: relative;
}

.process-step {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 24px;
  position: relative;
  transition: background 0.3s ease;
}

.process-step:hover {
  background: rgba(201, 168, 76, 0.06);
}

.step-img img {
  width: 100%;
/*   aspect-ratio: 4/3; */
}

.step-img {
  margin-bottom: 20px;
}

/* .step-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gl-red);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
} */

.step-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 600;
}

.step-desc {
  font-size: 0.875rem;
  color: #fff;
  line-height: 1.7;
}

.step-icon {
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: 1.4rem;
  opacity: 0.6;
}

/* ---- TESTIMONIALS ---- */
.testimonials-section {
  background: var(--off-white);
}

.testimonials-section .section-title {
  margin-bottom: 0;
}

.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  padding: 36px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 12px;
  left: 28px;
  line-height: 1;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 24px;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--gray-light);
  padding-top: 16px;
}

.author-avatar {
  min-width: 40px;
  min-height: 40px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--font-poppins);
}

.author-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
  display: block;
}

.author-case {
  font-size: 0.75rem;
  color: #000;
}

/* ---- CTA SECTION ---- */
.cta-section {
  background: #f8f3e2;
  text-align: center;
}

.cta-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.cta-section p {
  color: #000;
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.cta-section .btn-outline {
  border-color: var(--navy);
  color: var(--navy);
}

.cta-section .btn-outline:hover {
  background: var(--navy);
  color: white;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}



/* ------------------------------------------------------------- */
/* ------------------- About Page Css Start -------------------- */
/* ------------------------------------------------------------- */

/* Mission block */
.mission-block {
  background: #f8f3e2;
}

.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  color: #000;
  line-height: 1.4;
  font-weight: 500;
}

.mission-quote span {
  color: #000;
}

.mission-content p {
  color: #000;
  line-height: 1.85;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.team-photo {
  background: var(--navy-light);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(201, 168, 76, 0.4);
  position: relative;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.team-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--navy) 0%, transparent 100%);
}

.team-info {
  padding: 28px 28px 32px;
}

.team-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gl-red);
  margin-bottom: 16px;
}

.team-bio {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
}

.team-credentials {
  list-style: none;
  border-top: 1px solid var(--gray-light);
  padding-top: 16px;
  padding-left: 0;
  margin-bottom: 0;
}

.team-credentials li {
  font-size: 0.8rem;
  color: #000;
  padding: 3px 0;
}

.team-credentials li::before {
  content: '✓ ';
  color: var(--gl-red);
  font-weight: 700;
}

/* Credentials bar */
.credentials-bar {
  background: #f8f3e2;
  padding: 48px;
}

.credentials-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.credentials-inner h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 32px;
  text-align: center;
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cred-item {
  background: rgba(10, 22, 40, 0.08);
  padding: 24px;
  text-align: center;
}

.cred-item .icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.cred-item .cred-label {
  font-family: var(--font-poppins);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

/* Why george law */
.why-george {
  background: var(--off-white);
}

.why-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.why-item {
  display: flex;
  gap: 20px;
}

.why-item-icon {
  width: 48px;
  height: 48px;
  background: var(--gl-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.why-item-icon i {
  color: white;
}

.why-item-content h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 600;
}

.why-item-content p {
  font-size: 0.9rem;
  color: #000;
  line-height: 1.7;
}

/* ------------------------------------------------------------- */
/* ------------------- Blog-detail Page Css Start -------------- */
/* ------------------------------------------------------------- */

.blog-detail-banner {
  height: auto;
  padding: 100px 0;
  background: var(--navy);
}

.article-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Article */
.article-header {
  margin-bottom: 36px;
}

.article-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.article-cat {
  background: var(--gl-red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
}

.article-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.8rem;
  color: var(--gray-mid);
  flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}

.article-meta .author-block {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-mini-avatar {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
}

.author-meta-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.875rem;
  display: block;
}

.author-meta-title {
  font-size: 0.72rem;
  color: var(--gray-mid);
}

/* Article hero image */
.article-hero-img {
  background: var(--navy);
  width: 100%;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(201, 168, 76, 0.2);
  position: relative;
  overflow: hidden;
}

.article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
}

/* Article body */
.article-body h2 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 16px;
  line-height: 1.25;
}

.article-body h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin: 28px 0 12px;
}

.article-body p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 20px;
}

.article-body a {
  color: var(--gl-red);
  font-weight: 500;
}

.article-body ul,
.article-body ol {
  margin-top: 16px;
  margin-bottom: 24px;
}

.article-body li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 8px;
}

.article-body ul li::marker {
  color: var(--gl-red);
}

.article-pullquote {
  border-left: 4px solid var(--gl-red);
  padding: 24px 32px;
  margin: 32px 0;
  background: var(--off-white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
}

.article-callout {
  background: #0e3a51;
  padding: 28px 32px;
  margin: 32px 0;
}

.article-callout h4 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.article-callout p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

/* Tags */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px 0;
  border-top: 1px solid var(--gray-light);
  margin-top: 40px;
}

.article-tags a {
  border: 1px solid var(--gray-light);
  padding: 4px 14px;
  font-size: 0.75rem;
  color: var(--gray-mid);
  text-decoration: none;
  transition: all 0.2s;
}

.tag:hover {
  border-color: var(--gl-red);
  color: var(--gl-red);
}

/* Author bio */
.author-bio {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-left: 4px solid var(--gl-red);
  padding: 28px;
  display: flex;
  gap: 20px;
  margin-top: 48px;
}

.author-bio-avatar {
  width: 72px;
  height: 72px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  flex-shrink: 0;
}

.author-bio h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.author-bio .title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gl-red);
  display: block;
  margin-bottom: 10px;
}

.author-bio p {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* Related posts */
.related-posts {
  margin-top: 64px;
}

.related-posts h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-light);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.related-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  padding: 20px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
  display: block;
}

.related-card:hover {
  border-color: var(--gl-red);
  transform: translateY(-2px);
}

.related-card-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.35;
}

.related-card-date {
  font-size: 0.75rem;
  color: var(--gray-mid);
}

/* Sidebar */
.article-sidebar {
  position: sticky;
  top: 180px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.toc-widget {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-top: 3px solid #0e3a51;
  padding: 24px;
}

.toc-widget h4 {
  font-family: var(--font-poppins);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gl-red);
  margin-bottom: 16px;
}

.toc-list {
  list-style: none;
  padding-left: 0;
}

.toc-list li {
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.85rem;
}

.toc-list li:last-child {
  border-bottom: none;
}

.toc-list a {
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.2s;
}

.toc-list a:hover {
  color: var(--gl-red);
}

.toc-list a::before {
  content: '→ ';
  color: var(--gl-red);
  font-size: 0.75rem;
}

.sidebar-attorney-cta-number a {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
}

.sidebar-attorney-cta-number {
  margin-top: 20px;
}

.sidebar-attorney-cta {
  background: var(--navy);
  padding: 32px;
  text-align: center;
}

.sidebar-attorney-cta h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 8px;
}

.sidebar-attorney-cta p {
  font-size: 0.8rem;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.6;
}

.sidebar-attorney-cta .btn-primary {
  width: 100%;
  display: block;
  text-align: center;
}



/* ------------------------------------------------------------- */
/* ------------------- Blog Page Css Start --------------------- */
/* ------------------------------------------------------------- */

.tag-layout {
  display: grid;
  grid-template-columns: 1fr !important;
  gap: 64px;
  align-items: start;
}

.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Featured Post */
.featured-post {
  background: var(--white);
  border: 1px solid var(--gray-light);
  margin-bottom: 32px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.featured-post:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.featured-thumb {
  background: var(--navy);
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(201, 168, 76, 0.25);
  position: relative;
  overflow: hidden;
}

.featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 34, 64, 0.6) 0%, transparent 60%);
}

.featured-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  z-index: 2;
}

.featured-body {
  padding: 36px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--gray-mid);
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.post-meta a {
  color: var(--gray-mid);
}

.post-meta .author {
  font-weight: 500;
}

.post-meta a {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  padding: 2px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.post-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 12px;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}

.post-title:hover {
  color: var(--gl-red);
}

.post-excerpt {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 20px;
}

.read-more {
  font-family: var(--font-poppins);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gl-red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.read-more:hover {
  gap: 10px;
}

/* Post grid */
.tag-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.post-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
  /* border-color: var(--gl-red); */
}

.post-thumb {
  background: var(--navy-mid);
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(201, 168, 76, 0.3);
  position: relative;
}

.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card-body {
  padding: 24px;
}

.post-card .post-title {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.post-card .post-excerpt {
  font-size: 0.875rem;
  margin-bottom: 16px;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 40px;
}

.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-light);
  background: var(--white);
  font-family: var(--font-poppins);
  font-size: 0.85rem;
  color: var(--text-body);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.page-btn:hover,
.page-btn.active {
  background: #0e3a51;
  border-color: #0e3a51;
  color: var(--white);
}

/* Sidebar */
.blog-sidebar {
  position: sticky;
  top: 180px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-search {
  background: var(--white);
  border: 1px solid var(--gray-light);
  padding: 24px;
}

.sidebar-search h4 {
  font-family: var(--font-poppins);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gl-red);
  margin-bottom: 12px;
}

.search-field {
  display: flex;
  border: 1px solid var(--gray-light);
  overflow: hidden;
}

.search-field input {
  flex: 1;
  padding: 10px 14px;
  border: none;
  outline: none;
  font-family: var(--font-poppins);
  font-size: 0.875rem;
  background: var(--off-white);
}

.search-field a {
  padding: 10px 16px;
  background: var(--navy);
  border: none;
  color: var(--white) !important;
  cursor: pointer;
  font-size: 1rem;
}

.sidebar-categories {
  background: var(--white);
  border: 1px solid var(--gray-light);
  padding: 24px;
}



.sidebar-categories h4 {
  font-family: var(--font-poppins);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gl-red);
  margin-bottom: 16px;
}

.cat-list {
  list-style: none;
  padding-left: 0;
}

.cat-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.875rem;
}

.cat-list li:last-child {
  border-bottom: none;
}

.cat-list a {
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.2s;
}

.cat-list a:hover {
  color: var(--gl-red);
}

.cat-count {
  background: var(--off-white);
  padding: 2px 8px;
  font-size: 0.72rem;
  color: var(--gray-mid);
  font-weight: 600;
}

.sidebar-recent {
  background: var(--white);
  border: 1px solid var(--gray-light);
  padding: 24px;
}

.sidebar-recent h4 {
  font-family: var(--font-poppins);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gl-red);
  margin-bottom: 16px;
}

.recent-post {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-light);
}

.recent-post:last-child {
  border-bottom: none;
}

.recent-thumb {
  width: 52px;
  height: 52px;
  background: var(--gl-red);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: rgba(201, 168, 76, 0.4);
}

.recent-thumb i {
  color: white;
}

.recent-info {
  flex: 1;
}

.recent-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  line-height: 1.35;
  display: block;
  margin-bottom: 3px;
  transition: color 0.2s;
}

.recent-title:hover {
  color: var(--gold);
}

.recent-date {
  font-size: 0.72rem;
  color: var(--gray-mid);
}


/* ------------------------------------------------------------- */
/* ------------------- Contact Page Css Start ------------------ */
/* ------------------------------------------------------------- */


.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-top: 4px solid #0e3a51;
  padding: 48px;
}

.contact-form-wrap h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-form-wrap p {
  color: var(--gray-mid);
  font-size: 0.9rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  margin-top: 8px;
}

.form-submit .btn-primary {
  width: 100%;
  display: block;
  text-align: center;
  text-wrap: wrap;
  padding: 11px 24px;
  font-size: 0.85rem;
}

.form-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-mid);
  margin-top: 12px;
  line-height: 1.5;
}

/* Contact info sidebar */

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-block h3 {
  font-family: var(--font-poppins);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 16px;
}

.contact-info-block-btn {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info-block p {
  font-size: 0.78rem;
  color: var(--gray-mid);
  margin-top: 12px;
  line-height: 1.6;
  width: 100%;
}

.contact-info-block p iframe {
  width: 100%;
}

.emergency-call-box {
  background: #f8f3e2;
  padding: 32px;
  text-align: center;
}

.emergency-call-box .label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000;
  display: block;
  margin-bottom: 8px;
}

.emergency-call-box .phone {
  font-family: var(--font-poppins);
  font-size: 1.7rem;
  font-weight: 600;
  color: #000;
  display: block;
  text-decoration: none;
  line-height: 1.1;
  margin-bottom: 8px;
}

.emergency-call-box .available {
  font-size: 0.78rem;
  color: #000;
}

.office-card {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  padding: 24px;
}

.office-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 12px;
}

.office-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-body);
  margin-bottom: 8px;
}

.office-detail-icon {
  color: var(--gl-red);
  width: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.office-detail-icon i {
  color: var(--gl-red);
}

.office-detail a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}

.office-detail a:hover {
  color: var(--gl-red);
}

/* Map placeholder */
.map-placeholder {
  background: var(--navy-light);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201, 168, 76, 0.3);
  font-size: 3rem;
  margin-top: 16px;
  position: relative;
  overflow: hidden;
}

.map-placeholder::after {
  content: 'Map Placeholder — Embed Google Maps';
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-poppins);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.05em;
}

/* FAQ */
.contact-faq-section {
  background: #f8f3e2;
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.faq-intro h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #000;
  margin-bottom: 16px;
}

.faq-intro p {
  color: #000;
  font-size: 0.9rem;
  line-height: 1.7;
}


.faq-item {
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.faq-q {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #000;
  gap: 16px;
  font-weight: 600;
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--gl-red);
}

.faq-icon {
  color: var(--gl-red);
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-a {
  display: none;
  padding: 0 0 20px;
  color: #000;
  font-size: 0.9rem;
  line-height: 1.8;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-item.open .faq-a {
  display: block;
}


/* ------------------------------------------------------------- */
/* ------------------- Dui Defance Page Css Start -------------- */
/* ------------------------------------------------------------- */

.defense-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
}

.defense-main h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 20px;
  margin-top: 40px;
  font-weight: 700;
}

.defense-main h2:first-child {
  margin-top: 0;
}

.defense-main p {
  color: var(--text-body);
  line-height: 1.85;
  font-size: 1rem;
  margin-bottom: 20px;
}

.defense-sidebar {
  position: sticky;
  top: 180px;
}

.sidebar-cta {
  background: #0e3a51;
  padding: 36px 32px;
  margin-bottom: 24px;
}

.sidebar-cta h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
}

.sidebar-cta p {
  font-size: 0.875rem;
  color: #fff;
  margin-bottom: 24px;
}

.sidebar-cta .btn-primary {
  width: 100%;
  text-align: center;
  display: block;
}

.sidebar-phone {
  background: #f8f3e2;
  padding: 20px 24px;
  text-align: center;
  margin-bottom: 24px;
}

.sidebar-phone a {
  font-family: var(--font-poppins);
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  display: block;
}

.sidebar-phone span {
  font-size: 0.75rem;
  color: #000;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sidebar-list {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  padding: 24px;
}

.sidebar-list h4 {
  font-family: var(--font-poppins);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gl-red);
  margin-bottom: 16px;
}

.sidebar-list ul {
  list-style: none;
  padding-left: 0;
}

.sidebar-list ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.875rem;
}

.sidebar-list ul li:last-child {
  border-bottom: none;
}

.sidebar-list ul li a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.sidebar-list ul li a:hover {
  color: var(--gl-red);
}

.sidebar-list ul li::before {
  content: '→ ';
  color: var(--gl-red);
  font-size: 0.8rem;
}

/* Defense types accordion */
.dui-types {
  margin: 40px 0;
}

.dui-type {
  border: 1px solid var(--gray-light);
  margin-bottom: 8px;
  overflow: hidden;
}

.dui-type-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--white);
  transition: background 0.2s ease;
}

.dui-type-header:hover {
  background: var(--off-white);
}

.dui-type-header.open {
  background: #0e3a51;
  color: var(--white);
}

.dui-type-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: inherit;
}

.dui-type-subtitle {
  font-size: 0.78rem;
  color: #fff;
  margin-top: 2px;
}

.dui-type-header:not(.open) .dui-type-subtitle {
  color: #000;
}

.dui-toggle {
  width: 28px;
  height: 28px;
  background: var(--gl-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.open .dui-toggle {
  transform: rotate(45deg);
}

.dui-type-body {
  display: none;
  padding: 24px;
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
}

.dui-type-body.open {
  display: block;
}

/* Defenses section */
.defenses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.defense-card {
  background: var(--off-white);
  border-left: 3px solid var(--gl-red);
  padding: 20px;
}

.defense-card h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
  font-weight: 600;
}

.defense-card p {
  font-size: 0.85rem;
  color: var(--gray-mid);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Penalties table */
.penalties-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.9rem;
}

.penalties-table th {
  background: #0e3a51;
  color: #fff;
  padding: 14px 16px;
  text-align: left;
  font-family: var(--font-poppins);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.penalties-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-light);
  color: var(--text-body);
  font-family: var(--font-poppins);
}

.penalties-table tr:nth-child(even) td {
  background: var(--off-white);
}

.penalty-severe {
  color: #c0392b;
  font-weight: 600;
}

.penalty-warning {
  color: #e67e22;
  font-weight: 600;
}

.article-body table {
  margin: 20px 0;
}

.article-body table,
.article-body td,
.article-body th {
  border: 1px solid;
  padding: 7px;
  line-height: normal;
  /* font-size: 12px; */
}
.article-body td strong{
  color: var(--navy);
  font-weight: 600;
}

/* ---------------------------------------------- */
/* ------------- 404 Page ----------------------- */
/* ---------------------------------------------- */

.error-page-wrapper {
  display: flex;
  justify-content: center;
}

.error-page {
  min-height: 100dvh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 220px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

/* Background decorative elements */
.error-page::before {
  content: '404';
  position: absolute;
  font-family: var(--font-serif);
  font-size: clamp(180px, 30vw, 340px);
  font-weight: 900;
  color: rgba(201, 168, 76, 0.05);
  letter-spacing: -0.04em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.error-page::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.error-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
}

.error-badge {
  display: inline-block;
  font-family: var(--font-poppins);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 7px 20px;
  margin-bottom: 32px;
  animation: fadeUp 0.6s var(--ease-out) both;
}

.error-code {
  font-family: var(--font-poppins);
  font-size: clamp(64px, 10vw, 96px);
  font-weight: 700;
  color: var(--gl-red);
  line-height: 1;
  margin-bottom: 16px;
  animation: fadeUp 0.6s 0.1s var(--ease-out) both;
}

.error-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 20px;
  animation: fadeUp 0.6s 0.15s var(--ease-out) both;
}

.error-divider {
  width: 60px;
  height: 2px;
  background: var(--gl-red);
  margin: 0 auto 24px;
  animation: fadeUp 0.6s 0.2s var(--ease-out) both;
}

.error-text {
  font-family: var(--font-poppins);
  font-size: 1rem;
  font-weight: 300;
  color: white;
  line-height: 1.75;
  margin-bottom: 40px;
  animation: fadeUp 0.6s 0.25s var(--ease-out) both;
}

.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s var(--ease-out) both;
}

.error-nav-links {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  animation: fadeUp 0.6s 0.4s var(--ease-out) both;
}

.error-nav-links p {
  font-family: var(--font-poppins);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}

.error-nav-links ul {
  list-style: none;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-nav-links ul a {
  font-family: var(--font-poppins);
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

.error-nav-links ul a:hover {
  color: var(--gold);
}

.error-emergency {
  margin-top: 48px;
  animation: fadeUp 0.6s 0.45s var(--ease-out) both;
}

.error-emergency a {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.error-emergency a:hover {
  color: var(--gold-light);
}

.error-emergency span {
  display: block;
  font-family: var(--font-poppins);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 6px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ------------------------------------------ */
/* --------------- Thank you page css ------- */
/* ------------------------------------------ */

.thankyou-page {
  min-height: 100vh;
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 200px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle background texture */
.thankyou-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(10, 22, 40, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.thankyou-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  width: 100%;
  text-align: center;
}

/* Checkmark icon */
.thankyou-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #0e3a51;
  margin: 0 auto 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popIn 0.5s var(--ease-out) both;
  position: relative;
}

.thankyou-icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid #d0381647;
  animation: ringExpand 0.8s 0.3s var(--ease-out) both;
}

.thankyou-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--gl-red);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thankyou-icon svg path {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: drawCheck 0.5s 0.4s ease forwards;
}

.thankyou-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
  animation: fadeUp 0.6s 0.25s var(--ease-out) both;
}

.thankyou-divider {
  width: 60px;
  height: 2px;
  background: var(--gl-red);
  margin: 0 auto 24px;
  animation: fadeUp 0.6s 0.3s var(--ease-out) both;
}

.thankyou-text {
  font-family: var(--font-poppins);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 40px;
  animation: fadeUp 0.6s 0.35s var(--ease-out) both;
}

/* Actions */
.thankyou-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.45s var(--ease-out) both;
  margin-bottom: 40px;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.7);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ringExpand {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

input[name="date-793"],
input[name="date-961"] {
  text-transform: lowercase;
}

/* -------------------------------- */

input[name="date-793"],
input[name="date-961"] {
  -webkit-appearance: none;
  appearance: none;
  height: 46px;
  min-height: 46px;
  max-height: 46px;
  padding: 12px 16px;
  box-sizing: border-box;
  line-height: normal;
  display: block;
  width: 100%;
  color: transparent;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

input[type="date"]::-webkit-datetime-edit {
    color: #000 !important;
}

input[name="date-793"]:valid,
input[name="date-961"]:valid,
input[name="date-793"]:focus,
input[name="date-961"]:focus {
  color: #000 !important;
}

input[name="date-793"]::-webkit-datetime-edit,
input[name="date-961"]::-webkit-datetime-edit,
input[name="date-793"]::-webkit-datetime-edit-fields-wrapper,
input[name="date-961"]::-webkit-datetime-edit-fields-wrapper,
input[name="date-793"]::-webkit-datetime-edit-text,
input[name="date-961"]::-webkit-datetime-edit-text,
input[name="date-793"]::-webkit-datetime-edit-month-field,
input[name="date-961"]::-webkit-datetime-edit-month-field,
input[name="date-793"]::-webkit-datetime-edit-day-field,
input[name="date-961"]::-webkit-datetime-edit-day-field,
input[name="date-793"]::-webkit-datetime-edit-year-field,
input[name="date-961"]::-webkit-datetime-edit-year-field {
  color: #000 !important;
  line-height: normal;
  padding: 0;
}

input[name="date-793"]:valid::-webkit-datetime-edit,
input[name="date-961"]:valid::-webkit-datetime-edit,
input[name="date-793"]:valid::-webkit-datetime-edit-fields-wrapper,
input[name="date-961"]:valid::-webkit-datetime-edit-fields-wrapper,
input[name="date-793"]:valid::-webkit-datetime-edit-text,
input[name="date-961"]:valid::-webkit-datetime-edit-text,
input[name="date-793"]:valid::-webkit-datetime-edit-month-field,
input[name="date-961"]:valid::-webkit-datetime-edit-month-field,
input[name="date-793"]:valid::-webkit-datetime-edit-day-field,
input[name="date-961"]:valid::-webkit-datetime-edit-day-field,
input[name="date-793"]:valid::-webkit-datetime-edit-year-field,
input[name="date-961"]:valid::-webkit-datetime-edit-year-field {
  color: #000 !important;
}

@supports (-webkit-touch-callout: none) {
  .date-arrest-field {
    height: 46px !important;
    min-height: 46px !important;
    max-height: 46px !important;
    padding: 12px 16px !important;
    line-height: normal !important;
    font-size: 0.9rem !important;
    display: block !important;
    text-align: left !important;
    -webkit-appearance: none !important;
  }

  .date-arrest-field::-webkit-datetime-edit {
    display: block !important;
    position: relative !important;
    text-align: left !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    width: 100% !important;
  }

  .date-arrest-field::-webkit-datetime-edit-fields-wrapper {
    display: block !important;
    text-align: left !important;
    padding: 0 !important;
    line-height: 1.4 !important;
    width: 100% !important;
  }

  .date-arrest-field::-webkit-date-and-time-value {
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}