/* ─── BDA Houston Shared Styles ─── */

:root {
  --black: #0a0a0a;
  --red: #c8102e;
  --red-dark: #9e0c24;
  --white: #f5f3ee;
  --gray: #8a8a8a;
  --gray-light: #1a1a1a;
  --border: #2a2a2a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span { color: var(--red); }

.nav-center {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  list-style: none;
}

.nav-links > li {
  display: flex;
  align-items: center;
}

.nav-links a,
.nav-dropdown-toggle {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.5rem 0.8rem;
  transition: color 0.2s;
  font-family: inherit;
  line-height: 1.4;
}

.nav-links a:hover { color: var(--white); }

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  cursor: pointer;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-dropdown-toggle:hover { color: var(--white); }

.nav-dropdown-toggle::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(10,10,10,0.96);
  border: 1px solid var(--border);
  min-width: 240px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  backdrop-filter: blur(10px);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.2rem;
  color: var(--gray);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.15s, background 0.15s;
}

.nav-dropdown-menu a:hover {
  color: var(--white);
  background: var(--gray-light);
}

.nav-dropdown-label {
  display: block;
  padding: 0.5rem 1.2rem 0.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.nav-dropdown-label:not(:first-child) {
  margin-top: 0.3rem;
  border-top: 1px solid var(--border);
  padding-top: 0.6rem;
}

.nav-dropdown-menu.nav-areas-menu {
  min-width: 200px;
  max-height: 70vh;
  overflow-y: auto;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-phone {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray);
  text-decoration: none;
  letter-spacing: 0.05em;
}

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: 0.2s;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  background: var(--red);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--red);
  color: var(--red);
}

.btn-outline:hover { background: var(--red); color: var(--white); }

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1rem;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2.5rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(200,16,46,0.12) 0%, transparent 70%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(255,255,255,0.015) 80px,
      rgba(255,255,255,0.015) 81px
    );
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.1s forwards;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  max-width: 780px;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s forwards;
}

.hero-title span { color: var(--red); }

.hero-sub {
  max-width: 520px;
  margin-top: 1.8rem;
  font-size: 1.05rem;
  color: #b0b0b0;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.7s 0.35s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s 0.45s forwards;
}

.hero-badges {
  display: flex;
  gap: 2rem;
  margin-top: 4rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s 0.6s forwards;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── SUBPAGE HERO ─── */
.subpage-hero {
  min-height: auto;
  padding: 10rem 2.5rem 4rem;
}

.subpage-hero .hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
}

/* ─── URGENCY BAND ─── */
.urgency {
  background: var(--red);
  padding: 1.4rem 2.5rem;
  text-align: center;
}

.urgency p {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.urgency strong { font-weight: 700; }

/* ─── SECTIONS ─── */
section {
  padding: 5rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 1.2rem;
}

.section-lead {
  font-size: 1.05rem;
  color: #b0b0b0;
  max-width: 560px;
  line-height: 1.7;
}

/* ─── COMPLIANCE SECTION ─── */
.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 3rem;
  border: 1px solid var(--border);
}

.compliance-card {
  padding: 2.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background 0.2s;
}

.compliance-card:hover { background: var(--gray-light); }
.compliance-card:nth-child(2n) { border-right: none; }

.compliance-card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.compliance-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--white);
}

.compliance-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ─── SERVICES ─── */
.services-bg {
  background: var(--gray-light);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 5rem 0;
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 3rem;
  border: 1px solid var(--border);
}

.service-item {
  background: var(--gray-light);
  padding: 2rem 1.8rem;
  transition: background 0.2s;
}

.service-item:hover { background: #222; }

.service-icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  display: block;
}

.service-item h3 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.service-item p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

.service-item a {
  color: var(--red);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 0.8rem;
  transition: color 0.2s;
}

.service-item a:hover { color: var(--white); }

