/*
Theme Name: USA Investigations LLC
Theme URI: https://usainvestigations.us
Author: USA Investigations LLC
Author URI: https://usainvestigations.us
Description: Professional investigative services theme — Background Checks, Drug Testing, Live Scan Fingerprinting for South Florida.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: usa-investigations
Tags: business, professional, custom-colors, custom-logo, custom-menu, responsive-layout
*/

/* ============================================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */
:root {
  --navy-deep:   #0D1B3E;
  --navy-mid:    #1A2D5A;
  --navy-light:  #243670;
  --red-usa:     #C8102E;
  --flag-red:    #B22234;
  --gold:        #C9A84C;
  --gold-light:  #E0C273;
  --off-white:   #F4F4F0;
  --white:       #FFFFFF;
  --text-dark:   #0D1B3E;
  --text-mid:    #3A4A6B;
  --text-muted:  #6B7A99;
  --border:      #E5E7EB;
  --green-wa:    #25D366;

  --radius: 0.25rem;

  --shadow-elegant: 0 10px 30px -10px rgba(13,27,62,0.35);
  --shadow-gold:    0 10px 30px -12px rgba(201,168,76,0.5);
  --shadow-red:     0 10px 30px -12px rgba(200,16,46,0.45);
  --shadow-nav:     0 2px 20px rgba(0,0,0,0.4);

  --gradient-navy: linear-gradient(135deg, #0D1B3E 0%, #1A2D5A 60%, #243670 100%);
  --gradient-gold: linear-gradient(135deg, #C9A84C 0%, #E0C273 100%);
  --gradient-hero: linear-gradient(to right, #0D1B3E 35%, rgba(13,27,62,0.7) 65%, rgba(13,27,62,0.4) 100%);
  --gradient-banner: linear-gradient(to right, #0D1B3E 40%, rgba(13,27,62,0.75) 100%);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;

  --container-max: 1280px;
  --container-mid: 1152px;
  --container-sm:  896px;
}

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

html { font-family: var(--font-sans); scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--white);
  color: var(--navy-deep);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea, button { font-family: inherit; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  letter-spacing: -0.015em;
  line-height: 1.15;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

.container-mid  { max-width: var(--container-mid); }
.container-sm   { max-width: var(--container-sm); }

/* ============================================================
   NAVBAR
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow 0.3s ease;
}
#site-header.scrolled { box-shadow: var(--shadow-nav); }

/* Utility bar */
.nav-utility-bar {
  background-color: var(--navy-mid);
  color: rgba(255,255,255,0.9);
  font-size: 0.6875rem;
}
.nav-utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 2rem;
}
.nav-utility-left { display: none; align-items: center; gap: 0.5rem; }
@media (min-width: 640px) { .nav-utility-left { display: flex; } }
.nav-utility-right { display: flex; align-items: center; gap: 1rem; margin-left: auto; }
@media (min-width: 640px) { .nav-utility-right { gap: 1.5rem; } }
.nav-phone-link {
  display: flex; align-items: center; gap: 0.375rem;
  color: var(--gold); font-weight: 600;
  transition: color 0.2s;
}
.nav-phone-link:hover { color: var(--gold-light); }
.nav-hours { display: none; align-items: center; gap: 0.375rem; }
@media (min-width: 768px) { .nav-hours { display: flex; } }

/* Main nav bar */
.nav-main-bar {
  background-color: var(--navy-deep);
  border-bottom: 2px solid var(--red-usa);
}
.nav-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 92px;
}
@media (min-width: 1024px) { .nav-main-inner { height: 112px; } }

.nav-logo img {
  height: 64px;
  width: auto;
}
@media (min-width: 1024px) { .nav-logo img { height: 84px; } }

/* Desktop nav links */
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-link {
  position: relative;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

/* Desktop CTA */
.nav-cta-wrap { display: none; }
@media (min-width: 1024px) { .nav-cta-wrap { display: flex; } }
.btn-nav-book {
  display: inline-block;
  background-color: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  transition: box-shadow 0.2s, transform 0.2s;
}
.btn-nav-book:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

/* Mobile hamburger */
.nav-hamburger {
  display: flex;
  background: none;
  border: none;
  color: var(--white);
  padding: 0.5rem;
}
@media (min-width: 1024px) { .nav-hamburger { display: none; } }

/* Mobile menu */
.nav-mobile-menu {
  display: none;
  padding-top: 0.5rem;
  padding-bottom: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fade-up 0.3s ease-out both;
}
.nav-mobile-menu.open { display: block; }
.nav-mobile-link {
  display: block;
  padding: 0.75rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.9);
  transition: background 0.2s;
}
.nav-mobile-link:hover { background: rgba(255,255,255,0.05); }
.nav-mobile-link.active { background: rgba(255,255,255,0.05); color: var(--gold); }
.btn-mobile-book {
  display: block;
  text-align: center;
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  background-color: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  border-radius: var(--radius);
}
.btn-mobile-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius);
}

/* MiniFlag SVG utility */
.mini-flag {
  display: inline-block;
  width: 1.5rem;
  height: 0.875rem;
  border-radius: 1px;
  overflow: hidden;
  vertical-align: middle;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  position: relative;
  background-color: var(--navy-deep);
  color: rgba(255,255,255,0.8);
  border-top: 3px solid var(--red-usa);
  overflow: hidden;
}
.footer-flag-watermark {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
}
.footer-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  padding: 3.5rem 0;
}
@media (min-width: 768px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }

.footer-logo img { height: 4rem; width: auto; margin-bottom: 1.25rem; }
.footer-desc { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.7); }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  border: 1px solid rgba(201,168,76,0.5);
  background: rgba(201,168,76,0.1);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.footer-col-title {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}
.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; }
.footer-contact-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.footer-contact-item .fi { color: var(--red-usa); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: var(--gold); font-weight: 600; }
.footer-contact-item a:hover { text-decoration: underline; }
.footer-hours { font-size: 0.75rem; }
.footer-hours-label { color: rgba(255,255,255,0.55); }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
.footer-links a { transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-bottom-right { display: flex; align-items: center; gap: 0.5rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 15px 40px -12px rgba(201,168,76,0.6); }
.btn-navy {
  background: var(--navy-deep);
  color: var(--white);
}
.btn-navy:hover { background: var(--red-usa); }
.btn-red {
  background: var(--red-usa);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-red:hover { background: var(--navy-deep); }
.btn-outline-red {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--red-usa);
}
.btn-outline-red:hover { background: var(--red-usa); }
.btn-outline-navy {
  background: transparent;
  color: var(--navy-deep);
  border: 2px solid var(--navy-deep);
}
.btn-outline-navy:hover { background: var(--navy-deep); color: var(--white); }
.btn-sm { padding: 0.75rem 1.5rem; font-size: 0.75rem; }

/* ============================================================
   HERO SECTION (Homepage)
   ============================================================ */
.hero-section {
  position: relative;
  background-color: var(--navy-deep);
  color: var(--white);
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero-flag {
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 60%;
  opacity: 0.08;
  pointer-events: none;
}
.hero-flag svg { width: 100%; height: 100%; }
.hero-gradient {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  pointer-events: none;
}
.hero-content {
  position: relative;
  width: 100%;
  padding: 5rem 0 8rem;
}
@media (min-width: 1024px) { .hero-content { padding: 7rem 0 10rem; } }
.hero-inner { max-width: 48rem; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; animation: fade-up 0.7s ease-out both; }
.badge-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(201,168,76,0.6);
  background: rgba(201,168,76,0.1);
  padding: 0.25rem 0.875rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.badge-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
  padding: 0.25rem 0.875rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--white);
}

.hero-title {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
}
.text-red { color: var(--red-usa); }
.hero-divider {
  margin-top: 1.75rem;
  height: 3px;
  width: 60px;
  background: var(--gold);
  animation: fade-up 0.7s ease-out both;
  animation-delay: 0.4s;
}
.hero-tags {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  animation: fade-up 0.7s ease-out both;
  animation-delay: 0.4s;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--white);
}
.hero-tag svg { color: var(--gold); }
.hero-serving {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  animation: fade-up 0.7s ease-out both;
  animation-delay: 0.5s;
}
.hero-ctas {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fade-up 0.7s ease-out both;
  animation-delay: 0.5s;
}

/* Stat bar */
.hero-stat-bar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: rgba(13,27,62,0.85);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(201,168,76,0.4);
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
}
@media (min-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(3,1fr);
    gap: 0;
    divide-x: 1px solid rgba(255,255,255,0.1);
  }
  .hero-stat:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.1); }
}
.hero-stat { text-align: center; }
@media (min-width: 640px) { .hero-stat { padding: 0 1.5rem; } }
.hero-stat-n {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
@media (min-width: 1024px) { .hero-stat-n { font-size: 1.875rem; } }
.hero-stat-l {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.65);
  margin-top: 0.25rem;
}

/* ============================================================
   QUOTE BANNER (Red section)
   ============================================================ */
.quote-banner {
  position: relative;
  background-color: var(--red-usa);
  color: var(--white);
  overflow: hidden;
}
.flag-stripe-overlay {
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,0.05) 0px,
    rgba(255,255,255,0.05) 6px,
    transparent 6px,
    transparent 12px
  );
}
.quote-banner-inner {
  position: relative;
  display: grid;
  gap: 2rem;
  padding: 3rem 0;
}
@media (min-width: 1024px) {
  .quote-banner-inner { grid-template-columns: 2fr 3fr; gap: 3rem; padding: 4rem 0; align-items: center; }
}
.quote-banner-title { font-family: var(--font-display); font-size: 1.875rem; font-weight: 700; line-height: 1.2; }
.quote-banner-sub { margin-top: 0.75rem; color: rgba(255,255,255,0.85); font-size: 1rem; }

/* Quote Form */
.quote-form-grid { display: grid; gap: 0.75rem; }
.quote-form-fields { display: grid; gap: 0.75rem; }
@media (min-width: 640px) { .quote-form-fields { grid-template-columns: repeat(3,1fr); } }
.quote-form-input {
  width: 100%;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy-deep);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  outline: none;
}
.quote-form-input:focus { box-shadow: 0 0 0 2px var(--gold); }
.quote-form-input::placeholder { color: var(--text-muted); }
.quote-form-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--white);
  color: var(--red-usa);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  transition: all 0.2s;
}
.quote-form-btn:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-1px);
}
.quote-form-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.quote-success {
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 1.5rem;
  text-align: center;
}
.quote-success p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 0.5rem;
}

/* ============================================================
   AUTO SLIDER / MARQUEE
   ============================================================ */
