/* ============================================
   National Medic - Stylesheet
   ============================================ */

/* CSS Variables */
:root {
  --primary-red: #a72720;
  --navy: #0B2A5A;
  --white: #FFFFFF;
  --light-gray: #F5F7FA;
  --text: #1A1A1A;
  --text-light: #666666;
  --border-color: #E0E0E0;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* ============================================
   Utility Header
   ============================================ */
.utility-header {
  background-color: var(--light-gray);
  padding: 0.75rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border-color);
}

.utility-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.utility-header .logo-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.utility-header .logo {
  width: auto;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.utility-header .logo img {
  height: 85px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.utility-header .business-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
}

.utility-header .contact-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.utility-header .contact-info span {
  color: var(--text-light);
}

.utility-header .trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.875rem;
}

.utility-header .stars {
  color: #FFA500;
}

/* ============================================
   Navigation
   ============================================ */
.main-nav {
  background-color: var(--primary-red);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.main-nav .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--white);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9375rem;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--white);
}

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

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--white);
  transition: var(--transition);
}

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

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

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

/* ============================================
   Main Content
   ============================================ */
main {
  min-height: calc(100vh - 200px);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.125rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Fade-in animation for sections */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary-red) 100%);
  background-image: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1f?w=1600&q=80');
  background-size: cover;
  background-position: center;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 42, 90, 0.75);
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease;
}

.hero-content .hero-bullets {
  list-style: none;
  margin: 2rem 0;
}

.hero-content .hero-bullets li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1.125rem;
}

.hero-content .hero-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--white);
  font-weight: bold;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-badge {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.hero-badge h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.hero-badge p {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.95;
}

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

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 0.9375rem;
  text-align: center;
}

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

.btn-primary:hover {
  background-color: #871e19;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary-red);
}

.btn-secondary:hover {
  background-color: var(--light-gray);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

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

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

/* ============================================
   Cards & Tiles
   ============================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Event Coverage Grid - Desktop: 2 columns, Mobile: 1 column */
.event-coverage-grid {
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .event-coverage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Event Coverage Section - Event Tile Layout */
/* Event Coverage Tiles - Horizontal Layout (Scoped) */
.event-tile {
  display: grid;
  grid-template-columns: 44% 56%;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  min-height: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

/* Left image column */
.event-tile__media {
  position: relative;
  background: #0b0b0b;
}

.event-tile__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right content column */
.event-tile__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.event-tile__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 20px;
  background: var(--primary-red);
  color: var(--white);
}

.event-tile__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  color: var(--navy);
}

.event-tile__text {
  margin: 0;
  color: var(--text-light);
  line-height: 1.6;
}

/* Mobile: stack image on top */
@media (max-width: 767px) {
  .event-tile {
    grid-template-columns: 1fr;
  }
  
  .event-tile__media {
    height: 200px;
  }
}

/* What We Need Section - Numbered Cards */
.what-we-need-card {
  position: relative;
  padding: 2rem; /* Reset to normal card padding */
  margin-left: 4rem; /* Space for badge on the left */
}

.what-we-need-card h3 {
  margin-top: 0;
}

.what-we-need-number {
  position: absolute;
  top: 1.5rem;
  left: -2rem; /* Position outside the card, halfway into the margin */
  width: 50px;
  height: 50px;
  background-color: var(--primary-red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: var(--shadow);
  z-index: 2;
}

/* Service Area Section - Blue Background */
.service-area-blue {
  background-color: var(--navy);
  color: var(--white);
}

.service-area-card {
  background-color: rgba(255, 255, 255, 0.95);
}

.service-area-primary-title {
  color: var(--navy) !important;
  margin-bottom: 1rem;
}

.service-area-text {
  color: var(--text-light) !important;
  font-size: 1.125rem;
  line-height: 1.8;
  margin: 0;
}

/* Event Coverage grid - wider container and responsive columns */
@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  /* What We Need cards - tablet spacing */
  .what-we-need-card {
    margin-left: 3.5rem;
  }

  .what-we-need-number {
    left: -1.75rem;
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }
}

@media (min-width: 1200px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(520px, 1fr));
    gap: 24px;
  }

  /* What We Need cards - desktop spacing */
  .what-we-need-card {
    margin-left: 4rem;
  }

  .what-we-need-number {
    left: -2rem;
  }
}

