/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0a1628;
  --navy-dark: #060e1a;
  --navy-light: #111e33;
  --gold: #c9a84c;
  --gold-dark: #b08f3a;
  --white: #ffffff;
  --gray: #b0b8c4;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', system-ui, sans-serif;
  --top-bar-height: 40px;
  --header-height: 80px;
  --total-header: 120px; /* top-bar + header */
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--white);
  background: var(--navy);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TOP BAR ===== */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: var(--navy-dark);
  height: var(--top-bar-height);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--top-bar-height);
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-bar-social a {
  color: var(--gold);
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.top-bar-social a:hover {
  opacity: 0.7;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
}

.top-bar-phone {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: opacity 0.3s ease;
}

.top-bar-phone:hover {
  opacity: 0.7;
}

.top-bar-divider {
  color: rgba(201, 168, 76, 0.4);
}

.top-bar-email {
  color: var(--gold);
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.top-bar-email:hover {
  opacity: 0.7;
}

.top-bar-espanol {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== MAIN HEADER ===== */
.site-header {
  position: fixed;
  top: var(--top-bar-height);
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 20px;
  gap: 12px;
}

/* Logo Block */
.logo-block {
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0;
}

.logo-img {
  height: 58px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.15));
}

.logo-text {
  display: flex;
  flex-direction: column;
  margin-left: 12px;
}

.logo-text .firm-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.2;
}

.logo-text .firm-pllc {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.logo-text .firm-pllc::before,
.logo-text .firm-pllc::after {
  content: '';
  display: block;
  height: 1px;
  width: 30px;
  background: var(--gold);
  opacity: 0.7;
}

/* Main Nav */
.main-nav ul {
  display: flex;
  gap: 14px;
  align-items: center;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.main-nav li {
  position: relative;
}

.main-nav li + li::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.15);
}

