:root {
  /* UT Knoxville Volunteer Colors */
  --color-ut-orange: #FF8200;
  --color-ut-orange-dark: #E67300;
  --color-ut-orange-light: #FFA64D;
  --color-smokey-gray: #58595B;
  --color-smokey-gray-dark: #3D3E40;
  --color-smokey-gray-light: #8B8C8E;
  
  /* Neutral Colors */
  --color-slate-900: #0f172a;
  --color-slate-800: #1e293b;
  --color-slate-700: #334155;
  --color-slate-600: #475569;
  --color-sand-100: #f8f9fa;
  --color-sand-50: #ffffff;
  --color-success: #16a34a;
  --color-border: rgba(15, 23, 42, 0.08);
  
  /* Shadows - No orange glow */
  --shadow-soft: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-medium: 0 8px 24px rgba(15, 23, 42, 0.12);
  --shadow-cta: 0 4px 12px rgba(15, 23, 42, 0.15);
  
  /* Legacy support */
  --color-orange-500: var(--color-ut-orange);
  --color-orange-600: var(--color-ut-orange-dark);
  --color-orange-700: var(--color-ut-orange-dark);
  
  --radius-lg: 12px;
  --radius-md: 8px;
  --radius-sm: 6px;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--color-slate-800);
  background-color: var(--color-sand-50);
  line-height: 1.65;
}

a {
  color: var(--color-ut-orange);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-ut-orange-dark);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.15);
}

@media (max-width: 768px) {
  img {
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  }

  img:hover {
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
  }
}

header {
  background-color: #fff;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
}

.brand {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-slate-900);
  letter-spacing: 0.02em;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

nav ul li a {
  font-weight: 600;
  color: var(--color-slate-700);
}

nav ul li a.btn-primary {
  background-color: var(--color-ut-orange);
  color: #fff;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.2s ease;
}

nav ul li a.btn-primary:hover {
  background-color: var(--color-ut-orange-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-medium);
}

.mobile-nav-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  padding: 0.5rem;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  padding: 5rem 0 6rem;
  color: var(--color-slate-900);
  background: #ffffff;
  min-height: auto;
  overflow: visible;
}

.hero .content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  position: relative;
  z-index: 1;
  overflow: visible;
}

@media (min-width: 1024px) {
  .hero .content {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
    gap: 3rem;
  }
}

.hero__copy {
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  display: grid;
  gap: 1.75rem;
  overflow: visible;
  min-height: fit-content;
}

.hero__copy h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: var(--color-slate-900);
}

.hero__copy p {
  margin: 0;
  color: var(--color-slate-700);
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero__badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .hero__badge-row {
    gap: 0.5rem;
  }

  .hero__badge-row .badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.65rem;
    white-space: nowrap;
  }
}

.hero__badge-row .badge {
  background-color: rgba(255, 130, 0, 0.1);
  color: var(--color-ut-orange-dark);
  border: 1px solid rgba(255, 130, 0, 0.2);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
}

.hero__ctas .btn-primary,
.hero__ctas .btn-secondary {
  white-space: nowrap;
  flex-shrink: 0;
  min-width: fit-content;
}

.hero__ctas .btn-secondary {
  background-color: transparent;
  border: 2px solid var(--color-ut-orange);
  color: var(--color-ut-orange);
  padding: 0.9rem 1.5rem;
}

.hero__ctas .btn-secondary:hover {
  background-color: rgba(255, 130, 0, 0.05);
  border-color: var(--color-ut-orange-dark);
  color: var(--color-ut-orange-dark);
}

.hero__stats {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
}

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

.hero__stat {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: grid;
  gap: 0.5rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.hero__stat strong {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-ut-orange);
  display: block;
}

.hero__stat span {
  font-size: 0.95rem;
  color: var(--color-slate-700);
  line-height: 1.5;
}

.hero__copy .list-checks {
  gap: 0.9rem;
  margin: 0;
  padding: 0;
}

.hero__copy .list-checks li {
  color: var(--color-slate-700);
  padding-left: 0;
  margin: 0;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: 1.05rem;
}