.auto-slider-section {
  position: relative;
  background-color: var(--navy-deep);
  border-top: 1px solid rgba(201,168,76,0.3);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding: 2rem 0;
  overflow: hidden;
}
.auto-slider-label {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gold);
}
.marquee-mask {
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  padding: 0 1rem;
  animation: marquee-x 35s linear infinite;
}
.marquee-mask:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  padding: 0.75rem 1.25rem;
  color: var(--white);
  transition: border-color 0.2s;
}
.marquee-item:hover { border-color: rgba(201,168,76,0.6); }
.marquee-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(200,16,46,0.9);
  color: var(--white);
  flex-shrink: 0;
  box-shadow: var(--shadow-red);
}
.marquee-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ============================================================
   SERVICES CARDS (Homepage)
   ============================================================ */
.services-section {
  padding: 5rem 0 6rem;
  background: var(--white);
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--red-usa);
}
.section-eyebrow.gold { color: var(--gold); }
.section-title {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-deep);
  font-size: clamp(1.875rem, 4vw, 3rem);
}
.section-title.white { color: var(--white); }
.section-divider {
  margin: 1rem auto 0;
  height: 3px;
  width: 2.5rem;
  background: var(--gold);
}
.services-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px)  { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4,1fr); } }

.service-card {
  position: relative;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red-usa);
  padding: 1.75rem;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.5s cubic-bezier(0.2,0.8,0.2,1);
  will-change: transform;
}
.service-card:hover {
  transform: perspective(1000px) rotateX(4deg) rotateY(-6deg) translateY(-6px) translateZ(10px);
  box-shadow: 0 30px 60px -20px rgba(13,27,62,0.45), 0 18px 36px -18px rgba(200,16,46,0.25);
  border-top-color: var(--gold);
}
.service-card-num {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  font-weight: 900;
  color: rgba(13,27,62,0.06);
  user-select: none;
  pointer-events: none;
}
.service-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--gold);
  margin-bottom: 1.25rem;
  transition: background 0.2s, color 0.2s;
}
.service-card:hover .service-card-icon { background: var(--red-usa); color: var(--white); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 0.5rem;
}
.service-card p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.7; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--navy-deep);
  transition: color 0.2s;
}
.service-card-link:hover { color: var(--red-usa); }

/* ============================================================
   TRUST/WHY US SECTION
   ============================================================ */
.trust-section {
  position: relative;
  background-color: var(--navy-mid);
  border-top: 3px solid var(--red-usa);
  padding: 5rem 0 6rem;
}
.trust-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 640px)  { .trust-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .trust-grid { grid-template-columns: repeat(4,1fr); } }
.trust-item {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
@media (min-width: 640px) { .trust-item { text-align: left; } }
.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--red-usa);
  color: var(--white);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-red);
}
.trust-item h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}
.trust-item p { font-size: 0.875rem; color: rgba(255,255,255,0.65); margin-top: 0.5rem; line-height: 1.65; }

/* ============================================================
   ABOUT SNIPPET (Homepage two-col)
   ============================================================ */
.about-section { padding: 5rem 0 6rem; background: var(--off-white); }
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: repeat(2,1fr); gap: 4rem; } }
.about-quote-card {
  position: relative;
  background: var(--navy-deep);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-elegant);
  overflow: hidden;
}
@media (min-width: 1024px) { .about-quote-card { padding: 3rem; } }
.about-quote-icon {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 8rem;
  height: 8rem;
  color: rgba(200,16,46,0.3);
}
.about-quote-inner { position: relative; }
.about-quote-eyebrow { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.35em; color: var(--gold); }
.about-quote-text {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1.55;
}
@media (min-width: 1024px) { .about-quote-text { font-size: 1.5rem; } }
.about-quote-divider { margin-top: 1.5rem; height: 2px; width: 3rem; background: var(--gold); }
.about-quote-author { margin-top: 0.75rem; font-size: 0.875rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; }
.about-right-eyebrow { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.35em; color: var(--red-usa); }
.about-right-title { margin-top: 0.75rem; font-family: var(--font-display); font-size: clamp(1.875rem, 3vw, 2.25rem); font-weight: 700; color: var(--navy-deep); }
.about-right-divider { margin-top: 1rem; height: 3px; width: 2.5rem; background: var(--gold); }
.about-right-text { margin-top: 1.5rem; color: var(--text-mid); line-height: 1.7; }
.about-checklist { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.about-checklist li {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--navy-deep);
  font-weight: 500;
}
.check-icon { color: var(--gold); flex-shrink: 0; }

/* ============================================================
   CROSSLINK CTA
   ============================================================ */
.crosslink-section {
  padding: 4rem 0 5rem;
  position: relative;
  border-top: 3px solid var(--red-usa);
}
.crosslink-section.light { background: var(--white); }
.crosslink-section.dark  { background: var(--navy-deep); }
.crosslink-header { text-align: center; margin-bottom: 2.5rem; }
.crosslink-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px)  { .crosslink-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .crosslink-grid { grid-template-columns: repeat(3,1fr); } }