/* Medium screens (tablets in portrait) - ensure no overlap */
@media (min-width: 481px) and (max-width: 767px) {
  .what-we-need-card {
    margin-left: 3rem;
    padding: 2rem;
  }

  .what-we-need-number {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
    top: 1.25rem;
    left: -1.5rem;
  }
}

/* Services section container - keep normal width */
.services-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Desktop: 2 columns layout for service cards */

@media (min-width: 1024px) {
  .services-container .card-grid {
    grid-template-columns: repeat(2, minmax(520px, 1fr));
    gap: 2rem;
  }

  /* Remove fixed widths from cards */
  .service-modern-card {
    width: 100%;
    max-width: none;
  }
  
  .card {
    max-width: none;
  }

  /* Keep service cards at normal size - removed desktop size increases */
}

.card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.card-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card h3 {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card p {
  color: var(--text-light);
  line-height: 1.7;
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: block;
}

.card-with-image {
  padding: 0;
  overflow: hidden;
}

.card-with-image .card-content {
  padding: 2rem;
}

/* Modern Service Card Styles */
.service-modern-card {
  display: flex;
  flex-direction: column;
}

.service-modern-card .card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-modern-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.service-modern-card p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.7;
}

.service-divider {
  width: 100%;
  height: 1px;
  background-color: var(--border-color);
  margin: 1.5rem 0;
}

.service-includes-title {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.service-feature-list li {
  display: flex;
  align-items: flex-start;
  padding: 0.5rem 0;
  color: var(--text-light);
  line-height: 1.6;
}

.service-feature-list .check-icon {
  color: var(--primary-red);
  font-weight: bold;
  margin-right: 0.75rem;
  flex-shrink: 0;
  font-size: 1.125rem;
}

.service-note {
  font-size: 0.8125rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--light-gray);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background-color: var(--white);
  border-left: 4px solid var(--primary-red);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-hover);
}

.service-card h3 {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.7;
}

.service-card-image {
  width: calc(100% + 4rem);
  height: 180px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  margin: -2rem -2rem 1rem -2rem;
  display: block;
}

.image-section {
  padding: 4rem 0;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.image-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.image-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.image-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.image-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding: 1.5rem;
  color: var(--white);
}

.image-card-overlay h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

/* ============================================
   Process Section
   ============================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.process-step h3 {
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--text-light);
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: var(--primary-red);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-text {
  color: var(--text);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 600;
  color: var(--navy);
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

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

.cta-banner p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* ============================================
   Contact Form
   ============================================ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-form {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--navy);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(178, 31, 45, 0.1);
}

.form-group select {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--white);
}

.form-group.error select {
  border-color: var(--primary-red);
}

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

.form-group .error {
  color: var(--primary-red);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}

.form-group.error input,
.form-group.error textarea {
  border-color: var(--primary-red);
}

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

.form-success {
  display: none;
  background-color: #4CAF50;
  color: var(--white);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
  text-align: center;
}

.form-success.show {
  display: block;
}

.contact-info {
  background-color: var(--light-gray);
  padding: 2rem;
  border-radius: 8px;
}

.contact-info h3 {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-info-item {
  margin-bottom: 1.5rem;
}

.contact-info-item strong {
  color: var(--navy);
  display: block;
  margin-bottom: 0.25rem;
}

.contact-info-item span {
  color: var(--text-light);
}

.map-placeholder {
  width: 100%;
  height: 300px;
  background-color: var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  margin-top: 2rem;
}

/* ============================================
   Footer
   ============================================ */