.hero__copy .list-checks li::before {
  color: var(--color-ut-orange);
  flex-shrink: 0;
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

.hero__form {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 32px 68px rgba(15, 23, 42, 0.38);
  backdrop-filter: blur(8px);
  margin-top: 0;
  overflow: visible;
}

.hero__form h2 {
  margin: 0 0 0.5rem;
  color: var(--color-slate-900);
}

.hero__form p {
  margin: 0 0 1rem;
  color: var(--color-slate-700);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.badge {
  background-color: rgba(15, 23, 42, 0.06);
  color: var(--color-slate-900);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.card {
  background-color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (max-width: 768px) {
  .card {
    padding: 1.5rem;
  }

  .card h3 {
    font-size: 1.35rem;
  }

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

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 32px 64px rgba(15, 23, 42, 0.16);
}

.card img {
  margin-bottom: 0.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover img {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.15);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.card p {
  flex-grow: 1;
  margin-bottom: 1rem;
}

.card .btn-secondary {
  margin-top: auto;
  align-self: flex-start;
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 768px) {
  .form-card {
    gap: 1.25rem;
  }

  .form-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .form-card p {
    font-size: 0.95rem;
  }

  form .field {
    gap: 0.5rem;
  }

  label {
    font-size: 0.95rem;
  }
}

form .field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

label {
  font-weight: 600;
  color: var(--color-slate-700);
}

input, select, textarea {
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(51, 65, 85, 0.2);
  font-size: 1rem;
  font-family: inherit;
  background-color: #fff;
  transition: all 0.2s ease;
  width: 100%;
  min-height: 48px;
  -webkit-appearance: none;
  appearance: none;
}

@media (max-width: 768px) {
  input, select, textarea {
    font-size: 16px; /* Prevents zoom on iOS */
    min-height: 48px;
    padding: 0.85rem 1rem;
  }

  select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23334155' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
  }
}

input:hover, select:hover, textarea:hover {
  border-color: rgba(51, 65, 85, 0.35);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-ut-orange);
  box-shadow: 0 0 0 3px rgba(255, 130, 0, 0.1);
}

input::placeholder, textarea::placeholder {
  color: var(--color-slate-500);
  opacity: 0.6;
}

button.btn-primary,
a.btn-primary {
  background-color: var(--color-ut-orange);
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-height: 48px;
  min-width: 120px;
}

@media (max-width: 768px) {
  button.btn-primary,
  a.btn-primary {
    min-height: 48px;
    font-size: 1rem;
    padding: 0.9rem 1.5rem;
  }
}

button.btn-primary:hover,
a.btn-primary:hover {
  background-color: var(--color-ut-orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  color: #fff;
}

button.btn-primary:active,
a.btn-primary:active {
  transform: translateY(0);
}

.section {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 5.5rem 0;
  }
}

.section:first-of-type {
  padding-top: 2rem;
}

@media (min-width: 768px) {
  .section:first-of-type {
    padding-top: 4rem;
  }
}

@media (max-width: 768px) {
  .section .container {
    padding: 0 1rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2 {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
    margin-bottom: 1rem;
  }

  .section-header p {
    font-size: 1rem;
  }
}

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

.section h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1.25rem;
  color: var(--color-slate-900);
  line-height: 1.2;
  font-weight: 700;
}

.section-header {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  margin-bottom: 0;
  font-size: 1.1rem;
  line-height: 1.7;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (max-width: 768px) {
  .faq-column {
    gap: 1.5rem;
  }
}

.faq-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-item h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--color-slate-700);
}

@media (max-width: 768px) {
  .faq-item {
    padding-bottom: 1.25rem;
  }

  .faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .faq-item p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

.section h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-slate-800);
}

.section p {
  margin-bottom: 1.5rem;
}

.section p:last-child {
  margin-bottom: 0;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-ut-orange);
  margin-bottom: 0.75rem;
}

.grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr);
}

@media (max-width: 768px) {
  .grid {
    gap: 1.5rem;
  }
}

.grid-2 {
  grid-template-columns: minmax(0, 1fr);
}

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

.grid-3 {
  grid-template-columns: minmax(0, 1fr);
}

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

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.process-steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .process-steps {
    gap: 1.25rem;
  }

  .step {
    padding: 1.25rem;
  }

  .step h3 {
    font-size: 1.25rem;
  }

  .step p {
    font-size: 0.95rem;
  }
}

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

.step {
  background-color: #fff;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step h3 {
  margin-bottom: 0.5rem;
}

