:root {
  --green: #019865;
  --navy: #1e2c55;
  --blue: #2ea3f2;
  --text: #666666;
  --text-dark: #333333;
  --bg: #ffffff;
  --footer-bg: #222222;
  --header-offset: 120px;
  --header-current-height: 120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

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

p {
  margin-bottom: 1rem;
}

h1,
h2,
h3,
h4 {
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.container {
  width: min(1080px, 90%);
  margin: 0 auto;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.25s ease;
}

header.scrolled {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Main content needs padding to account for fixed header */
main {
  padding-top: var(--header-offset);
}

.top-bar {
  background: var(--green);
  color: #fff;
  font-size: 0.9rem;
  overflow: hidden;
  max-height: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: max-height 0.32s ease, opacity 0.24s ease;
}

header.is-condensed .top-bar {
  max-height: 36px;
  opacity: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
}

header.is-condensed .top-bar-inner {
  padding: 0.2rem 0;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.social-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.95;
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0;
  transition: padding 0.3s ease;
}

header.is-condensed .navbar {
  padding: 0.22rem 0;
}

.logo {
  transition: transform 0.28s ease;
}

.logo img {
  display: block;
  width: min(270px, 45vw);
  height: auto;
  transition: width 0.28s ease;
}

header.is-condensed .logo img {
  width: min(160px, 28vw);
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 0;
  transition: gap 0.28s ease;
}

header.is-condensed .nav-links {
  gap: 0.5rem;
}

header.is-condensed .nav-links a {
  font-size: 0.82rem;
}

/* Phone Strip - Dark Navy CTA Strip */
.phone-strip {
  background: var(--navy);
  padding: 1rem 1rem;
  text-align: center;
  transition: max-height 0.32s ease, opacity 0.24s ease, padding 0.3s ease;
  overflow: hidden;
  max-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

header.is-condensed .phone-strip {
  max-height: 0;
  opacity: 0;
  padding: 0;
}

.phone-strip .phone-number {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: font-size 0.3s ease;
  display: inline-block;
  line-height: 1;
}

header.is-condensed .phone-strip .phone-number {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

.phone-strip .phone-number:hover {
  color: #c0c8e0;
  text-decoration: none;
}

.nav-links a {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--green);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 28px;
  border-radius: 3px;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: var(--header-current-height);
  right: -100%;
  width: min(320px, 84vw);
  height: calc(100vh - var(--header-current-height));
  background: #fff;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.25rem 1.5rem 1.5rem;
  transition: right 0.25s ease;
  z-index: 1100;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  color: var(--navy);
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e7e7e7;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mobile-menu nav a {
  display: block;
  width: 100%;
}

.hero {
  padding: 2rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(1, 152, 101, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

.hero-image {
  text-align: center;
}

.hero-image img {
  width: min(560px, 100%);
  height: auto;
}

.hero-content {
  text-align: center;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
}

.hero-content h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  color: #555;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  border: 2px solid transparent;
  border-radius: 3px;
  padding: 0.58rem 1.05rem;
  font-size: 1rem;
  font-weight: 800;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-navy:hover {
  background: #182447;
  color: #fff;
}

.btn-green {
  background: var(--green);
  color: #fff;
}

.btn-green:hover {
  background: #017a52;
  color: #fff;
}

.btn-call-now {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icon label"
    "sub sub";
  align-items: center;
  column-gap: 0.45rem;
  text-align: center;
}

.btn-call-now svg {
  grid-area: icon;
}

.btn-call-now > span {
  grid-area: label;
}

.btn-call-now .btn-subtext {
  grid-area: sub;
  display: block;
  margin-top: 0.1rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.15;
  font-style: normal;
  opacity: 0.95;
}

.hero-cta .btn-call-now svg {
  margin-right: 0 !important;
}

.anchor-offset {
  height: 1px;
}

.intro-section {
  padding: 2.5rem 0 2.2rem;
}

.intro-content {
  text-align: center;
}

.intro-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
}

.intro-content p {
  max-width: 980px;
  margin: 0 auto 1rem;
  font-size: 1.04rem;
}

.divider {
  height: 8px;
  width: min(920px, 100%);
  background: #4fbc80;
  margin: 0 auto 1.6rem;
}

.divider:last-child {
  margin: 1.7rem auto 0;
}

.features-section {
  padding: 0.5rem 0 2.4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.feature-card {
  text-align: center;
  padding: 0.5rem 0.4rem;
}

.feature-icon {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  border: 3px solid #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin: 0 auto 1rem;
  background: #fff;
}

.feature-card h4 {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.feature-card p {
  font-size: 1rem;
  margin: 0;
}

.cta-section {
  padding: 0.2rem 0 3.2rem;
}

.cta-box {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 2.3rem 1.2rem;
}

.cta-box h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.cta-box p {
  color: #d8e0f0;
  max-width: 760px;
  margin: 0 auto 1.2rem;
}

footer {
  background: var(--footer-bg);
}

.footer-nav {
  background: var(--footer-bg);
  padding: 0.95rem 0;
}

.footer-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.footer-nav .social-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  order: -1;
}

.footer-nav .social-links a {
  color: #bbbbbb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.footer-nav .social-links a:hover {
  color: #fff;
}

.footer-nav .nav-links {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin: 0 auto;
}

.footer-nav a {
  color: #bbbbbb;
  text-transform: uppercase;
  font-size: 1.05rem;
}

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

.footer-bottom {
  display: flex;
  justify-content: center;
  padding: 1rem 0 1.3rem;
  background: var(--footer-bg);
}

.footer-bottom p {
  color: #888;
  margin: 0;
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.5;
}

.footer-bottom p a {
  color: #9c9c9c;
}

.footer-bottom p a:hover {
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth link transitions */
.nav-links a, 
.footer-nav a {
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after,
.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.footer-nav a:hover::after {
  width: 100%;
}

/* Button enhanced styles */
.btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

/* Cards - refined transitions without hover highlight */
.size-card,
.city-card,
.feature-card,
.testimonial-card,
.job-item {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Smooth scrolling enhancement */
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-offset) + 10px);
}

/* Feature icon pulse animation */
.feature-icon {
  animation: iconFloat 3s ease-in-out infinite;
}

/* Feature Image - 4:3 aspect ratio for Why Choose section */
.feature-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  background: #f5f5f5;
  margin-bottom: 1rem;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Divider gradient animation */
.divider {
  background: linear-gradient(90deg, var(--green) 0%, #4fbc80 50%, var(--green) 100%);
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Hero section enhanced */
.hero-grid {
  position: relative;
  z-index: 1;
}

/* Form input focus states */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(1, 152, 101, 0.15);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* CTA box enhanced */
.cta-box {
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), #4fbc80, var(--green));
  background-size: 200% 100%;
  animation: gradientShift 2s ease infinite;
  z-index: 10;
}

/* Video background for CTA section */
.cta-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Black overlay on video */
.cta-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Content container positioned above video */
.cta-box-content {
  position: relative;
  z-index: 5;
  color: #fff;
  text-align: center;
  padding: 2.3rem 1.2rem;
}

.cta-box-content h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.cta-box-content p {
  color: #d8e0f0;
  max-width: 760px;
  margin: 0 auto 1.2rem;
}

/* Size label badge effect */
.size-label {
  position: relative;
  overflow: hidden;
}

.size-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Contact item hover */
.contact-item:hover {
  transform: translateX(5px);
  transition: transform 0.3s ease;
}

.contact-item {
  transition: transform 0.3s ease;
}

/* Screen reader only class for accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--green);
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* ========================================
   NEW HOMEPAGE SECTION STYLES
   ======================================== */

/* Trust badges - Marketing psychology social proof */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #666;
  background: #f5f5f5;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-weight: 600;
}

.trust-badge svg {
  color: var(--green);
}

/* Hero subtitle styling */
.hero-subtitle {
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  color: #555;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* Improved focus states for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
select:focus:not(:focus-visible) {
  outline: none;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .reveal {
    opacity: 1;
    transform: none;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Page Header - accounts for fixed header */
.page-header {
  background: var(--navy);
  padding: 3.25rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.page-header h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0;
  position: relative;
}

/* About Page */
.about-section {
  padding: 3rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  margin-bottom: 1.2rem;
}

.about-content p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.leed-section {
  background: #f8f9fa;
  padding: 3rem 0;
}

.leed-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.leed-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  margin-bottom: 1.2rem;
}

.leed-content p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

/* Order Page */
.order-section {
  padding: 3rem 0;
}

.size-options {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

@media (max-width: 1100px) {
  .size-options {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (max-width: 480px) {
  .size-options {
    grid-template-columns: 1fr;
  }
}

.size-card {
  background: #fff;
  border: 2px solid #e7e7e7;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.size-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

.size-card .size-label {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.size-card p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

.faq-section {
  background: #f8f9fa;
  padding: 3rem 0;
}

.faq-item {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-item h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.faq-item p {
  margin: 0;
  font-size: 1rem;
}

/* Service Area Page */
.service-cities {
  padding: 3rem 0;
}

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

.city-card {
  background: #fff;
  border: 2px solid #e7e7e7;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.city-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.city-card:hover,
.city-card-link:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.city-card-link:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.city-card h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.city-card p {
  font-size: 1rem;
  margin: 0;
}

.city-card-cta {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--green);
}

/* Contact Page */
.contact-section {
  padding: 3rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  margin-bottom: 1.2rem;
}

.contact-info p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-item svg {
  color: var(--green);
  flex-shrink: 0;
}

.contact-item a {
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-form {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}

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

/* Testimonials Page - Google Reviews Style */
.testimonials-section {
  padding: 3rem 0;
}

.google-reviews-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #666;
}

.testimonials-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.testimonials-rating .stars {
  display: flex;
  gap: 2px;
}

.rating-text {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

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

.testimonial-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s ease;
}

.testimonial-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  flex-shrink: 0;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reviewer-name {
  font-weight: 700;
  font-size: 1rem;
  color: #202124;
  margin: 0;
}

.review-stars {
  display: flex;
  gap: 1px;
}

.testimonial-card .quote {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  color: #4a4a4a;
}

.reviewer-location {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

/* Legacy testimonial styles */
.testimonial-card .author {
  font-weight: 700;
  color: var(--navy);
}

/* Job Opportunities Page */
.jobs-section {
  padding: 3rem 0;
}

.job-item {
  background: #fff;
  border: 2px solid #e7e7e7;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

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

.job-item p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.questions-text {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #666;
}

.questions-text a {
  font-weight: 600;
}

/* Privacy Page */
.privacy-section {
  padding: 3rem 0;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.privacy-content p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Application Page - Modern Form Styles */
.application-section {
  padding: 3rem 0;
}

.application-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.application-intro h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.application-intro p {
  font-size: 1.05rem;
  color: #666;
  margin: 0;
}

.application-form {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 2.5rem;
  border: 1px solid #e8e8e8;
}

.form-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 2rem;
  padding-bottom: 0;
}

.form-section h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--green);
  display: inline-block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-row:last-child {
  margin-bottom: 0;
}

.form-row-3 {
  grid-template-columns: 2fr 1fr 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(1, 152, 101, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0aec0;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  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='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

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

.checkbox-group {
  margin-top: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--green);
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-label span {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.form-actions {
  text-align: center;
  padding-top: 1rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  min-width: 220px;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #888;
}

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

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .form-row-3 {
    grid-template-columns: 1fr;
  }

  .btn-lg {
    width: 100%;
    padding: 0.9rem 1.5rem;
  }
}

@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 980px) {
  .top-bar-right {
    display: none;
  }

  .top-bar,
  .navbar,
  .logo img {
    transition: none;
  }

  header.is-condensed .top-bar {
    max-height: 52px;
    opacity: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .navbar {
    padding: 0.75rem 0;
  }

  header.is-condensed .navbar {
    padding: 0.75rem 0;
  }

  .logo img {
    width: min(210px, 58vw);
  }

  header.is-condensed .logo img {
    width: min(210px, 58vw);
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
    z-index: 1200;
  }

  .phone-strip {
    max-height: 60px;
  }

  header.is-condensed .phone-strip {
    max-height: 0;
    opacity: 0;
  }

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

  .hero-image img {
    transform: none !important;
  }

  .reveal,
  .reveal.active {
    opacity: 1;
    transform: none;
    transition: none;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .logo img {
    width: min(135px, 30vw) !important;
  }
  
  .top-bar-inner {
    justify-content: center;
  }

  .top-bar-left {
    justify-content: center;
    gap: 0.8rem;
  }

  .top-bar-left a[href^="mailto:"],
  .top-bar .social-links {
    display: none;
  }

  .hero {
    padding-top: 1.7rem;
  }

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

  .footer-nav a {
    font-size: 0.95rem;
  }
}

/* TrashLab Modal Styles */
.trashlab-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trashlab-modal.hidden {
  display: none;
}

.trashlab-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.trashlab-modal-container {
  position: relative;
  background: #f8fafc;
  border-radius: 16px;
  width: min(95vw, 500px);
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}

.trashlab-modal-header {
  background: white;
  border-bottom: 1px solid #e2e8f0;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
}

.trashlab-modal-header-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trashlab-modal-header img {
  height: 36px;
  width: auto;
}

.trashlab-modal-header-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e2c55;
  margin: 0;
}

.trashlab-modal-header-text p {
  font-size: 0.75rem;
  color: #94a3b8;
  margin: 0;
}

.trashlab-modal-close {
  width: 36px;
  height: 36px;
  border: none;
  background: #f1f5f9;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #64748b;
  transition: all 0.2s ease;
  line-height: 1;
}

.trashlab-modal-close:hover {
  background: #e2e8f0;
  color: #334155;
}

.trashlab-iframe-container {
  flex: 1;
  overflow: auto;
  background: white;
}

.trashlab-iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

@media (max-width: 640px) {
  .trashlab-modal-container {
    width: 100vw;
    max-height: 100vh;
    border-radius: 0;
  }
  
  .trashlab-iframe {
    height: 100vh;
  }
}

/* ========================================
   HOMEPAGE NEW SECTION STYLES
   ======================================== */

/* Services Section */
.services-section {
  padding: 3rem 0;
  background: #fff;
}

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

.service-card {
  background: #fff;
  border: 2px solid #e7e7e7;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #4fbc80);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #fff;
}

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

.service-card p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Sizes Teaser Section */
.sizes-teaser-section {
  padding: 3rem 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.sizes-preview-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.size-preview-card {
  background: #fff;
  border: 2px solid #e7e7e7;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.size-preview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--green);
}

.size-preview-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.size-preview-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.size-preview-card p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Service Area Section */
.service-area-section {
  padding: 3rem 0;
  background: #fff;
}

.service-area-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2rem;
}

.service-map-placeholder {
  background: linear-gradient(135deg, #f0f7f4 0%, #e8f5f0 100%);
  border: 2px dashed var(--green);
  border-radius: 12px;
  padding: 2rem;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.service-map-placeholder[style*="background-image"] {
  border: none;
}

.service-map-placeholder[style*="background-image"] .map-placeholder-content {
  text-align: center;
  z-index: 1;
}

.service-map-placeholder[style*="background-image"]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  z-index: 0;
}

.service-map-placeholder[style*="background-image"] .map-placeholder-content {
  position: relative;
  z-index: 1;
}

.map-placeholder-content {
  text-align: center;
  color: var(--green);
}

.map-placeholder-content svg {
  margin-bottom: 1rem;
  opacity: 0.8;
}

.map-placeholder-content p {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.25rem;
}

.map-placeholder-content span {
  font-size: 0.9rem;
  color: #666;
}

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

.city-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.city-links li {
  margin: 0;
}

.city-links a {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  background: #f5f5f5;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.city-links a:hover {
  background: var(--green);
  color: #fff;
}

.service-note {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

.service-note a {
  font-weight: 700;
  color: var(--green);
}

/* Testimonials Carousel Section */
.testimonials-carousel-section {
  padding: 3rem 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.testimonials-carousel-section .testimonials-grid {
  margin-top: 2rem;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.75rem;
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.testimonial-location {
  font-size: 0.85rem;
  color: #888;
}

/* FAQ Accordion Styles */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-section .faq-item {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-section .faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  font-family: inherit;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--green);
}

.faq-question span {
  flex: 1;
  padding-right: 1rem;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--green);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 500px;
}

/* Responsive adjustments for new sections */
@media (max-width: 1024px) {
  .sizes-preview-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .service-area-content {
    grid-template-columns: 1fr;
  }
  
  .service-map-placeholder {
    min-height: 200px;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .sizes-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .city-links {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-carousel-section .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-question {
    font-size: 1rem;
    padding: 1rem 1.25rem;
  }
  
  .faq-answer p {
    padding: 0 1.25rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .sizes-preview-grid {
    grid-template-columns: 1fr;
  }
  
  .city-links {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   ABOUT PAGE NEW SECTION STYLES
   ======================================== */

/* Page Header Subtitle */
.page-header-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  margin: 0.5rem 0 0;
  font-weight: 500;
}

/* Values Section */
.values-section {
  padding: 3rem 0;
  background: #fff;
}

.values-content {
  max-width: 1000px;
  margin: 0 auto;
}

.values-content > p {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #4fbc80);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #fff;
}

.value-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Fleet Section */
.fleet-section {
  padding: 3rem 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.fleet-content {
  max-width: 1000px;
  margin: 0 auto;
}

.fleet-content h2 {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1.5rem;
}

.fleet-content > p {
  text-align: center;
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 2rem;
}

.fleet-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border: 2px solid #e7e7e7;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--green);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.stat-description {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.fleet-content > p:not(:first-child) {
  text-align: left;
  font-size: 1rem;
  color: #555;
  margin-top: 1.5rem;
}

/* Environmental Section */
.environmental-section {
  padding: 3rem 0;
  background: #fff;
}

.environmental-content {
  max-width: 1000px;
  margin: 0 auto;
}

.environmental-content h2 {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1.5rem;
}

.environmental-content > p {
  text-align: center;
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.env-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.env-highlight {
  background: #f8f9fa;
  border-left: 4px solid var(--green);
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
}

.env-highlight h4 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.env-highlight p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

.environmental-content > p:last-of-type {
  text-align: center;
  font-size: 1.05rem;
  color: #555;
  margin-top: 2rem;
  font-style: italic;
}

/* Community Section */
.community-section {
  padding: 3rem 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.community-content {
  max-width: 1000px;
  margin: 0 auto;
}

.community-content h2 {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1.5rem;
}

.community-content > p {
  text-align: center;
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.differentiators {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.differentiator-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.differentiator-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.differentiator-item svg {
  flex-shrink: 0;
  color: var(--green);
  margin-top: 0.25rem;
}

.differentiator-item strong {
  display: block;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.differentiator-item p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* CTA Trust Badge */
.cta-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Responsive About Page */
@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .fleet-stats {
    grid-template-columns: 1fr;
  }
  
  .env-highlights {
    grid-template-columns: 1fr;
  }
  
  .differentiators {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .differentiator-item {
    flex-direction: column;
    text-align: center;
  }
  
  .differentiator-item svg {
    margin: 0 auto 0.5rem;
  }
}

/* Mobile Footer Navigation - Stack links vertically on small screens */
@media (max-width: 768px) {
  .footer-nav .container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .footer-nav .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .footer-nav .nav-links a {
    display: block;
    padding: 0.5rem 1rem;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
  }
  
  .footer-nav .nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  
  .footer-nav .social-links {
    order: -1;
    margin-bottom: 0.5rem;
  }
}