footer {
  background-color: var(--navy);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

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

.footer-section h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom .design-credit {
  margin-left: auto;
}

.footer-bottom .design-credit a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom .design-credit a:hover {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom .design-credit {
    margin-left: 0;
  }
}

/* ============================================
   Values Section
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-item {
  text-align: center;
  padding: 1.5rem;
}

.value-item h3 {
  color: var(--primary-red);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.value-item p {
  color: var(--text-light);
}

/* Why National Medic Section - Blue Background */
.why-section-blue {
  background-color: var(--navy);
  color: var(--white);
}

.section-title-white {
  color: var(--white) !important;
}

.section-subtitle-white {
  color: rgba(255, 255, 255, 0.9) !important;
}

.value-item-white h3 {
  color: var(--white) !important;
}

.value-item-white p {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Employment Application Section - Blue Background with Stars */
.employment-application-section {
  background-color: var(--navy);
  position: relative;
  overflow: hidden;
}

.employment-application-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(2px 2px at 60px 70px, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 50px 50px, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1px 1px at 80px 10px, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(2px 2px at 90px 40px, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 200px 60px, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(2px 2px at 240px 20px, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 280px 50px, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(2px 2px at 320px 90px, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 360px 40px, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(2px 2px at 400px 70px, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 440px 10px, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(2px 2px at 480px 60px, rgba(255, 255, 255, 0.4), transparent);
  background-size: 500px 100px;
  background-repeat: repeat;
  opacity: 0.6;
  pointer-events: none;
}

.employment-form-blue {
  background-color: rgba(255, 255, 255, 0.95);
  position: relative;
  z-index: 1;
}

/* Form labels stay dark since form has white background */
.employment-form-blue .form-group label {
  color: var(--navy) !important;
}

.employment-application-section .section-title-white {
  color: var(--white) !important;
}

.employment-application-section .section-subtitle-white {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Testimonials Section - Blue Background */
.why-section-blue .testimonial-card {
  background-color: rgba(255, 255, 255, 0.95);
}

.why-section-blue .testimonial-text {
  color: var(--text);
}

.why-section-blue .testimonial-author {
  color: var(--navy);
}

/* ============================================
   Insurance Logos
   ============================================ */
.insurance-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.insurance-logo {
  width: 120px;
  height: 60px;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.875rem;
  opacity: 0.7;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
  .utility-header .container {
    flex-direction: column;
    text-align: center;
  }

  .utility-header .logo img {
    height: 75px;
    max-width: 180px;
  }

  .utility-header .contact-info {
    justify-content: center;
  }

  /* What We Need cards - responsive spacing */
  .what-we-need-card {
    margin-left: 3rem;
    padding: 2rem;
  }

  .what-we-need-number {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
    top: 1.25rem;
    left: -1.5rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background-color: var(--primary-red);
    flex-direction: column;
    padding: 1rem 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-hover);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links a {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .card-grid:not(.event-coverage-grid),
  .service-grid,
  .testimonials-grid {
    grid-template-columns: 1fr !important;
  }
  
  /* Event tiles already handle their own mobile layout */
  .event-tile {
    grid-template-columns: 1fr !important;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

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

  .cta-banner h2 {
    font-size: 1.75rem;
  }

  /* Services page sidebar responsive */
  .section > .container > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  .card[style*="sticky"] {
    position: relative !important;
    top: auto !important;
  }

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

  .service-card-image {
    width: calc(100% + 4rem);
    margin-left: -2rem;
    margin-right: -2rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 500px;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  /* What We Need cards - extra small screens */
  .what-we-need-card {
    margin-left: 2.5rem;
    padding: 1.5rem;
  }

  .what-we-need-number {
    width: 40px;
    height: 40px;
    font-size: 1.125rem;
    top: 1rem;
    left: -1.25rem;
  }

  .what-we-need-card h3 {
    font-size: 1.25rem;
  }
}