.crosslink-card {
  position: relative;
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  overflow: hidden;
  display: block;
  transition: all 0.2s;
}
.crosslink-card.light-card { background: var(--off-white); }
.crosslink-card.dark-card  { background: rgba(255,255,255,0.04); }
.crosslink-card:hover {
  border-left-color: var(--red-usa);
  transform: translateY(-4px);
  box-shadow: var(--shadow-elegant);
}
.crosslink-card.light-card:hover { background: var(--white); }
.crosslink-card.dark-card:hover  { background: rgba(255,255,255,0.08); }
.crosslink-card-inner { display: flex; align-items: flex-start; gap: 1rem; }
.crosslink-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--gold);
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.crosslink-card:hover .crosslink-icon { background: var(--red-usa); color: var(--white); }
.crosslink-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  transition: color 0.2s;
}
.crosslink-card.light-card .crosslink-title { color: var(--navy-deep); }
.crosslink-card.dark-card  .crosslink-title { color: var(--white); }
.crosslink-card:hover .crosslink-title { color: var(--red-usa); }
.crosslink-sub { font-size: 0.875rem; margin-top: 0.25rem; }
.crosslink-card.light-card .crosslink-sub { color: var(--text-mid); }
.crosslink-card.dark-card  .crosslink-sub { color: rgba(255,255,255,0.65); }
.crosslink-visit {
  margin-top: 0.75rem;
  display: inline-flex; align-items: center; gap: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: color 0.2s;
}
.crosslink-card.light-card .crosslink-visit { color: var(--navy-deep); }
.crosslink-card.dark-card  .crosslink-visit { color: var(--gold); }
.crosslink-card:hover .crosslink-visit { color: var(--red-usa); }
.crosslink-visit svg { transition: transform 0.2s; }
.crosslink-card:hover .crosslink-visit svg { transform: translateX(4px); }

/* ============================================================
   PAGE BANNER (inner pages)
   ============================================================ */
.page-banner {
  position: relative;
  background: var(--navy-deep);
  overflow: hidden;
  border-bottom: 2px solid var(--gold);
}
.page-banner-flag {
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 60%;
  opacity: 0.06;
  pointer-events: none;
}
.page-banner-brushstroke-1 {
  position: absolute;
  left: -3rem;
  top: 50%;
  transform: translateY(-50%) rotate(-18deg);
  width: 16rem;
  height: 14px;
  background: var(--red-usa);
  opacity: 0.8;
  border-radius: 2px;
  box-shadow: var(--shadow-red);
  pointer-events: none;
}
.page-banner-brushstroke-2 {
  position: absolute;
  left: 2rem;
  top: calc(50% + 16px);
  transform: rotate(-18deg);
  width: 11rem;
  height: 6px;
  background: var(--red-usa);
  opacity: 0.5;
  border-radius: 9999px;
  pointer-events: none;
}
.page-banner-inner {
  position: relative;
  text-align: center;
  padding: 4rem 0 5rem;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1024px) { .page-banner-inner { padding: 5rem 0; } }
