/* Root Variables */
:root {
  --black: #000000;
  --navy: #0a1628;
  --navy-light: #0d2240;
  --gold: #c9a84c;
  --gold-hover: #b8953f;
  --cream: #f8f6f2;
  --white: #ffffff;
  --text-dark: #333333;
  --text-light: #888888;
  --border-light: #e0d8cc;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--navy);
  margin-bottom: 16px;
}

h1 { font-size: 48px; margin-bottom: 20px; font-weight: bold; }
h2 { font-size: 36px; margin-bottom: 20px; }
h3 { font-size: 20px; margin-bottom: 12px; }
h4 { font-size: 18px; margin-bottom: 8px; }

a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.3s ease;
}
a:hover { opacity: 0.85; }

.gold-text { color: var(--gold); }

/* ===================== TOP NAV ===================== */
.top-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 200;
}

.top-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo { text-decoration: none; display: flex; align-items: center; }
.logo-img { height: 50px; width: auto; }

.search-bar-container { flex: 1; max-width: 400px; position: relative; }

.search-bar {
  width: 100%;
  padding: 10px 16px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
}
.search-bar::placeholder { color: var(--text-light); }
.search-bar:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 2px rgba(201,168,76,0.15); }

.top-nav-right { display: flex; gap: 16px; align-items: center; }
.top-nav-right a, .top-nav-right span { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.top-nav-right a:hover { color: var(--gold); opacity: 1; }
.phone-display { color: var(--navy); font-weight: 700; font-size: 14px !important; }

.social-icons { display: flex; gap: 10px; }
.social-icons a {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  transition: all 0.3s ease;
}
.social-icons a:hover { background: var(--gold); color: var(--black); opacity: 1; }

/* ===================== MAIN NAV ===================== */
nav {
  background: var(--navy);
  padding: 0 20px;
  position: sticky;
  top: 70px;
  z-index: 150;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.nav-toggle {
  display: none;
  background: none; border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 16px 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: stretch;
  margin: 0; padding: 0;
}

.nav-menu li { position: relative; }

.nav-menu > li > a {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 4px;
}

.nav-menu > li > a:hover { background: rgba(201,168,76,0.2); color: var(--gold); opacity: 1; }
.nav-arrow { font-size: 10px; opacity: 0.7; }

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border-light);
  min-width: 280px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  z-index: 200;
}

.nav-menu li:hover .nav-dropdown { display: block; }

.nav-dropdown a {
  display: block;
  padding: 12px 20px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { background: var(--cream); color: var(--gold); padding-left: 24px; opacity: 1; }

/* ===================== HERO VIDEO ===================== */
.hero-video {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}

.video-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}

.video-bg iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 180vw; height: 180vh;
  transform: translate(-50%, -50%);
  border: 0;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,22,40,0.65);
  z-index: 2;
}

.hero-video .hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 40px 20px;
}

.hero-logo { height: 80px; margin-bottom: 30px; }

.hero-video h1 {
  color: var(--white);
  font-size: 2.8em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}

.hero-video .hero-subtitle {
  color: var(--gold);
  font-size: 1em;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: Georgia, serif;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 36px;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  padding: 16px 36px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.95em;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-hover); border-color: var(--gold-hover); opacity: 1; }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  padding: 14px 34px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.95em;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  border: 2px solid var(--gold);
  transition: all 0.3s ease;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); opacity: 1; }

.search-bar-hero {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.search-bar-hero input {
  width: 100%;
  padding: 14px 50px 14px 16px;
  border: none;
  border-radius: 4px;
  background: rgba(255,255,255,0.95);
  font-size: 14px;
  font-family: inherit;
}
.search-bar-hero input::placeholder { color: var(--text-light); }
.search-bar-hero input:focus { outline: none; background: var(--white); }

.search-bar-hero button {
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  background: var(--gold);
  border: none;
  color: var(--navy);
  font-size: 16px;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 3px;
}
.search-bar-hero button:hover { background: var(--gold-hover); }

/* ===================== FEATURES GRID ===================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 40px auto 0;
}

.feature-card {
  text-align: center;
  padding: 30px 20px;
}

.feature-icon {
  font-size: 2.4em;
  color: var(--gold);
  margin-bottom: 16px;
}

.feature-card h3 { font-size: 1.1em; color: var(--navy); }
.feature-card p { font-size: 0.9em; line-height: 1.7; color: var(--text-light); }

/* ===================== HERE TO HELP ===================== */
.here-to-help {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.here-to-help-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
}

.here-to-help-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,22,40,0.75);
}

.here-to-help-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px;
}

.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.85em;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  padding: 0 20px;
}
.section-tag::before, .section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.section-tag::before { left: -20px; }
.section-tag::after { right: -20px; }

.here-to-help h2 { color: var(--white); font-size: 2.2em; margin-bottom: 30px; }