.step p {
  margin: 0;
  color: var(--color-slate-700);
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background-color: var(--color-ut-orange);
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.testimonial {
  background-color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-border);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (max-width: 768px) {
  .testimonial {
    padding: 1.5rem;
  }

  .testimonial p {
    font-size: 1rem;
  }

  .testimonial cite {
    font-size: 0.9rem;
  }
}

.testimonial:hover {
  transform: translateY(-2px);
  box-shadow: 0 32px 64px rgba(15, 23, 42, 0.16);
}

.testimonial p {
  margin: 0;
  font-style: italic;
  line-height: 1.75;
  color: var(--color-slate-700);
  font-size: 1.05rem;
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: var(--color-slate-900);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonial cite::before {
  content: "—";
  color: var(--color-ut-orange);
  font-weight: 700;
}

.testimonial::before {
  content: "\201C";
  font-size: 4rem;
  color: rgba(255, 130, 0, 0.15);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
  font-family: Georgia, serif;
}

.footer {
  background-color: var(--color-slate-900);
  color: #fff;
  padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
  .footer {
    padding: 4rem 0 2rem;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 2.5rem 0 1.5rem;
  }

  .footer-grid {
    padding: 0 1rem;
    gap: 2rem;
  }

  .footer h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .footer p {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .footer-bottom {
    padding: 0 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.85rem;
  }
}

.footer a {
  color: #e2e8f0;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #fff;
}

.footer h3 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.footer p:last-child {
  margin-bottom: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding: 0 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  color: var(--color-slate-800);
  font-weight: 600;
  min-height: 44px;
  min-width: 100px;
}

@media (max-width: 768px) {
  .btn-secondary {
    min-height: 48px;
    font-size: 1rem;
    padding: 0.85rem 1.25rem;
  }
}

.btn-secondary:hover {
  border-color: var(--color-ut-orange);
  color: var(--color-ut-orange);
  background-color: rgba(255, 130, 0, 0.05);
}

.badge-success {
  background-color: rgba(22, 163, 74, 0.12);
  color: var(--color-success);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: rgba(15, 23, 42, 0.08);
  color: var(--color-slate-700);
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.badge-trust {
  background-color: rgba(255, 130, 0, 0.1);
  color: var(--color-ut-orange-dark);
  border-color: rgba(255, 130, 0, 0.2);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
  padding: 1.5rem;
  background-color: var(--color-sand-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.trust-badges .badge {
  margin: 0;
}

@media (max-width: 768px) {
  .trust-badges {
    padding: 1.25rem;
    gap: 0.5rem;
    margin: 1.5rem 0;
  }

  .trust-badges .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
  }
}

.form-card {
  position: relative;
}

.form-card .security-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: var(--color-success);
  color: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
  z-index: 10;
}

.form-card h2 {
  margin-top: 0.5rem;
}


.highlight-card {
  background-color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

@media (max-width: 768px) {
  .highlight-card {
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .highlight-card h2 {
    font-size: 1.75rem;
  }

  .highlight-card p {
    font-size: 0.95rem;
  }
}

@media (min-width: 768px) {
  .highlight-card {
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
  }
}

.list-checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.list-checks li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  line-height: 1.6;
}

.list-checks li::before {
  content: "\2713";
  color: var(--color-success);
  font-weight: 700;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .list-checks {
    gap: 0.65rem;
  }

  .list-checks li {
    font-size: 0.95rem;
    gap: 0.5rem;
  }
}

.callout {
  background: linear-gradient(135deg, var(--color-ut-orange), var(--color-ut-orange-dark));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-medium);
  position: relative;
}

@media (max-width: 768px) {
  .callout {
    padding: 2rem 1.5rem;
  }

  .callout h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .callout p {
    font-size: 1rem;
  }

  .callout a.btn-primary {
    width: 100%;
    min-height: 48px;
  }
}

.callout h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.callout p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
}

.callout a.btn-primary {
  background-color: #fff;
  color: var(--color-ut-orange);
  box-shadow: var(--shadow-soft);
  margin-top: 1rem;
}

.callout a.btn-primary:hover {
  background-color: #f8fafc;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  display: table;
}

.table th, .table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  text-align: left;
}

.table th {
  color: var(--color-slate-900);
  font-weight: 700;
}

@media (max-width: 768px) {
  .table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table th,
  .table td {
    padding: 0.75rem 0.85rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }
}

.quote-bar {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: 20px;
  max-width: 400px;
  margin: 0 auto;
  background-color: var(--color-slate-900);
  color: #fff;
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.4);
  z-index: 9999;
}

.quote-bar a {
  color: #fff;
  font-weight: 600;
}

.quote-bar button {
  background-color: var(--color-ut-orange);
  border: none;
  color: #fff;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.2s ease;
}

.quote-bar button:hover {
  background-color: var(--color-ut-orange-dark);
}

.hero-service-area {
  background: linear-gradient(140deg, #ffffff 25%, rgba(248, 250, 252, 0.94) 70%);
  padding-top: 5rem;
}

.hero-service-area__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3rem;
}

.hero-service-area__copy h1 {
  margin-bottom: 1rem;
}

.hero-service-area__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: 0.75rem;
}