.page-banner-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 0.75rem;
  animation: fade-up 0.7s ease-out both;
}
.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  animation: fade-up 0.7s ease-out 0.1s both;
}
.page-banner-sub {
  margin-top: 1rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  animation: fade-up 0.7s ease-out 0.2s both;
}
@media (min-width: 640px) { .page-banner-sub { font-size: 1.125rem; } }
.page-banner-breadcrumb {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  animation: fade-up 0.7s ease-out 0.3s both;
}
.page-banner-breadcrumb a { transition: color 0.2s; }
.page-banner-breadcrumb a:hover { color: var(--gold); }
.page-banner-breadcrumb .current { color: var(--gold); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-page-intro { padding: 5rem 0; }
.about-intro-text { font-size: 1.125rem; color: var(--text-mid); line-height: 1.7; }
.about-stats-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .about-stats-grid { grid-template-columns: repeat(3,1fr); } }
.about-stat-card {
  border-radius: var(--radius);
  border-top: 3px solid var(--red-usa);
  border: 1px solid var(--border);
  background: var(--white);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-elegant);
}
.about-stat-card svg { color: var(--gold); margin: 0 auto 0.75rem; }
.about-stat-card .stat-n { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--navy-deep); }
.about-stat-card .stat-d { font-size: 0.875rem; color: var(--text-muted); }
.team-section { background: var(--off-white); padding: 5rem 0; }
.team-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(2,1fr); } }
.team-card {
  position: relative;
  border-radius: var(--radius);
  background: var(--white);
  padding: 2rem;
  box-shadow: var(--shadow-elegant);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red-usa);
  overflow: hidden;
}
.team-card-quote-icon {
  position: absolute;
  top: -0.5rem; right: -0.5rem;
  width: 5rem; height: 5rem;
  color: rgba(200,16,46,0.1);
}
.team-avatar {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: var(--gradient-navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}
.team-card-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.team-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--navy-deep); }
.team-role { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); margin-top: 0.25rem; }
.team-bio { color: var(--text-mid); line-height: 1.7; }
.about-cta-section { padding: 5rem 0; background: var(--navy-deep); text-align: center; color: var(--white); }
.about-cta-title { font-family: var(--font-display); font-size: clamp(1.875rem, 4vw, 2.25rem); font-weight: 700; }
.about-cta-sub { margin-top: 1rem; font-size: 1.125rem; color: rgba(255,255,255,0.75); max-width: 40rem; margin-left: auto; margin-right: auto; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-detail-section { padding: 5rem 0; }
.service-detail-section.bg-white   { background: var(--white); }
.service-detail-section.bg-offwhite { background: var(--off-white); }
.service-detail-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .service-detail-grid { grid-template-columns: repeat(2,1fr); } }
.service-detail-grid.reversed .service-detail-left  { order: 2; }
.service-detail-grid.reversed .service-detail-right { order: 1; }
@media (max-width: 1023px) {
  .service-detail-grid.reversed .service-detail-left  { order: 0; }
  .service-detail-grid.reversed .service-detail-right { order: 0; }
}
.service-icon-lg {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  background: var(--red-usa);
  color: var(--white);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-red);
}
.service-detail-title { font-family: var(--font-display); font-size: clamp(1.875rem, 3vw, 2.25rem); font-weight: 700; color: var(--navy-deep); margin-bottom: 1rem; }
.service-detail-divider { height: 3px; width: 2.5rem; background: var(--gold); margin-bottom: 1.25rem; }
.service-detail-body { font-size: 1.125rem; color: var(--text-mid); line-height: 1.7; }
.service-bullets-grid { margin-top: 1.5rem; display: grid; grid-template-columns: repeat(2,1fr); gap: 0.5rem; }
.service-bullet { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--navy-deep); font-weight: 500; }
.service-bullet svg { color: var(--gold); flex-shrink: 0; }
.service-image {
  border-radius: var(--radius);
  overflow: hidden;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-elegant);
}
.service-image img { width: 100%; height: 16rem; object-fit: cover; }
@media (min-width: 1024px) { .service-image img { height: 18rem; } }
.service-highlights-card {
  position: relative;
  border-radius: var(--radius);
  background: var(--navy-deep);
  padding: 2rem;
  box-shadow: var(--shadow-elegant);
  color: var(--white);
  border-top: 3px solid var(--gold);
  overflow: hidden;
  margin-top: 1.5rem;
}
@media (min-width: 1024px) { .service-highlights-card { padding: 2.5rem; } }
.service-highlights-num {
  position: absolute; top: 0.75rem; right: 1rem;
  font-family: var(--font-display); font-size: 5rem; line-height: 1; font-weight: 900;
  color: rgba(255,255,255,0.04); user-select: none; pointer-events: none;
}
.service-highlights-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); margin-bottom: 1.25rem; }
.service-process-list { display: flex; flex-direction: column; gap: 1rem; }
.service-process-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.service-process-dot { margin-top: 0.625rem; width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.service-process-text { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; }
.service-highlights-list { display: flex; flex-direction: column; gap: 0.75rem; }
.service-highlight-item { display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,0.9); }
.service-highlight-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* FAQ Section */
.faq-section {
  position: relative;
  background: var(--off-white);
  padding: 5rem 0;
  overflow: hidden;
  border-bottom: 6px solid var(--gold);
}
.faq-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(45deg, var(--navy-deep) 0, var(--navy-deep) 1px, transparent 1px, transparent 22px);
  pointer-events: none;
}
.faq-top-strip { position: absolute; top: 0; left: 0; right: 0; height: 6px; background: var(--red-usa); }
.faq-header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  background: var(--red-usa);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  padding: 0 1.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: border-left-color 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.faq-item:hover, .faq-item.open { border-left-color: var(--red-usa); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--navy-deep);
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-trigger:hover, .faq-item.open .faq-trigger { color: var(--red-usa); }
.faq-num { font-family: var(--font-display); color: var(--red-usa); font-weight: 700; flex-shrink: 0; }
.faq-chevron { margin-left: auto; flex-shrink: 0; transition: transform 0.3s; color: var(--text-muted); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  padding-left: 2.5rem;
  padding-bottom: 1.25rem;
  display: none;
}
.faq-item.open .faq-answer { display: block; }
.faq-actions { text-align: center; margin-top: 3rem; display: grid; gap: 0.75rem; max-width: 42rem; margin-left: auto; margin-right: auto; }
@media (min-width: 640px) { .faq-actions { grid-template-columns: repeat(3,1fr); } }

/* ============================================================
   APPOINTMENTS PAGE
   ============================================================ */
.appointments-section { padding: 3rem 0 4rem; background: var(--off-white); }
.stepper { display: grid; grid-template-columns: repeat(5,1fr); gap: 0.5rem; margin-bottom: 2rem; }
.step-node { display: flex; flex-direction: column; align-items: center; text-align: center; }
.step-circle {
  display: flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
  border: 2px solid;
  transition: all 0.2s;
}
.step-circle.pending  { background: var(--white); border-color: rgba(36,54,112,0.4); color: var(--text-muted); }
.step-circle.active   { background: var(--red-usa); border-color: var(--red-usa); color: var(--white); box-shadow: var(--shadow-red); }
.step-circle.complete { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
.step-label {
  margin-top: 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
@media (min-width: 640px) { .step-label { font-size: 0.6875rem; } }
.step-label.pending  { color: var(--text-muted); }
.step-label.active   { color: var(--red-usa); }
.step-label.complete { color: var(--navy-deep); }
.wizard-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red-usa);
  border-radius: var(--radius);
  box-shadow: var(--shadow-elegant);
  padding: 1.5rem;
}
@media (min-width: 640px) { .wizard-card { padding: 2rem; } }
.step-eyebrow { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.35em; color: var(--red-usa); }
.step-title { margin-top: 0.25rem; font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--navy-deep); }
.service-choice-grid { margin-top: 1.25rem; display: grid; gap: 1rem; }
@media (min-width: 640px) { .service-choice-grid { grid-template-columns: repeat(2,1fr); } }
.service-choice {
  text-align: left;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-left: 4px solid transparent;
  background: var(--white);
  padding: 1.25rem;
  display: flex; align-items: flex-start; gap: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}
