:root {
  /* Color Palette */
  --dk-blue: #000b28;
  --lt-blue: #1da5de;
  --white: #ffffff;
  --primary-color: #58595b;

  /* Typography */
  --primary-font: "proxima-nova", sans-serif;
  --secondary-font: "elevon", sans-serif;

  /* Background Assets */
  --background: url("assets/background/background-main.webp");
  --top-graphic: url(assets/graphics/top-graphic.webp);

  /* Layout & Spacing */
  --section-padding: 4rem 1rem;
  --section-vertical: 6rem 0;
  --button-padding: 0.75rem 1.5rem;
  --container-padding: 0 20px;

  /* Visual Properties */
  --border-radius: 10px;
  --transition-speed: 0.3s;
  --text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  --overlay-color: rgba(0, 0, 0, 0.5);

  /* Mobile Navigation */
  --mobile-touch-target: 44px;
  --tablet-touch-target: 40px;
  --hamburger-line-height: 3px;
  --mobile-nav-z-index: 9999;
}

/* Reset and base styles */
html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  background: var(--background);
  font-family: var(--primary-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 11, 40, 0.75);
  pointer-events: none;
  z-index: -1;
}

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

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

.flex-row-between {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

.flex-row-between-center {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

/* Accessibility styles */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--dk-blue);
  color: var(--white);
  padding: 8px;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  z-index: 9999;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

/* Main content styles */
main {
  padding-top: 0;
}

h1 {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  font-family: var(--primary-font);
  font-weight: 400;
  text-shadow: var(--text-shadow);
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.5rem;
  line-height: 1.25;
  margin-bottom: 1rem;
}

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

/* Section styles */
section {
  padding: var(--section-vertical);
  color: var(--white);
}

.section-subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

/* Header styles */
header {
  background-color: var(--dk-blue);
  color: var(--lt-blue);
  padding: 1rem 0;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo {
  max-width: 85px;
  height: auto;
}

.contact-link {
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

.contact-link img {
  margin-right: 0.5rem;
  height: 1.125rem;
  width: auto;
}

/* Hero Styles */
.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--top-graphic) no-repeat center/cover;
  text-align: center;
  padding: var(--section-padding);
}

.hero-content {
  position: relative;
  z-index: 10;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 150px 0;
}

.hero-content img {
  width: 8%;
  height: auto;
  z-index: 10;
  position: relative;
}

.hero-content h1 {
  z-index: 10;
  position: relative;
  margin: 150px 0;
}

.hero-video {
  position: absolute;
  width: 100%;
  height: 60%;
  top: 150px;
  left: 0;
  object-fit: cover;
  z-index: 2;
}

.hero-section::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 60%;
  top: 150px;
  left: 0;
  background: var(--overlay-color);
  pointer-events: none;
  z-index: 3;
}

.hero-bottom {
  position: relative;
  z-index: 10;
  margin-top: 1rem;
  padding-bottom: 2rem;
}

.hero-bottom p {
  font-family: var(--secondary-font);
  line-height: 1.5;
}

.hero-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin-top: 2rem;
}

.hero-logo {
  height: 100%;
  max-height: 60px;
  width: auto;
  object-fit: fill;
  filter: drop-shadow(0 2px 4px rgba(29, 165, 222, 0.2));
}

/* Toruk Max Styles */
.toruk-max-section {
  position: relative;
  background: var(--white);
  padding: var(--section-padding);
  text-align: center;
}

.map-graphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-content,
.section-img {
  position: relative;
  z-index: 10;
  color: var(--primary-color);
  font-size: 1.125rem;
  line-height: 1.25;
}

.section-content {
  width: 40%;
  text-align: left;
  padding: 4rem 0;
}

.section-content h2,
.section-content-right h2 {
  font-family: var(--secondary-font);
  color: var(--lt-blue);
  margin: 1.5rem 0 1rem 0;
}

.section-content ul,
.section-content-right ul {
  list-style: none;
  padding-left: 20px;
  font-size: 1.5rem;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-content ul li,
.section-content-right ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}

.section-content ul li::before,
.section-content-right ul li::before {
  content: url(assets/icons/checkmark-icon.webp);
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 15px;
  flex-shrink: 0;
}

.section-img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 60%;
  overflow: visible;
}

.section-img img {
  position: absolute;
  width: 150%;
  left: 0;
  top: 0;
  margin-top: -23%;
  height: auto;
}

.section-img-left {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 60%;
  overflow: visible;
  margin-right: 2rem;
  z-index: 10;
}