.main-nav a {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  position: relative;
  padding: 0 4px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 4px;
  right: 4px;
  width: auto;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.main-nav a:hover {
  color: var(--gold);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.main-nav a.nav-podcast {
  color: var(--gold);
}

.main-nav a.nav-podcast::after {
  transform: scaleX(1);
  opacity: 0.4;
}

.main-nav a.nav-podcast:hover::after {
  opacity: 1;
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang-toggle {
  display: flex;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.lang-toggle button {
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 4px 8px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.lang-toggle button.active {
  background: var(--gold);
  color: var(--navy);
}

.lang-toggle button:hover {
  background: var(--gold);
  color: var(--navy);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  animation: phone-glow 2.5s ease-in-out infinite;
}

.header-phone:hover {
  background: var(--gold);
  color: var(--navy);
  animation: none;
}

@keyframes phone-glow {
  0%, 100% { box-shadow: 0 0 4px rgba(201, 168, 76, 0.2); }
  50% { box-shadow: 0 0 14px rgba(201, 168, 76, 0.5); }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--total-header);
  background:
    linear-gradient(to right, rgba(10, 22, 40, 0.92) 50%, rgba(10, 22, 40, 0.75) 100%),
    url('/images/hero-bg.jpg') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  display: none;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Hero Brand Badge */
.hero-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.hero-brand-text {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-brand-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  min-width: 30px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  white-space: nowrap;
}

.hero-content h1 .gold {
  color: var(--gold);
  font-family: var(--font-heading);
}

.hero-content .subheadline {
  font-size: 1.15rem;
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.7;
  max-width: 520px;
}

.hero-divisions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.division-pill {
  border-left: 3px solid var(--gold);
  padding: 8px 16px;
  font-size: 0.9rem;
  color: var(--gray);
  letter-spacing: 0.5px;
  max-width: fit-content;
}

.division-pill strong {
  color: var(--white);
  font-weight: 700;
}

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

.hero-google-badge {
  margin-top: 28px;
}

.hero-google-badge a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.hero-google-badge a:hover {
  opacity: 1;
}

.hero-google-badge .badge-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.hero-google-badge .badge-text {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

/* Hero Form */
.hero-form-wrapper {
  background: var(--navy-light);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 40px;
}

.hero-form-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
}

.hero-form-wrapper .form-sub {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 24px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a84c' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-group select option {
  background: var(--navy);
  color: var(--white);
}

.form-group select optgroup {
  background: var(--navy);
  color: var(--gold);
  font-style: normal;
}

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

.form-group .error-text {
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #e74c3c;
}

.form-group.has-error .error-text {
  display: block;
}

.pi-note {
  display: none;
  color: var(--gold);
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 8px;
}

.pi-note.visible {
  display: block;
}

.form-submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-submit-btn:hover {
  background: var(--gold-dark);
}

.form-message {
  margin-top: 12px;
  padding: 12px;
  text-align: center;
  font-size: 0.9rem;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(39, 174, 96, 0.15);
  border: 1px solid #27ae60;
  color: #27ae60;
}

.form-message.error {
  display: block;
  background: rgba(231, 76, 60, 0.15);
  border: 1px solid #e74c3c;
  color: #e74c3c;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--navy-light);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 40px 0;
}

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

.trust-item .trust-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}

.trust-item .trust-label {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== PRACTICE AREAS ===== */
.practice-areas {
  padding: 100px 0;
  background: var(--navy);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-header h2 .gold {
  color: var(--gold);
}

.section-header p {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.practice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.practice-card {
  background: var(--navy-light);
  border-top: 4px solid var(--gold);
  padding: 48px 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.practice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.practice-card h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
}

.practice-area-note {
  font-size: 0.85rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 20px;
  opacity: 0.8;
}

.practice-card ul {
  margin-bottom: 28px;
}

.practice-card li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  font-size: 1rem;
  color: var(--gray);
}

.practice-card li::before {
  content: '\25C6';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 12px;
}

/* ===== WHY SANTOS ===== */
.why-santos {
  padding: 100px 0;
  background: var(--navy-light);
}

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

.why-card {
  text-align: center;
  padding: 40px 24px;
}

.why-card .why-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--white);
}

.why-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== GOOGLE REVIEWS ===== */
.reviews {
  padding: 100px 0;
  background: var(--navy);
}

.reviews-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-viewport {
  overflow: hidden;
  flex: 1;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.review-card {
  background: #0d1f38;
  padding: 24px 22px;
  border-top: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 48px) / 3);
}

.review-card .review-quote {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 2px;
  opacity: 0.6;
}

.review-card .review-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.review-card .review-text {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 14px;
  font-style: italic;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card .review-author {
  font-weight: 700;
  color: var(--gold);
  font-size: 0.9rem;
}

.review-card .review-date {
  font-weight: 400;
  color: var(--gray);
  font-size: 0.75rem;
  margin-top: 4px;
}

/* Carousel Arrows */
.carousel-arrow {
  background: none;
  border: 2px solid var(--gold);
  color: var(--gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.carousel-arrow:hover {
  background: var(--gold);
  color: var(--navy);
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

.reviews-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===== SERVICE AREAS ===== */
.service-areas {
  padding: 80px 0;
  background: var(--navy-light);
  text-align: center;
}

.county-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.county-pill {
  padding: 12px 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.county-pill:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--gold);
  padding: 80px 0;
  text-align: center;
}

.final-cta h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 600;
}

.final-cta .cta-phone {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--navy);
  font-weight: 700;
  display: block;
  margin-bottom: 28px;
  transition: opacity 0.3s ease;
}

.final-cta .cta-phone:hover {
  opacity: 0.8;
}

.btn-navy {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-navy:hover {
  background: transparent;
  color: var(--navy);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col p,
.footer-col li {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
}

.footer-col a {
  color: var(--gold);
  transition: opacity 0.3s ease;
}

.footer-col a:hover {
  opacity: 0.7;
}

.footer-col ul li {
  padding: 4px 0;
  font-weight: 400;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.footer-social a {
  color: var(--gold);
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.footer-social a:hover {
  opacity: 0.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom .disclaimer {
  font-size: 0.8rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 12px;
  line-height: 1.6;
  opacity: 0.7;
}

.footer-bottom .copyright {
  font-size: 0.8rem;
  color: var(--gray);
  opacity: 0.5;
}

/* ===== MOBILE CALL BAR ===== */
.mobile-call-bar {
  display: none;
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--gold);
}

.mobile-nav a.nav-podcast {
  color: var(--gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .top-bar-social {
    display: none;
  }

  .main-nav ul {
    gap: 10px;
  }

  .main-nav a {
    font-size: 0.68rem;
    padding: 0 2px;
    letter-spacing: 0.5px;
  }

  .main-nav li + li::before {
    left: -5px;
  }

  .logo-text .firm-name {
    font-size: 0.95rem;
    letter-spacing: 1px;
  }

  .logo-img {
    height: 52px;
  }

  .review-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 768px) {
  :root {
    --top-bar-height: 0px;
    --header-height: 70px;
    --total-header: 70px;
  }

  .top-bar {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .main-nav,
  .lang-toggle {
    display: none;
  }

  .logo-text {
    display: none;
  }

  .logo-img {
    height: 50px;
  }

  .hamburger {
    display: flex;
  }

  .header-inner {
    height: 70px;
  }

  .hero {
    padding-bottom: 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.8rem;
    white-space: normal;
  }

  .hero-content .subheadline {
    margin: 0 auto 28px;
  }

  .hero-divisions {
    align-items: center;
  }

  .division-pill {
    max-width: none;
    justify-content: center;
  }

  .hero-brand {
    justify-content: center;
  }

  .hero-brand-text {
    font-size: 0.8rem;
    letter-spacing: 3px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-google-badge {
    text-align: center;
  }

  .hero-form-wrapper {
    padding: 28px 20px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .practice-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .review-card {
    flex: 0 0 100%;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .final-cta h2 {
    font-size: 2rem;
  }

  .final-cta .cta-phone {
    font-size: 2.25rem;
  }

  .mobile-nav {
    top: 70px;
    height: calc(100vh - 70px);
  }

  .mobile-nav .lang-toggle-mobile {
    display: flex;
    gap: 8px;
  }

  .mobile-nav .lang-toggle-mobile button {
    background: none;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 20px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .mobile-nav .lang-toggle-mobile button.active {
    background: var(--gold);
    color: var(--navy);
  }

  /* Mobile Call Bar */
  .mobile-call-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--gold);
  }

  .mobile-call-bar a {
    display: block;
    text-align: center;
    padding: 14px;
    color: var(--navy);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }

  .site-footer {
    padding-bottom: 60px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-gold,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .county-pills {
    gap: 10px;
  }

  .county-pill {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .header-phone {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .hero-brand-text {
    font-size: 0.7rem;
    letter-spacing: 2px;
  }
}

/* ===== BILINGUAL (ES) ===== */
body.lang-es [data-lang-en] {
  display: none;
}

body.lang-es [data-lang-es] {
  display: initial;
}

body:not(.lang-es) [data-lang-es] {
  display: none;
}

body:not(.lang-es) [data-lang-en] {
  display: initial;
}