.hero-service-area__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--color-slate-700);
}

.hero-service-area__list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-ut-orange);
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.hero-service-area__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-service-area__visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-service-area__map {
  position: relative;
  background: linear-gradient(135deg, var(--color-ut-orange), var(--color-ut-orange-dark));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  min-height: 360px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
}

.hero-service-area__pulse {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  top: 40px;
  right: 60px;
  opacity: 0.8;
}

.hero-service-area__badge {
  position: absolute;
  top: 28px;
  left: 28px;
  background-color: rgba(15, 23, 42, 0.85);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.45);
}

.hero-service-area__badge strong {
  font-size: 1.1rem;
  color: #fff;
}

.hero-service-area__badge span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.hero-service-area__zones {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.hero-service-area__zones li {
  padding-left: 1rem;
  position: relative;
  font-weight: 600;
}

.hero-service-area__zones li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.75);
}

.hero-service-area__caption {
  font-size: 0.9rem;
  color: var(--color-slate-700);
}

.metrics-row {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.75rem;
}

.metric {
  background-color: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.metric__value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-slate-900);
}

.metric__label {
  font-size: 0.95rem;
  color: var(--color-slate-600);
}

.city-overview {
  background-color: #fff;
}

.section-header {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.city-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
}

.city-card {
  background-color: var(--color-sand-50);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-soft);
}

.city-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.city-card__tag {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-ut-orange-dark);
  background-color: rgba(255, 130, 0, 0.1);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.city-card__details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-slate-700);
}

.city-card__details span {
  font-weight: 600;
  color: var(--color-slate-800);
  display: inline-block;
  width: 120px;
}

.city-card__link {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.city-card__link::after {
  content: "\2192";
  font-size: 1rem;
  transform: translateY(-1px);
}

.service-visit {
  background-color: var(--color-sand-100);
}

.service-visit__card {
  grid-template-columns: minmax(0, 1fr);
  gap: 3rem;
}

.service-visit__card .btn-secondary {
  align-self: flex-start;
}

.service-visit__notes {
  background-color: #fff;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.inline-stats {
  margin: 0;
  display: grid;
  gap: 1rem;
}

.inline-stats div {
  display: grid;
  gap: 0.35rem;
}

.inline-stats dt {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-slate-800);
}

.inline-stats dd {
  margin: 0;
  color: var(--color-slate-700);
}

.service-visit__note {
  font-size: 0.9rem;
  color: var(--color-slate-600);
}

.logistics {
  background-color: #fff;
}

.logistics-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
}

.logistics-card {
  background-color: var(--color-sand-50);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-soft);
}

.logistics-card__footnote {
  font-size: 0.9rem;
  color: var(--color-slate-600);
}

.photo-feature {
  background-color: var(--color-sand-100);
}

.photo-feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3rem;
}

.photo-feature__image img {
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: var(--shadow-soft);
}

.photo-feature__image figcaption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--color-slate-600);
}

.photo-feature__content {
  display: grid;
  gap: 1.5rem;
}

.photo-feature__highlights {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(0, 1fr);
}

.photo-feature__highlights div {
  background-color: #fff;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 0.35rem;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.photo-feature__highlights strong {
  font-size: 1.35rem;
  color: var(--color-slate-900);
}

.photo-feature__highlights span {
  font-size: 0.95rem;
  color: var(--color-slate-700);
}