.section-img-left img {
  position: absolute;
  width: 140%;
  left: -15%;
  top: -23%;
  margin-top: -23%;
  margin-left: -25%;
  height: auto;
}

.section-content-right {
  width: 40%;
  text-align: left;
  position: relative;
  z-index: 10;
  color: var(--primary-color);
  font-size: 1.125rem;
  line-height: 1.25;
  padding: 4rem 0;
}

.section-logo img {
  max-width: 351px;
  height: auto;
}

.benefit-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 1.25rem;
  gap: 1rem;
}

.benefit-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.benefit-text {
  font-size: 1.65rem;
  text-align: left;
  color: var(--primary-color);
  font-weight: 600;
  margin: 0;
  padding: 0;
}

.button-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
  z-index: 10;
}

.learn-more-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dk-blue);
  color: var(--lt-blue);
  font-weight: 600;
  font-size: 1.25rem;
  padding: var(--button-padding);
  border-radius: var(--border-radius);
  text-decoration: none;
  text-transform: uppercase;
}

.learn-more-button img {
  margin-right: 0.5rem;
  height: 1.125rem;
  width: auto;
}

.sched-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lt-blue);
  color: var(--dk-blue);
  font-weight: 600;
  font-size: 1.25rem;
  padding: var(--button-padding);
  border-radius: var(--border-radius);
  text-decoration: none;
  text-transform: uppercase;
}

.sched-button img {
  margin-right: 0.5rem;
  height: 1.25rem;
  width: auto;
}

/* Video Section Styles */

.video-section {
  background: var(--top-graphic) no-repeat center/cover;
  padding: var(--section-padding);
  text-align: center;
}

.video-section h2 {
  font-family: var(--secondary-font);
  color: var(--white);
  margin: 1.5rem 0 3rem 0;
}

.video-section video {
  max-width: 100%;
  height: auto;
}

/* Base iframe and info-box styles */
.video-section iframe {
  border: none;
  border-radius: var(--border-radius);
}

.info-box {
  display: block;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-speed) ease,
    box-shadow var(--transition-speed) ease;
}

.info-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Desktop Video Section - Maintain current layout */
@media (min-width: 1024px) {
  .video-section {
    padding: var(--section-padding);
  }

  .video-section iframe {
    width: 560px;
    height: 315px;
  }

  .info-box {
    max-width: 100%;
    height: auto;
  }
}

/* Spacer Styles */

.spacer {
  height: 4rem;
  background: var(--top-graphic) no-repeat center/cover;
}

.video-line {
  width: 100%;
  height: 2px;
  background: var(--lt-blue);
  margin: 10px 0;
}

/* Footer Styles */

footer {
  background: transparent;
  width: 100%;
}

.footer-top {
  text-align: center;
  background: var(--lt-blue);
  height: 60px;
}

.footer-line {
  width: 100%;
  height: 2px;
  background: var(--lt-blue);
  margin: 10px 0;
}

.footer-main {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 100px 20px;
  color: var(--lt-blue);
}

.footer-main img {
  padding-right: 20px;
}

.contact-info {
  border-left: 2px solid var(--primary-color);
  padding-left: 20px;
  font-style: normal;
}

/* Focus Indicators for Accessibility */
a:focus,
button:focus,
iframe:focus,
.learn-more-button:focus,
.sched-button:focus,
.contact-link:focus {
  outline: 2px solid var(--dk-blue);
  outline-offset: 2px;
  border-radius: 4px;
}

/* High contrast focus for better visibility */
@media (prefers-contrast: high) {
  a:focus,
  button:focus,
  .learn-more-button:focus,
  .sched-button:focus {
    outline: 3px solid #000000;
    background-color: #ffff00;
    color: #000000;
  }
}

/* Focus styles for buttons to maintain design */
.learn-more-button:focus,
.sched-button:focus {
  box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--dk-blue);
  outline: none;
}

/* Responsive design */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  /* Section padding adjustment */
  section {
    padding: 2rem 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
}

/* =================================================================
   MOBILE & TABLET NAVIGATION SYSTEM
   ================================================================= */

/* Mobile Menu Toggle Button - Hidden by default, shown on mobile */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: var(--mobile-touch-target);
  height: var(--mobile-touch-target);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: calc(var(--mobile-nav-z-index) + 1);
  gap: 6px;
}

.hamburger-line {
  width: 28px;
  height: var(--hamburger-line-height);
  background-color: var(--lt-blue);
  border-radius: 2px;
  transition: all var(--transition-speed) ease;
  transform-origin: center;
}