.service-choice:hover { border-left-color: rgba(200,16,46,0.5); }
.service-choice.selected { border-left-color: var(--red-usa); box-shadow: var(--shadow-elegant); transform: translateY(-2px); }
.service-choice-icon {
  display: flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 50%; flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.service-choice-icon.default { background: var(--navy-deep); color: var(--gold); }
.service-choice-icon.selected { background: var(--red-usa); color: var(--white); }
.service-choice-title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: var(--navy-deep); }
.service-choice-desc { font-size: 0.875rem; color: var(--text-mid); margin-top: 0.125rem; }

/* Calendar / date picker */
.date-hint { margin-top: 0.25rem; font-size: 0.875rem; color: var(--text-muted); }
.date-picker-wrap { margin-top: 1.25rem; }
.date-input {
  width: 100%;
  max-width: 20rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--navy-deep);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.date-input:focus { border-color: var(--red-usa); box-shadow: 0 0 0 2px rgba(200,16,46,0.15); }

/* Time slots */
.time-slots-grid { margin-top: 1.25rem; display: grid; grid-template-columns: repeat(2,1fr); gap: 0.75rem; }
@media (min-width: 640px) { .time-slots-grid { grid-template-columns: repeat(3,1fr); } }
.time-slot-btn {
  border-radius: var(--radius);
  border: 2px solid var(--border);
  padding: 0.75rem 1rem;
  font-weight: 700;
  background: var(--white);
  color: var(--navy-deep);
  cursor: pointer;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-size: 0.875rem;
}
.time-slot-btn:hover { border-color: var(--red-usa); color: var(--red-usa); }
.time-slot-btn.selected { border-color: var(--red-usa); background: var(--red-usa); color: var(--white); box-shadow: var(--shadow-red); }

/* Info step fields */
.form-field { margin-bottom: 1rem; }
.form-grid-2 { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-grid-2 { grid-template-columns: repeat(2,1fr); } }
.form-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 0.375rem;
}
.form-label .req { color: var(--red-usa); }
.form-input {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  padding: 0.75rem 1rem;
  color: var(--navy-deep);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus { border-color: var(--red-usa); box-shadow: 0 0 0 2px rgba(200,16,46,0.15); }
.form-input.error { border-color: var(--red-usa); }
.form-error { font-size: 0.75rem; color: var(--red-usa); font-weight: 600; margin-top: 0.25rem; }
.form-textarea { resize: vertical; }
.form-select {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  padding: 0.75rem 1rem;
  color: var(--navy-deep);
  font-size: 1rem;
  outline: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7A99' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-select:focus { border-color: var(--red-usa); box-shadow: 0 0 0 2px rgba(200,16,46,0.15); }

/* Confirm/Review table */
.review-table {
  margin-top: 1.25rem;
  border-radius: var(--radius);
  background: var(--navy-deep);
  color: var(--white);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.4);
}
.review-row { display: grid; grid-template-columns: 1fr 2fr; padding: 0.75rem 1rem; }
.review-row:not(:last-child) { border-bottom: 1px solid rgba(201,168,76,0.2); }
.review-key { font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); }
.review-val { font-weight: 600; font-size: 0.875rem; }
.alert-box {
  margin-top: 1.25rem;
  display: flex; align-items: flex-start; gap: 0.75rem;
  border-radius: var(--radius);
  padding: 1rem;
  font-size: 0.875rem;
}
.alert-box.red-alert { background: rgba(200,16,46,0.05); border-left: 3px solid var(--red-usa); color: var(--navy-deep); }
.alert-box.gold-alert { background: rgba(201,168,76,0.1); border-left: 3px solid var(--gold); color: var(--navy-deep); }
.alert-icon-red { color: var(--red-usa); flex-shrink: 0; }
.alert-icon-gold { color: var(--gold); flex-shrink: 0; }