@media (max-width: 1024px) {
  nav ul {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--color-slate-900);
    min-width: 44px;
    min-height: 44px;
    padding: 0.5rem;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
  }

  .mobile-nav-toggle:hover,
  .mobile-nav-toggle:focus {
    opacity: 0.7;
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    background-color: #fff;
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
  }

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

  .mobile-nav a {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--color-slate-700);
    transition: background-color 0.2s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .mobile-nav a:hover,
  .mobile-nav a:focus {
    background-color: var(--color-sand-100);
    color: var(--color-ut-orange);
  }

  .mobile-nav a.btn-primary {
    background-color: var(--color-ut-orange);
    color: #fff;
    justify-content: center;
    margin-top: 0.5rem;
  }

  .mobile-nav a.btn-primary:hover,
  .mobile-nav a.btn-primary:focus {
    background-color: var(--color-ut-orange-dark);
    color: #fff;
  }

  .mobile-nav a.btn-secondary {
    border: 2px solid var(--color-ut-orange);
    color: var(--color-ut-orange);
    justify-content: center;
    background-color: transparent;
  }

  .mobile-nav a.btn-secondary:hover,
  .mobile-nav a.btn-secondary:focus {
    background-color: rgba(255, 130, 0, 0.05);
  }

  .hero-service-area__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-service-area__badge {
    left: 24px;
    right: auto;
  }

  .metrics-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .photo-feature__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  header {
    padding: 0;
  }

  .nav-container {
    padding: 0 0 0 1rem;
    height: 70px;
    max-width: 100%;
    margin: 0;
    width: 100%;
  }

  .brand {
    font-size: 1.2rem;
  }

  .mobile-nav-toggle {
    margin-left: auto;
    margin-right: 0;
    padding: 0.5rem 1rem;
    flex-shrink: 0;
  }

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

  .hero .content {
    padding: 0 1rem;
    gap: 2rem;
  }

  .hero__copy {
    padding: 0;
  }

  .hero__copy h1 {
    font-size: clamp(2rem, 6vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .hero__copy p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero__badge-row {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .hero__badge-row .badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.7rem;
  }

  .hero__stats {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero__stat {
    padding: 1.25rem 1rem;
  }

  .hero__stat strong {
    font-size: 1.75rem;
  }

  .hero__stat span {
    font-size: 0.9rem;
  }

  .hero__ctas {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .hero__ctas .btn-primary,
  .hero__ctas .btn-secondary {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }

  .quote-bar {
    position: fixed;
    bottom: 12px;
    right: 12px;
    left: 12px;
    max-width: none;
    padding: 0.75rem 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .quote-bar span {
    font-size: 0.85rem;
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 0.25rem;
  }

  .quote-bar button,
  .quote-bar a {
    flex: 1 1 auto;
    min-width: 120px;
    min-height: 44px;
    font-size: 0.9rem;
    padding: 0.65rem 1rem;
    text-align: center;
    justify-content: center;
  }

  .hero-service-area {
    padding-top: 3.5rem;
  }

  .hero-service-area__map {
    min-height: 300px;
    padding: 2rem;
  }

  .hero-service-area__badge {
    top: 22px;
    left: 22px;
  }

  .hero-service-area__zones li {
    font-size: 0.9rem;
  }

  .city-card__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .city-card__details span {
    width: auto;
  }

  .metrics-row {
    gap: 1.25rem;
  }

  .service-visit__card {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Service Area Map Styles */
#service-area-map {
  width: 100%;
  min-height: 500px;
  border: 1px solid var(--color-border);
}

@media (max-width: 768px) {
  #service-area-map {
    min-height: 400px;
    border-radius: var(--radius-md);
  }

  #service-area-map .leaflet-popup-content-wrapper {
    max-width: 280px;
  }

  #service-area-map .leaflet-popup-content {
    padding: 0.5rem;
  }

  #service-area-map .leaflet-popup-content h3 {
    font-size: 1rem;
  }

  #service-area-map .leaflet-popup-content p {
    font-size: 0.85rem;
  }

  #service-area-map .leaflet-popup-content a {
    font-size: 0.8rem;
    padding: 0.35rem 0.7rem;
    min-height: 36px;
  }
}

/* Leaflet map customizations */
#service-area-map .leaflet-container {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

#service-area-map .leaflet-popup-content-wrapper {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 0;
}

#service-area-map .leaflet-popup-content {
  margin: 0;
  padding: 0;
}

#service-area-map .leaflet-popup-tip {
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
}

#service-area-map .leaflet-control-zoom {
  border: none;
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

#service-area-map .leaflet-control-zoom a {
  background-color: #fff;
  color: var(--color-slate-700);
  border: 1px solid var(--color-border);
  font-weight: 600;
}

#service-area-map .leaflet-control-zoom a:hover {
  background-color: var(--color-sand-50);
  color: var(--color-ut-orange);
}