/* Hamburger Animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 11, 40, 0.95);
  z-index: var(--mobile-nav-z-index);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-speed) ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 2rem;
}

.mobile-nav-link {
  color: var(--white);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
  margin: 1.5rem 0;
  padding: 1rem 2rem;
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  transition: all var(--transition-speed) ease;
  min-height: var(--mobile-touch-target);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  width: 100%;
  max-width: 300px;
}

.mobile-nav-link img {
  margin-right: 1rem;
  height: 1.5rem;
  width: auto;
  flex-shrink: 0;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
  border-color: var(--lt-blue);
  background-color: rgba(29, 165, 222, 0.1);
  transform: translateY(-2px);
}

/* Contact Link Responsive Display */
.desktop-contact {
  display: flex;
}

.mobile-contact {
  display: none;
}

/* Mobile Breakpoint - 320px to 767px */
@media (max-width: 767px) {
  /* Show mobile elements, hide desktop */
  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-nav-overlay {
    display: block;
  }

  .desktop-contact {
    display: none;
  }

  .mobile-contact {
    display: flex;
    margin-right: 1rem;
  }

  /* Ensure mobile contact has proper touch target */
  .mobile-contact {
    min-height: var(--mobile-touch-target);
    min-width: var(--mobile-touch-target);
    padding: 0.5rem;
    align-items: center;
    justify-content: center;
  }

  /* Mobile header adjustments */
  header {
    position: relative;
  }

  .logo {
    max-width: 70px;
  }
}

/* Tablet Breakpoint - 768px to 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
  /* Tablet navigation - keep desktop layout but optimize spacing */
  .contact-link {
    min-height: var(--tablet-touch-target);
    padding: 0.75rem 1rem;
  }

  .contact-link img {
    height: 1.25rem;
  }

  .logo {
    max-width: 80px;
  }

  header {
    padding: 1.25rem 0;
  }
}

/* Desktop Breakpoint - 1024px+ */
@media (min-width: 1024px) {
  /* Ensure mobile elements are hidden on desktop */
  .mobile-menu-toggle,
  .mobile-nav-overlay,
  .mobile-contact {
    display: none;
  }

  .desktop-contact {
    display: flex;
  }
}

/* =================================================================
   PRODUCT SECTIONS RESPONSIVE DESIGN
   ================================================================= */

/* Mobile Product Sections - 320px to 767px */
@media (max-width: 767px) {
  .toruk-max-section {
    padding: 3rem 1rem;
    text-align: center;
  }

  .container.flex-row-between {
    flex-direction: column;
    gap: 2rem;
  }

  /* Mobile Section Content */
  .section-content,
  .section-content-right {
    width: 100%;
    text-align: center;
    padding: 0;
    order: 2;
  }

  /* Mobile Section Images - Use mobile assets */
  .section-img,
  .section-img-left {
    width: 100%;
    order: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
  }

  .section-img img,
  .section-img-left img {
    position: relative;
    width: 120%;
    max-width: 384px;
    height: auto;
    left: 0;
    top: 0;
    margin-top: -20%;
  }

  /* Mobile Logo Replacement for TORUK MAX */
  #torukMax .section-logo {
    content: url("assets/mobile/mobile-toruk-white.webp");
    max-width: 320px;
    height: auto;
    margin: 0 auto 1.5rem auto;
  }

  #torukMax .section-img img {
    content: url("assets/mobile/mobile-top-circles.webp");
  }

  /* Mobile Typography */
  .section-content h2,
  .section-content-right h2 {
    font-size: 1.75rem;
    margin: 2rem 0 1.5rem 0;
    text-align: center;
  }

  /* BULLET Section Mobile H2 - Override inline style */
  #bullet .section-content-right h2 {
    font-size: 1.75rem !important;
  }

  .section-content p,
  .section-content-right p {
    font-size: 1.125rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    text-align: center;
  }

  /* Mobile Feature List */
  .feature-list {
    text-align: left;
    margin-bottom: 2rem;
  }

  .section-content ul,
  .section-content-right ul {
    font-size: 1rem;
    line-height: 1.4;
    padding-left: 2rem;
  }

  .section-content ul li,
  .section-content-right ul li {
    margin-bottom: 1rem;
    text-align: left;
  }

  /* Mobile Benefits */
  .benefit-item {
    justify-content: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
    padding-left: 2rem;
  }

  .benefit-img img {
    width: auto;
    height: 35px;
  }

  .benefit-text {
    font-size: 1.1rem;
    text-align: left;
  }

  /* Mobile Button Layout */
  .button-row {
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
    align-items: center;
  }

  .learn-more-button {
    width: 100%;
    max-width: 280px;
    min-height: var(--mobile-touch-target);
    padding: 1rem 1.5rem;
    font-size: 1rem;
    text-align: center;
    justify-content: center;
  }

  .learn-more-button img {
    height: 1.25rem;
    width: auto;
  }

  /* Mobile-only Call Now button */
  .mobile-only-button {
    display: flex;
  }

  /* BULLET Section Mobile Specific */
  #bullet .section-logo {
    content: url("assets/mobile/mobile-bullet-white.webp");
    max-width: 400px;
  }

  #bullet .section-img img,
  #bullet .section-img-left img {
    content: url("assets/mobile/mobile-second-circles_1.webp");
    position: relative;
    left: 0;
    margin-left: 0;
    transform: none;
  }

  /* BULLET Section Mobile Layout - Image First, Content Second */
  #bullet .container.flex-row-between {
    flex-direction: column;
  }

  #bullet .section-content-right {
    order: 2;
  }

  #bullet .section-img-left {
    order: 1;
    width: 100%;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Mini Banshee Section Mobile Specific */
  #banshee .section-logo {
    content: url("assets/mobile/mobile-banshee-white.webp");
    max-width: 400px;
  }

  #banshee .section-img img {
    content: url("assets/mobile/mobile-mini-banshee-circles.webp");
  }
}