/* Wizard footer nav */
.wizard-nav {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.btn-back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  color: var(--navy-deep);
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s;
  font-size: 0.875rem;
}
.btn-back:hover { border-color: var(--navy-deep); }
.btn-back:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-next {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--navy-deep);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 0.875rem;
}
.btn-next:hover { background: var(--red-usa); }
.btn-submit {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: transform 0.2s;
  font-size: 0.875rem;
}
.btn-submit:hover { transform: translateY(-2px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* Booking success */
.booking-success { padding: 4rem 0 6rem; background: var(--navy-deep); min-height: 70vh; }
.booking-success-card {
  border-radius: var(--radius);
  background: var(--navy-deep);
  border: 2px solid rgba(201,168,76,0.4);
  box-shadow: var(--shadow-elegant);
  padding: 2.5rem;
  text-align: center;
  color: var(--white);
}
.booking-success-icon {
  margin: 0 auto 1.25rem;
  width: 6rem; height: 6rem;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  display: flex; align-items: center; justify-content: center;
}
.booking-success-title { font-family: var(--font-display); font-size: 2.25rem; font-weight: 700; color: var(--white); }
.booking-success-ref {
  display: inline-block;
  margin-top: 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(201,168,76,0.4);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
}
.booking-ref-label { font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.25em; color: rgba(255,255,255,0.65); }
.booking-ref-num { font-family: var(--font-display); font-size: 1.875rem; font-weight: 700; letter-spacing: 0.1em; color: var(--gold); margin-top: 0.25rem; }
.booking-success-msg { margin-top: 1.75rem; color: rgba(255,255,255,0.75); max-width: 36rem; margin-left: auto; margin-right: auto; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 4rem 0 5rem; background: var(--off-white); }
.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: repeat(2,1fr); } }
.contact-panel {
  background: var(--navy-deep);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-elegant);
  border-top: 3px solid var(--gold);
}
@media (min-width: 1024px) { .contact-panel { padding: 2.5rem; } }
.contact-panel-eyebrow { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.35em; color: var(--gold); }
.contact-panel-title { margin-top: 0.5rem; font-family: var(--font-display); font-size: 1.875rem; font-weight: 700; }
.contact-panel-sub { margin-top: 0.5rem; color: rgba(255,255,255,0.7); font-size: 0.875rem; }
.contact-info-list { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon {
  display: flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  background: var(--red-usa); color: var(--white); flex-shrink: 0;
}
.contact-info-label { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); }
.contact-info-value { color: rgba(255,255,255,0.85); font-size: 0.875rem; margin-top: 0.25rem; }
.contact-info-value a { color: var(--gold); font-weight: 600; }
.contact-info-value a:hover { text-decoration: underline; }
.contact-info-hours { font-size: 0.875rem; }
.contact-info-hours li { display: flex; gap: 0.5rem; color: rgba(255,255,255,0.85); }
.contact-info-hours .day { color: var(--white); font-weight: 600; }
.contact-note {
  margin-top: 1.75rem;
  display: flex; align-items: flex-start; gap: 0.75rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 1rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
}
.contact-note svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-map {
  margin-top: 1.75rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(201,168,76,0.4);
}
.contact-form-card {
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red-usa);
  box-shadow: var(--shadow-elegant);
  padding: 1.75rem;
}
@media (min-width: 1024px) { .contact-form-card { padding: 2.25rem; } }
.contact-form-eyebrow { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.35em; color: var(--red-usa); }
.contact-form-title { margin-top: 0.5rem; font-family: var(--font-display); font-size: 1.875rem; font-weight: 700; color: var(--navy-deep); }
.contact-form-sub { margin-top: 0.5rem; font-size: 0.875rem; color: var(--text-muted); }
.form-fields-wrap { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-success {
  border-radius: var(--radius);
  background: var(--navy-deep);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-elegant);
  padding: 2.5rem;
  text-align: center;
  color: var(--white);
}
.contact-success svg { margin: 0 auto 1rem; color: var(--gold); }
.contact-success h3 { font-family: var(--font-display); font-size: 1.875rem; font-weight: 700; color: var(--white); }
.contact-success p { color: rgba(255,255,255,0.75); margin-top: 0.5rem; }
.btn-contact-submit {
  width: 100%;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 1rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 1.5rem;
}
.btn-contact-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-contact-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* ============================================================
   FORMS PAGE
   ============================================================ */
.forms-section { padding: 4rem 0 5rem; background: var(--off-white); }
.forms-grid { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .forms-grid { grid-template-columns: 2fr 1fr; } }
.forms-main-card {
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--red-usa);
  padding: 2rem;
  box-shadow: var(--shadow-elegant);
}
@media (min-width: 1024px) { .forms-main-card { padding: 2.5rem; } }
.forms-card-eyebrow { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.35em; color: var(--red-usa); }
.forms-card-title { margin-top: 0.5rem; font-family: var(--font-display); font-size: 1.875rem; font-weight: 700; color: var(--navy-deep); }
.forms-card-divider { height: 3px; width: 2.5rem; background: var(--gold); margin: 0.75rem 0 1.25rem; }
.forms-card-desc { color: var(--text-mid); line-height: 1.7; }
.forms-links-grid { margin-top: 2rem; display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .forms-links-grid { grid-template-columns: repeat(2,1fr); } }
.form-link-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: 1rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid;
  padding: 1.5rem;
  box-shadow: var(--shadow-elegant);
  transition: all 0.2s;
}
.form-link-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 20px 40px -15px rgba(13,27,62,0.3); }
.form-link-icon {
  display: flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 50%;
  transition: transform 0.2s;
}
.form-link-card:hover .form-link-icon { transform: scale(1.1); }
.form-link-title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: var(--navy-deep); line-height: 1.3; }
.form-link-desc { margin-top: 0.375rem; font-size: 0.875rem; color: var(--text-mid); line-height: 1.6; }
.form-link-open {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--red-usa);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  transition: color 0.2s;
}
.form-link-card:hover .form-link-open { color: var(--gold); }
.forms-book-btn {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.btn-book-gradient {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--gradient-gold);
  color: var(--navy-deep);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.875rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
  transition: opacity 0.2s;
}
.btn-book-gradient:hover { opacity: 0.9; }