/* ─── PROCESS ─── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid var(--border);
  transition: border-color 0.2s;
}

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

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step h3 {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.step p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ─── CREDIBILITY / WHY US ─── */
.credibility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.cred-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.cred-mark {
  width: 28px;
  height: 28px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.cred-item h3 {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.cred-item p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.55;
}

/* ─── CONTENT SECTIONS (subpages) ─── */
.content-section {
  padding: 5rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.content-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
  margin-bottom: 1.2rem;
}

.content-section p {
  font-size: 0.95rem;
  color: #b0b0b0;
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: 720px;
}

.content-section p strong {
  color: var(--white);
}

.content-section ul {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.content-section ul li {
  font-size: 0.93rem;
  color: #b0b0b0;
  line-height: 1.7;
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
}

.content-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

/* ─── FAQ SECTION ─── */
.faq-list {
  margin-top: 2rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  padding: 0;
}

.faq-question::after {
  content: '+';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-question::after {
  content: '-';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 1rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 680px;
}

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--gray-light);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 4rem 2.5rem;
  text-align: center;
}

.cta-band h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.03em;
  margin-bottom: 0.8rem;
}

.cta-band p {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.cta-band .btn {
  margin: 0 0.5rem;
}

/* ─── AREA LINKS GRID ─── */
.area-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 3rem;
  border: 1px solid var(--border);
}

.area-link {
  background: var(--black);
  padding: 2rem 1.8rem;
  text-decoration: none;
  transition: background 0.2s;
  display: block;
}

.area-link:hover { background: var(--gray-light); }

.area-link h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.area-link p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ─── CONTACT ─── */
.contact-bg {
  background: var(--gray-light);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 5rem 0;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

input, select, textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

input:focus, select:focus, textarea:focus { border-color: var(--red); }
input::placeholder, textarea::placeholder { color: #555; }
textarea { resize: vertical; min-height: 110px; }
select option { background: var(--black); }

.form-note {
  font-size: 0.78rem;
  color: #555;
  margin-top: -0.3rem;
}

.contact-info-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-detail-item label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.contact-detail-item a, .contact-detail-item p {
  font-size: 1rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
}

.contact-detail-item a:hover { color: var(--red); }

.coverage-note {
  margin-top: 2.5rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--border);
}

.coverage-note p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

.coverage-note strong { color: var(--white); }

/* ─── RELATED LINKS ─── */
.related-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.related-link {
  display: block;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.related-link:hover {
  border-color: var(--red);
  background: var(--gray-light);
}

.related-link span {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}

.related-link h4 {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 600;
  margin-top: 0.3rem;
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.footer-col a {
  display: block;
  color: var(--gray);
  text-decoration: none;
  font-size: 0.82rem;
  padding: 0.25rem 0;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--white);
}

.footer-logo span { color: var(--red); }

.footer-legal {
  font-size: 0.78rem;
  color: #444;
  line-height: 1.5;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.5s 0.05s forwards;
}

.breadcrumb a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.15s;
}

.breadcrumb a:hover { color: var(--white); }

.breadcrumb .sep { margin: 0 0.4rem; }

/* ─── DIVIDER ─── */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 1rem 1.2rem; }
  .nav-phone { display: none; }
  .nav-center { display: none; }
  .nav-toggle { display: block; }
  nav.open .nav-center {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.96);
    padding: 1rem;
    border-bottom: 1px solid var(--border);
  }
  nav.open .nav-links { flex-direction: column; }
  nav.open .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    padding-left: 1rem;
    min-width: auto;
    background: transparent;
  }
  .hero { padding: 7rem 1.2rem 4rem; }
  .subpage-hero { padding: 8rem 1.2rem 3rem; }
  section, .content-section { padding: 4rem 1.2rem; }
  .compliance-grid { grid-template-columns: 1fr; }
  .compliance-card { border-right: none; }
  .services-list { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .credibility-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; padding: 0 1.2rem; }
  .form-row { grid-template-columns: 1fr; }
  .services-inner { padding: 0 1.2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  footer { padding: 2rem 1.2rem; }
  .hero-badges { gap: 1rem; }
  .area-links { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-lg { text-align: center; }
}