/* Hide mobile-only buttons on tablet and desktop */
@media (min-width: 768px) {
  .mobile-only-button {
    display: none;
  }
}

/* =================================================================
   VIDEO SECTION RESPONSIVE DESIGN  
   ================================================================= */

/* Mobile Video Section - 320px to 767px */
@media (max-width: 767px) {
  .video-section {
    padding: 3rem 1rem;
  }

  .video-section h2 {
    font-size: 1.75rem;
    margin: 1rem 0 2rem 0;
  }

  /* Stack video iframes vertically */
  .video-section .container.flex-row-between {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  /* Responsive video sizing */
  .video-section iframe {
    width: 100%;
    max-width: 400px;
    height: 225px;
    border-radius: var(--border-radius);
  }

  /* Single-column demo photos */
  .video-section .container.flex-row-between:last-of-type {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .info-box {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  /* Mobile schedule buttons */
  .video-section .button-row {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
  }

  .sched-button {
    width: 100%;
    max-width: 280px;
    min-height: var(--mobile-touch-target);
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  /* Mobile Footer */
  .footer-main {
    padding: 50px 20px;
    flex-direction: column;
  }

  .footer-main img {
    width: 40%;
    height: auto;
    padding-right: 0;
    padding-bottom: 1rem;
  }

  .contact-info {
    border-left: none;
    padding-left: 0;
    font-style: normal;
    text-align: center;
    font-size: 1.5rem;
  }

  /* Mobile Body Overlay - Darker for better readability */
  body::before {
    background: rgba(0, 11, 40, 0.85);
  }
}

/* Tablet Product Sections - 768px to 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
  .toruk-max-section {
    padding: 4rem 2rem;
  }

  .container.flex-row-between {
    gap: 3rem;
  }

  /* Tablet Section Content */
  .section-content,
  .section-content-right {
    width: 50%;
    padding: 2rem 0;
  }

  .section-img,
  .section-img-left {
    width: 50%;
  }

  .section-img img,
  .section-img-left img {
    width: 130%;
    margin-top: -15%;
  }

  /* Tablet Typography */
  .section-content h2,
  .section-content-right h2 {
    font-size: 2rem;
    margin: 1.5rem 0 1rem 0;
  }

  .section-content p,
  .section-content-right p {
    font-size: 1.2rem;
    line-height: 1.4;
  }

  /* Tablet Feature List */
  .section-content ul,
  .section-content-right ul {
    font-size: 1.1rem;
    line-height: 1.3;
  }

  .section-content ul li,
  .section-content-right ul li {
    margin-bottom: 0.75rem;
  }

  /* Tablet Benefits */
  .benefit-item {
    margin-bottom: 1rem;
    gap: 1rem;
  }

  .benefit-img {
    width: 42px;
    height: 42px;
  }

  .benefit-text {
    font-size: 1.3rem;
  }

  /* Tablet Button Layout */
  .button-row {
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .learn-more-button {
    min-height: var(--tablet-touch-target);
    padding: 0.875rem 1.25rem;
    font-size: 1.1rem;
  }

  /* Tablet BULLET Section - Use mobile assets */
  #bullet .section-logo {
    content: url("assets/mobile/mobile-bullet-white.webp");
  }

  #bullet .section-img img,
  #bullet .section-img-left img {
    content: url("assets/mobile/mobile-second-circles_1.webp");
  }

  /* Tablet TORUK MAX Section - Use mobile assets */
  #torukMax .section-logo {
    content: url("assets/mobile/mobile-toruk-white.webp");
  }

  #torukMax .section-img img {
    content: url("assets/mobile/mobile-top-circles.webp");
  }

  /* Tablet Mini Banshee Section - Use mobile assets */
  #banshee .section-logo {
    content: url("assets/mobile/mobile-banshee-white.webp");
  }

  #banshee .section-img img {
    content: url("assets/mobile/mobile-third-circles.webp");
  }

  /* Tablet Video Section */
  .video-section {
    padding: 4rem 2rem;
  }

  .video-section h2 {
    font-size: 2rem;
    margin: 1.5rem 0 2.5rem 0;
  }

  /* 2-column video layout */
  .video-section .container.flex-row-between {
    gap: 3rem;
    justify-content: center;
  }

  /* Responsive video sizing for tablet */
  .video-section iframe {
    width: 100%;
    max-width: 450px;
    height: 253px;
    border-radius: var(--border-radius);
  }

  /* 2x2 demo photo grid */
  .video-section .container.flex-row-between:last-of-type {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .info-box {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }

  /* Third photo spans both columns */
  .info-box:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 400px;
    justify-self: center;
  }

  /* Tablet schedule buttons */
  .video-section .button-row {
    gap: 2rem;
    margin-top: 3rem;
  }

  .sched-button {
    min-height: var(--tablet-touch-target);
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
  }
}