/* Forms sidebar */
.forms-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card {
  border-radius: var(--radius);
  padding: 1.5rem;
  border-top: 4px solid;
  box-shadow: var(--shadow-elegant);
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1);
}
.sidebar-card:hover { transform: perspective(1000px) rotateX(4deg) rotateY(-6deg) translateY(-6px); }
.sidebar-card.dark { background: var(--navy-deep); color: var(--white); border-top-color: var(--gold); }
.sidebar-card.light { background: var(--white); border: 1px solid var(--border); border-top-color: var(--red-usa); }
.sidebar-card.info-card { background: var(--white); border: 1px solid var(--border); border-left: 3px solid var(--gold); border-top: none; transition: transform 0.35s ease, box-shadow 0.35s ease; }
.sidebar-card.info-card:hover { transform: translateY(-6px) scale(1.015); box-shadow: 0 25px 50px -20px rgba(13,27,62,0.5); }
.sidebar-badge { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; }
.sidebar-badge.gold { color: var(--gold); }
.sidebar-badge.red  { color: var(--red-usa); }
.sidebar-card h3 { margin-top: 0.75rem; font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; }
.sidebar-card.dark h3 { color: var(--white); }
.sidebar-card.light h3 { color: var(--navy-deep); }
.sidebar-card p { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.6; }
.sidebar-card.dark p { color: rgba(255,255,255,0.75); }
.sidebar-card.light p { color: var(--text-mid); }
.info-row { display: flex; align-items: flex-start; gap: 0.75rem; }
.info-row:not(:first-child) { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.info-row svg { color: var(--red-usa); flex-shrink: 0; margin-top: 2px; }
.info-row-title { font-family: var(--font-display); font-weight: 700; color: var(--navy-deep); }
.info-row-desc { font-size: 0.875rem; color: var(--text-mid); margin-top: 0.25rem; }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.whatsapp-tooltip {
  display: none;
  background: var(--navy-deep);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-elegant);
  border-left: 2px solid var(--gold);
  white-space: nowrap;
  animation: fade-up 0.3s ease-out both;
}
@media (min-width: 640px) { .whatsapp-btn:hover .whatsapp-tooltip { display: block; } }
.whatsapp-circle {
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  background: var(--green-wa);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-elegant);
  transition: transform 0.2s;
  border: 2px solid rgba(201,168,76,0.7);
  outline: 2px solid rgba(201,168,76,0.3);
  outline-offset: 2px;
}
.whatsapp-btn:hover .whatsapp-circle { transform: scale(1.1); }

/* ============================================================
   PASSWORD GATE
   ============================================================ */
.password-gate-wrap {
  min-height: 100vh;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}
.password-gate-card {
  width: 100%;
  max-width: 28rem;
  background: rgba(26,45,90,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,76,0.3);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-elegant);
}
.password-gate-logo { margin: 0 auto 1.5rem; }
.password-gate-logo img { height: 5rem; width: auto; margin: 0 auto; }
.password-gate-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--white); }
.password-gate-sub { margin-top: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.password-gate-form { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.password-gate-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.1em;
  outline: none;
  transition: border-color 0.2s;
}
.password-gate-input:focus { border-color: var(--gold); }
.password-gate-input::placeholder { color: rgba(255,255,255,0.4); }
.password-gate-btn {
  width: 100%;
  padding: 0.875rem;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.password-gate-btn:hover { background: var(--gold-light); }
.password-gate-error {
  color: var(--red-usa);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.25rem;
}

/* ============================================================
   LOADING SPINNER
   ============================================================ */
.spin { animation: spin 1s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.usa-toast {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  z-index: 9999;
  background: var(--navy-deep);
  color: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-elegant);
  animation: fade-up 0.3s ease-out both;
  max-width: 22rem;
}
.usa-toast.error { border-left-color: var(--red-usa); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes flag-wave {
  0%, 100% { transform: scaleX(1) skewX(0deg) translateY(0); }
  25%       { transform: scaleX(1.01) skewX(-1.5deg) translateY(-4px); }
  50%       { transform: scaleX(1.02) skewX(0deg) translateY(-6px); }
  75%       { transform: scaleX(1.01) skewX(1.5deg) translateY(-4px); }
}
@keyframes marquee-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.animate-flag-wave { animation: flag-wave 6s ease-in-out infinite; transform-origin: left center; }
.animate-fade-up   { animation: fade-up 0.7s ease-out both; }
.animate-fade-in   { animation: fade-in 0.6s ease-out both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 639px) {
  .hero-stats { text-align: center; }
  .hero-stat-n { font-size: 1.25rem; }
}

/* WordPress core overrides */
.wp-block-image img { border-radius: var(--radius); }
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ============================================================
   CONTACT FORM 7 — Theme integration
   These styles make CF7 output match the existing form design.
   ============================================================ */

/* Remove CF7 default paragraph spacing */
.wpcf7 p { margin: 0; padding: 0; }
.wpcf7 br { display: none; }

/* Inputs and textareas inherit .form-input style via class:form-input in CF7 template */
.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-email,
.wpcf7-form-control.wpcf7-tel,
.wpcf7-form-control.wpcf7-date,
.wpcf7-form-control.wpcf7-textarea {
  width: 100%;
  display: block;
}

/* Select inherits .form-select via class:form-select */
.wpcf7-form-control.wpcf7-select { width: 100%; display: block; }

/* Span wrapper — make it block so it doesn't break layout */
.wpcf7-form-control-wrap { display: block; }

/* Inline validation error — matches .form-error style */
.wpcf7-not-valid-tip {
  display: block;
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  font-weight: 500;
}

/* Submit button — inherits .btn-contact-submit via class:btn-contact-submit */
.wpcf7-form-control.wpcf7-submit {
  cursor: pointer;
  border: none;
}

/* CF7 spinner (inside submit button) */
.wpcf7-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(13,27,62,.3);
  border-top-color: var(--navy-deep);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: 0.5rem;
  vertical-align: middle;
}
.wpcf7-submit:disabled .wpcf7-spinner { visibility: visible; }

/* Response output box (success / error) */
.wpcf7-response-output {
  margin: 1.25rem 0 0;
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
}
.wpcf7-mail-sent-ok {
  background: #d1fae5;
  color: #065f46;
  border-left: 4px solid #10b981;
}
.wpcf7-mail-sent-ng,
.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
  background: #fee2e2;
  color: #991b1b;
  border-left: 4px solid var(--red-usa);
}
.wpcf7-spam-blocked {
  background: #fef3c7;
  color: #92400e;
  border-left: 4px solid #f59e0b;
}