.cta-buttons-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-block-btn {
  background: var(--gold);
  color: var(--navy);
  padding: 18px 36px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.95em;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  min-width: 200px;
  justify-content: center;
}
.cta-block-btn:hover { background: var(--gold-hover); transform: translateY(-2px); opacity: 1; }

/* ===================== TWO COLUMN CARDS ===================== */
.two-col-cards {
  display: flex;
  padding: 0;
}

.card-col {
  flex: 1;
  position: relative;
  min-height: 450px;
  overflow: hidden;
}

.card-col img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  transition: transform 0.5s ease;
}

.card-col:hover img { transform: scale(1.05); }

.card-overlay {
  position: absolute;
  top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  text-align: center;
  color: var(--white);
  padding: 20px;
  z-index: 2;
}

.card-overlay h3 { color: var(--white); font-size: 2.1rem; font-weight: 600; margin-bottom: 12px; }
.card-overlay p { font-size: 1.1rem; margin-bottom: 20px; opacity: 0.9; }

/* ===================== FEATURED AREAS ===================== */
.featured-areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.featured-area {
  min-height: 350px;
  width: 31%;
  min-width: 300px;
  background-position: center;
  background-size: cover;
  text-decoration: none;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.featured-area::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.25);
  transition: background 0.5s ease;
}

.featured-area:hover::after { background: rgba(0,0,0,0.5); }

.featured-area h3 {
  font-weight: 600;
  font-size: 1.4em;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  position: relative;
  z-index: 1;
  color: var(--white);
}

/* ===================== ONE COLUMN CARD ===================== */
.one-col-card-section { padding: 0; }

.one-col-card {
  position: relative;
  min-height: 450px;
  overflow: hidden;
}

.one-col-card img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.one-col-card .card-overlay {
  position: absolute;
  top: 50%; left: 0; right: 0;
  transform: translateY(-50%);
  text-align: center;
  color: var(--white);
  padding: 20px;
  z-index: 2;
}

.one-col-card .card-overlay h3 { color: var(--white); font-size: 2.1rem; font-weight: 600; }
.one-col-card .card-overlay p { font-size: 1.1rem; margin-bottom: 20px; max-width: 750px; margin-left: auto; margin-right: auto; }

/* ===================== MISSION ===================== */
.mission-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 20px;
}

.mission-section h2 { color: var(--white); font-size: 2.2em; }

/* ===================== TEAM ===================== */
.team-section { padding: 20px 0; }

.team-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.team-member {
  text-align: center;
  width: 180px;
}

.team-member a { text-decoration: none; color: inherit; }
.team-member a:hover { opacity: 1; }

.member-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 3px solid var(--gold);
}

.member-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.member-name {
  font-weight: 700;
  font-size: 0.95em;
  color: var(--navy);
  margin-bottom: 4px;
}

.member-title {
  font-size: 0.82em;
  color: var(--text-light);
  margin-bottom: 2px;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 20px;
}

.testimonials-section h2 { margin-bottom: 40px; }

.testimonials-slider { position: relative; min-height: 200px; }

.testimonials-slider .testimonial-card {
  display: none;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeIn 0.5s ease;
}

.testimonials-slider .testimonial-card.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.stars { color: var(--gold); font-size: 1.2em; margin-bottom: 20px; letter-spacing: 4px; }

.testimonial-card p {
  color: #c8d8e8;
  font-size: 1.1em;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95em;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.testimonial-prev, .testimonial-next {
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.testimonial-prev:hover, .testimonial-next:hover { border-color: var(--gold); color: var(--gold); }

.testimonial-dots { display: flex; gap: 8px; }

.testimonial-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.testimonial-dot.active { background: var(--gold); }

/* ===================== BUTTONS ===================== */
.btn {
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-block;
  cursor: pointer;
  text-align: center;
}

.btn-primary { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-hover); opacity: 1; }

.btn-secondary { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--black); opacity: 1; }

.btn-secondary-dark { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-secondary-dark:hover { background: var(--navy); color: var(--white); opacity: 1; }

/* ===================== STICKY ACTIONS ===================== */
.sticky-actions {
  position: fixed;
  bottom: 20px; right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}

.sticky-btn {
  padding: 12px 18px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.sticky-chat { background: var(--navy); color: var(--white); min-width: 160px; }
.sticky-chat:hover { background: #15325a; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.3); }

.sticky-preapprove { background: var(--gold); color: var(--navy); min-width: 160px; }
.sticky-preapprove:hover { background: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.3); }

/* ===================== SECTIONS ===================== */
section { padding: 60px 20px; }
.section-container { max-width: 1100px; margin: 0 auto; }

.section-label {
  letter-spacing: 2px;
  font-size: 12px;
  margin-bottom: 24px;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 600;
}

.white-bg { background: var(--white); }
.cream-bg { background: var(--cream); }
.navy-bg { background: var(--navy); color: var(--white); }
.navy-bg h2 { color: var(--white); }
.navy-bg h3 { color: var(--gold); }

/* Search Buttons */
.search-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.search-btn {
  background: var(--navy);
  color: var(--white);
  padding: 14px;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.search-btn:hover { background: var(--gold); color: var(--navy); opacity: 1; }

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.service-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.12); border-color: var(--gold); transform: translateY(-4px); }
.service-card h3 { color: var(--navy); margin-bottom: 16px; font-size: 20px; }
.service-card p { font-size: 14px; line-height: 1.7; color: var(--text-light); }
.service-icon { font-size: 40px; margin-bottom: 16px; display: block; }

/* Form Styles */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--navy); font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid var(--border-light); border-radius: 4px; font-family: inherit; font-size: 14px; line-height: 1.6; transition: border-color 0.3s ease; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }

/* ===================== FOOTER ===================== */
footer {
  background: var(--navy);
  color: var(--white);
  padding: 60px 20px 40px;
  margin-top: 0;
}

.footer-container { max-width: 1100px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-section h4 { color: var(--gold); margin-bottom: 16px; font-size: 16px; font-weight: 600; }
.footer-section a { display: block; margin-bottom: 10px; font-size: 13px; color: var(--white); transition: color 0.3s ease; }
.footer-section a:hover { color: var(--gold); opacity: 1; }
.footer-section p { font-size: 13px; line-height: 1.7; margin-bottom: 10px; opacity: 0.9; }

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

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  transition: all 0.3s ease;
}
.footer-social a:hover { background: var(--gold); color: var(--navy); opacity: 1; }

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

/* Inner Page Styles */
body.inner-page .top-nav { padding: 10px 20px; }
body.inner-page nav { top: 70px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-video h1 { font-size: 2.2em; }
  .featured-area { min-width: 280px; }
}

@media (max-width: 768px) {
  .top-nav-container { flex-direction: column; align-items: flex-start; gap: 10px; }
  .search-bar-container { width: 100%; max-width: 100%; }
  .top-nav-right { width: 100%; justify-content: space-between; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0; width: 100%;
    background: var(--navy);
    flex-direction: column;
    gap: 0; padding: 0;
    border-bottom: 2px solid var(--gold);
    max-height: 80vh;
    overflow-y: auto;
  }
  .nav-menu.active { display: flex; }
  .nav-menu li { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-menu > li > a { padding: 14px 16px; font-size: 13px; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  nav { top: auto; position: relative; }

  .nav-dropdown {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    background: rgba(0,0,0,0.2);
  }
  .nav-dropdown a { color: rgba(255,255,255,0.8); padding-left: 32px; border-bottom-color: rgba(255,255,255,0.05); }
  .nav-dropdown a:hover { color: var(--gold); background: rgba(201,168,76,0.1); }
  .nav-menu li.dropdown-open .nav-dropdown { display: block; }

  .hero-video { min-height: 70vh; }
  .hero-video h1 { font-size: 1.8em; }
  .hero-logo { height: 60px; }

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

  .two-col-cards { flex-direction: column; }
  .card-col { min-height: 350px; }

  .featured-area { width: 100%; min-width: auto; min-height: 250px; }

  .team-grid { gap: 24px; }
  .team-member { width: 140px; }
  .member-photo { width: 120px; height: 120px; }

  .hero-buttons { flex-direction: column; gap: 12px; }

  .search-buttons { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  section { padding: 40px 20px; }

  .sticky-actions { bottom: 16px; right: 16px; gap: 10px; }
  .sticky-btn { padding: 10px 14px; font-size: 11px; min-width: 140px; }

  .cta-buttons-row { flex-direction: column; gap: 12px; }
  .cta-block-btn { min-width: auto; }
}

@media (max-width: 480px) {
  h1 { font-size: 24px; }
  h2 { font-size: 20px; }
  h3 { font-size: 16px; }

  section { padding: 32px 16px; }
  .hero-video { min-height: 60vh; }
  .hero-video h1 { font-size: 1.5em; }
  .hero-logo { height: 50px; margin-bottom: 20px; }
  .hero-video .hero-subtitle { font-size: 0.8em; letter-spacing: 2px; }

  .card-overlay h3 { font-size: 1.5rem; }
  .card-overlay p { font-size: 0.95rem; }

  .search-buttons { grid-template-columns: 1fr; }

  .sticky-actions {
    flex-direction: row;
    bottom: auto; right: auto; top: auto;
    left: 16px;
    width: calc(100% - 32px);
    gap: 8px;
    position: fixed;
    bottom: 16px;
  }
  .sticky-btn { flex: 1; min-width: auto; padding: 10px 8px; }
}
/* ===================== BOLDTRAIL PAGE CONTENT ===================== */
.bt-page-content {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
.bt-page-content img {
  max-width: 100%;
  height: auto;
}
.bt-page-content a {
  color: var(--gold);
}
.bt-page-content a:hover {
  color: var(--gold-hover);
}
/* Ensure BEE editor content renders properly */
.bt-page-content .bee-editor-container {
  max-width: 100%;
}
/* v3-boldtrail-mirror */