/* =================================================================
   HERO SECTION RESPONSIVE DESIGN
   ================================================================= */

/* Mobile Hero Section - 320px to 767px */
@media (max-width: 767px) {
  .hero-section {
    padding: 2rem 1rem;
    background: var(--top-graphic) no-repeat center/cover;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  .hero-content {
    padding: 3rem 0 0.5rem 0;
    min-height: auto;
    flex: 1;
    justify-content: flex-start;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin: 2rem 0 1rem 0;
    color: var(--white);
    text-shadow: var(--text-shadow);
  }

  /* Mobile US Flag */
  .hero-content img {
    width: 15%;
    min-width: 60px;
    max-width: 80px;
    height: auto;
    margin-bottom: 1rem;
  }

  /* Mobile Video Optimization */
  .hero-video {
    position: absolute;
    width: 100%;
    height: 40%;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 1;
  }

  .hero-section::after {
    width: 100%;
    height: 40%;
    top: 0;
    background: rgba(0, 11, 40, 0.7);
    z-index: 2;
  }

  /* Mobile Hero Bottom Section */
  .hero-bottom {
    margin-top: auto;
    padding: 1rem 0 3rem 0;
    position: relative;
    z-index: 10;
  }

  .hero-bottom p {
    font-size: 1.25rem;
    line-height: 1.4;
    color: var(--white);
    text-shadow: var(--text-shadow);
    margin-bottom: 2rem;
  }

  .hero-bottom p br {
    display: none;
  }

  /* Mobile Product Logos */
  .hero-logos {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .hero-logo {
    max-height: 50px;
    width: auto;
    max-width: 200px;
    filter: drop-shadow(0 2px 4px rgba(29, 165, 222, 0.2));
  }
}

/* Tablet Hero Section - 768px to 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-section {
    padding: 3rem 2rem;
    min-height: 90vh;
  }

  .hero-content {
    padding: 4rem 0 3rem 0;
    min-height: auto;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin: 3rem 0 4rem 0;
  }

  /* Tablet US Flag */
  .hero-content img {
    width: 10%;
    min-width: 70px;
    max-width: 90px;
  }

  /* Tablet Video */
  .hero-video {
    height: 35%;
    width: 100%;
    top: 120px;
  }

  .hero-section::after {
    height: 35%;
    width: 100%;
    top: 120px;
    background: rgba(0, 11, 40, 0.6);
  }

  /* Tablet Hero Bottom */
  .hero-bottom {
    padding: 2rem 0 3rem 0;
  }

  .hero-bottom p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
  }

  /* Tablet Product Logos - Single row */
  .hero-logos {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 2.5rem;
  }

  .hero-logo {
    max-height: 55px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(29, 165, 222, 0.2));
  }
}

/* Accessibility: Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .hero-video {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  /* Disable autoplay for users who prefer reduced motion */
  .hero-video[autoplay] {
    autoplay: false;
  }
}
