*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1a1a1a;
  background-color: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  height: 120px;
  background-color: transparent;
  border-bottom: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s;
}

.header-section {
  height: 100%;
  display: flex;
  align-items: center;
}

.header-left {
  width: 30%;
  background-color: #f26a2136;
  justify-content: center;
  position: relative;
}

.header-middle {
  width: 2%;
  background-color: #009045;
}

.header-right {
  width: 68%;
  background-color: #000000;
  justify-content: flex-end;
  padding-right: 3rem;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 60px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.95rem;
}

.nav a {
  padding: 0.5rem 0;
  color: #fbba00;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.nav a:hover {
  color: #ffffff;
}

.nav a.btn {
  padding: 0.6rem 1.25rem;
  color: #ffffff;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  padding: 0.4rem 0.6rem;
  font-size: 1.1rem;
  color: #fff;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background-color: #f26a21;
  color: #ffffff;
  font-size: 0.95rem;
  transition: transform 0.2s, background-color 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  background-color: #e05e1a;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-outline {
  background-color: transparent;
  color: #f26a21;
  border: 1px solid #f26a21;
}

.btn-outline:hover {
  background-color: #f26a21;
  color: #fff;
}

/* Hero Sections */
.hero {
  position: relative;
  color: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 140px; /* offset for fixed header */
}

/* Homepage Hero */
.hero-simple {
  min-height: 100vh;
  background-color: #111827;
}

.home-logo {
  height: 200px;
  margin: 0 auto 1rem;
  filter: none;
}

.hero-tagline {
  color: #009045;
  font-size: 1.3rem;
  line-height: 1.7;
  font-weight: 700;
  margin: 0.5rem auto 1.25rem;
  max-width: 1000px;
}

.hero-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  border: 3px solid #f26a21;
  color: #111;
  background: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.category-pill:hover {
  background: #fff7f2;
}
.hero-background {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/everyday/assets/img/hero-food.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-inner {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-inner-simple {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin: 0 0 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-text {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 40rem;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.eyebrow {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  color: #f26a21;
  font-weight: 600;
}

/* Inner Page Hero */
.page-hero {
  min-height: 75vh;
  background-color: #111827;
  display: flex; /* Added to enable centering */
  flex-direction: column; /* Added for vertical stacking */
  text-align: center;
  justify-content: center;
  align-items: center; /* Added for horizontal centering */
  position: relative; /* Added for z-index context */
  color: #fff; /* Ensure text is visible */
  background-size: cover;
  background-position: center;
}

.page-hero .container {
    position: relative;
    z-index: 2; /* Ensure content is above overlay */
}

.page-hero .hero-background {
  /* Removed - now applied directly to section via inline style or separate class */
  display: none; 
}

.page-hero h1 {
  font-size: 3rem;
  margin: 0 0 1rem;
}

.page-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-highlight {
  background-color: #ffffff;
  padding: 6rem 0;
}

.section-alt {
  background-color: #f9fafb;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-head h1 {
  font-size: 2.5rem;
  margin: 0 0 1rem;
}

.section-head p {
  font-size: 1.1rem;
  color: #666;
}

/* Modules / Cards */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
}

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

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

.module-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid #f1f1f1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.module-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.module-card h2 {
  font-size: 1.5rem;
  margin: 0.5rem 0;
}

.module-card p {
  margin: 0 0 1rem;
  color: #555;
  line-height: 1.6;
}

.module-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #f3f4f6;
  color: #374151;
  align-self: flex-start;
}

.info-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.info-card.highlight {
  background: linear-gradient(135deg, #111827, #1f2937);
  color: #fff;
  border: none;
}

.info-card.highlight h2,
.info-card.highlight p {
  color: #fff;
}

.info-card h2 {
  margin-top: 0;
  font-size: 1.75rem;
}

.ticks {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.ticks li {
  margin-bottom: 0.75rem;
  padding-left: 1.75rem;
  position: relative;
  color: #4b5563;
}

.ticks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #f26a21;
  font-weight: bold;
}

/* Locations */
.location-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid #eee;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  border-color: #f26a21;
}

.location-map-placeholder {
  height: 180px;
  background-color: #eee;
  background-image: url('https://placehold.co/600x300/f1f1f1/ddd?text=Map+View');
  background-size: cover;
  background-position: center;
  position: relative;
}

.location-details {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.location-details h3 {
  font-size: 1.25rem;
  color: #111;
  margin: 0 0 1rem;
  font-weight: 700;
}

.location-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.location-info-item i, 
.location-info-item .icon-box {
  color: #f26a21;
  font-size: 1.1rem;
  min-width: 20px;
  text-align: center;
  margin-top: 2px;
}

.location-actions {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid #f1f1f1;
  display: flex;
  gap: 1rem;
}

.btn-directions {
  flex: 1;
  text-align: center;
  background-color: #fff;
  color: #f26a21;
  border: 1px solid #f26a21;
  padding: 0.6rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.btn-directions:hover {
  background-color: #f26a21;
  color: #fff;
}

@media (max-width: 768px) {
  .city-title {
    font-size: 1.75rem;
  }
}

/* Brand List Layout */
.brand-row {
  display: flex;
  align-items: flex-start; /* Aligns content to top as per design */
  gap: 4rem;
  margin-bottom: 6rem;
  border-bottom: 1px solid #eee; /* Optional separator */
  padding-bottom: 6rem;
}

.brand-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.brand-info {
  flex: 0 0 40%;
}

.brand-logo {
  margin-bottom: 2rem;
  max-width: 150px;
}

.brand-description {
  color: #555;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 2rem;
  text-align: justify;
}

.brand-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.brand-social a {
  color: #f26a21; /* Brand Orange */
  font-size: 1.2rem;
  text-decoration: none;
}

.brand-image-container {
  flex: 1;
  position: relative;
}

.brand-image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 5px solid #f26a21; /* Brand Orange bottom border */
}

/* Specific placeholder styles if needed, or mapped from existing classes */
.brand-placeholder-image {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-bottom: 5px solid #f26a21;
}

@media (max-width: 768px) {
  .brand-row {
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 4rem;
    margin-bottom: 4rem;
  }
  
  .brand-info {
    flex: 0 0 100%;
    width: 100%;
  }
}

/* Service Page Layout */
.service-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 6rem;
}

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

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-content {
  flex: 1;
}

.service-image {
  flex: 1;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  position: relative;
}

/* Add a decorative border/accent to images */
.service-image::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 100px;
  height: 100px;
  border-bottom: 5px solid #f26a21;
  border-right: 5px solid #f26a21;
  border-radius: 0 0 12px 0;
  z-index: -1;
}

.service-row.reverse .service-image::after {
  right: auto;
  left: -15px;
  border-right: none;
  border-left: 5px solid #f26a21;
  border-radius: 0 0 0 12px;
}

.service-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #111;
}

.service-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.5rem;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #009045; /* Brand Green */
}

/* Why Choose Us Section */
.why-choose-us {
  background-color: #f9fafb;
  padding: 6rem 0;
  text-align: center;
}

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

.benefit-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 2rem;
  color: #f26a21;
  margin-bottom: 1rem;
  display: inline-block;
  background: #fff3e0;
  padding: 1rem;
  border-radius: 50%;
}

@media (max-width: 900px) {
  .service-row, .service-row.reverse {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .service-image {
    width: 100%;
    height: 300px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   FOOTER STYLES
   ========================================= */

.site-footer {
  position: relative;
  background-color: transparent;
  color: #fff;
  margin-top: 0;
  display: block;
}

.site-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-logo-mark {
  height: 60px;
}

.footer-wave {
  width: 100%;
  line-height: 0;
  background-color: transparent;
  margin-bottom: -1px; /* Prevent white line gap */
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 150px; /* Reduce height as requested */
}

.footer-content {
  background-color: #f26a21; /* Brand Orange to match wave */
  padding: 0 0 2rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem;
  padding-top: 1rem;
}

.footer-brand {
  flex: 0 0 30%;
  max-width: 400px;
}

.footer-brand .logo img {
  height: 50px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1); /* White logo */
}

.footer-brand p {
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  font-size: 1rem;
}

.footer-nav {
  display: flex;
  gap: 4rem;
  flex: 1;
  justify-content: flex-end;
}

.nav-column h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.nav-column a {
  display: block;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.75rem;
  transition: color 0.2s;
  font-size: 0.95rem;
}

.nav-column a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    height: 90px;
  }
  .header-right {
    padding-right: 1rem;
    position: relative;
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000;
    flex-direction: column;
    gap: 0;
    padding: 1rem 1.5rem;
    display: none;
  }
  .nav.open {
    display: flex;
  }
  .nav a {
    color: #fff;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav > a,
  .nav-item > a {
    display: block;
    text-align: center;
  }
  .nav a:last-child {
    border-bottom: none;
  }
  .nav-toggle {
    display: inline-block;
    margin-left: 1rem;
  }
  .nav-item.dropdown .dropdown-menu {
    position: static;
    visibility: hidden;
    opacity: 0;
    transform: none;
    padding: 0;
    height: 0;
    overflow: hidden;
    box-shadow: none;
    background: transparent;
  }
  .nav-item.dropdown.open .dropdown-menu {
    visibility: visible;
    opacity: 1;
    height: auto;
    padding: 0.5rem 0;
  }
  .dropdown-menu a {
    padding: 0.5rem 0;
    color: #fff;
    border-bottom: none;
  }
  .footer-grid {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-brand {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
  
  .footer-brand .logo {
    justify-content: center;
  }
  
  .footer-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
  }
}

/* About Page Specifics */
.about-hero {
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/everyday/assets/img/hero-food.jpg');
  background-size: cover;
  background-position: center;
  padding: 220px 0 100px;
  min-height: 75vh;
  display: flex;
  align-items: center;
}

.about-hero-content {
  color: #fff;
  padding: 0;
  max-width: 800px;
}

.about-hero-content h1 {
  color: #f26a21;
  font-size: 3.5rem;
  margin-top: 0;
  font-weight: 800;
  text-transform: lowercase;
  margin-bottom: 1.5rem;
}

.about-hero-content p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.section-orange {
  background-color: #f26a21;
  color: #fff;
}

.align-center {
  align-items: center;
}

.underline-heading {
  display: inline-block;
  border-bottom: 3px solid #f26a21;
  padding-bottom: 5px;
  margin-bottom: 1.5rem;
  text-transform: lowercase;
  font-weight: 800;
  font-size: 1.75rem;
}

.underline-heading-white {
  display: inline-block;
  border-bottom: 3px solid #fff;
  padding-bottom: 5px;
  margin-bottom: 1.5rem;
  color: #fff;
  text-transform: lowercase;
  font-weight: 800;
  font-size: 2.5rem;
}

.vision-text {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.mission-intro {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
}

.mission-num {
  font-size: 3rem;
  font-weight: 800;
  color: #000;
  display: block;
  margin-bottom: 0.5rem;
}

.mission-item {
  margin-bottom: 2rem;
  border-left: 2px solid #ddd;
  padding-left: 1.5rem;
}

.values-intro {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.values-list {
  font-size: 1.5rem;
  font-weight: 700;
  list-style-type: disc;
  padding-left: 2rem;
}

.values-list li {
  margin-bottom: 0.5rem;
}

.team-grid img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s;
}

.team-grid img:hover {
  transform: scale(1.02);
}

/* Secondary Hero */
.secondary-hero {
  background-image: url('https://placehold.co/1600x600/222/fff?text=Everyday+Group+Journey');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.secondary-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.secondary-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.secondary-hero h2 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1rem;
}

/* Careers Page */
.career-hero {
  position: relative;
  background-image: url('https://placehold.co/1920x600/1a1a1a/333?text=Everyday+Careers');
  background-size: cover;
  background-position: center;
  height: 75vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  color: #fff;
}

.career-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.career-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.career-hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.career-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.career-image-container img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.section-gray {
  background-color: #f9f9f9;
}

/* Form Styles (Reconstructed) */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #374151;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: #f26a21;
  box-shadow: 0 0 0 3px rgba(242, 106, 33, 0.1);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    z-index: 10;
    line-height: 1;
}

.modal-close:hover {
    color: #f26a21;
}

.modal-text-col {
    padding: 2.5rem;
}

.modal-name {
    margin: 0 0 0.5rem;
    font-size: 2rem;
    color: #1a1a1a;
}

.modal-role {
    color: #f26a21;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.modal-bio {
    color: #444;
    line-height: 1.8;
    font-size: 1rem;
}

.modal-trigger {
    cursor: pointer;
    transition: transform 0.3s;
}

.modal-trigger:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.contact-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 75vh;
  display: flex;
  align-items: center;
  color: #fff;
}
.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.contact-hero-content h1 {
  font-size: 3.25rem;
  margin-bottom: 0.75rem;
  font-weight: 800;
}
.contact-hero-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
}
.contact-layout {
  align-items: flex-start;
  gap: 3rem;
}
.contact-info-wrapper,
.contact-form-wrapper {
  width: 100%;
}
.contact-details {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
}
.contact-icon {
  font-size: 1.25rem;
  color: #f26a21;
  min-width: 24px;
  text-align: center;
  margin-top: 2px;
}
.contact-map-preview {
  margin-top: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}
.contact-map-preview img {
  display: block;
  width: 100%;
  height: auto;
}
.form-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  padding: 2rem;
}
.form-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}
.form-card .mb-2 {
  margin-bottom: 0.75rem;
  color: #6b7280;
}
.contact-form .form-group {
  margin-bottom: 1rem;
}
.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #374151;
}
.contact-form .required {
  color: #ef4444;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #f26a21;
  box-shadow: 0 0 0 3px rgba(242, 106, 33, 0.1);
}
.btn-block {
  width: 100%;
}
.alert {
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin: 0.75rem 0 1rem;
  font-size: 0.95rem;
}
.alert-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #10b981;
}
.alert-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #ef4444;
}

/* ESG Styles */
.esg-badge {
    background-color: #8FD19E; /* Light green from image */
    color: #064E3B;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.esg-row {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 4rem;
    background: transparent;
}

.esg-row.reverse {
    flex-direction: row-reverse;
}

.esg-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

.esg-content-card {
    flex: 0 0 45%;
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    margin-left: -50px; /* Overlap effect */
    position: relative;
    z-index: 10;
}

.esg-row.reverse .esg-content-card {
    margin-left: 0;
    margin-right: -50px;
}

.esg-content-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.esg-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: #f26a21;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.esg-link:hover {
    text-decoration: underline;
}

/* Facility Gallery Grid */
.facility-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.grid-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px; /* Constrain width to center */
    margin: 0 auto;
    width: 100%;
}

.facility-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    background: #fff;
}

.facility-card:hover {
    transform: translateY(-5px);
}

.facility-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Focus Businesses Section */
.focus-hero {
    position: relative;
    padding: 6rem 0;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
}

.focus-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6); /* Dark overlay */
    z-index: 1;
}

.focus-hero-content {
    position: relative;
    z-index: 2;
}

.focus-hero h2 {
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    color: #4ade80; /* Light green text */
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.focus-logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 4rem 0;
    flex-wrap: wrap;
}

.focus-logo-item {
    max-width: 200px;
}

.focus-logo-item img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.focus-logo-item:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .grid-row-3, .grid-row-2 {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    .focus-logos-row {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Dropdown Menu */
.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #000;
    min-width: 180px;
    padding: 1rem 0;
    border-radius: 0 0 8px 8px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.nav-item.dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: #fff;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: #f26a21;
    color: #fff;
}

@media (max-width: 900px) {
    .esg-row, .esg-row.reverse {
        flex-direction: column;
        margin-bottom: 3rem;
    }
    .esg-image {
        width: 100%;
        min-height: 300px;
        border-radius: 12px 12px 0 0;
    }
    .esg-content-card, .esg-row.reverse .esg-content-card {
        margin: -20px 1rem 0;
        width: calc(100% - 2rem);
        padding: 2rem;
        border-radius: 12px;
    }
}

@media (max-width: 768px) {
    .modal-content {
        max-height: 85vh;
        width: 95%;
    }
    .modal-text-col {
        padding: 1.5rem;
    }
}

/* Locations List Styles */
.locations-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.location-item {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    align-items: start;
    border-bottom: 1px solid #eee;
    padding-bottom: 4rem;
}

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

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    padding-left: 1rem;
    border-left: 5px solid #f26a21;
    line-height: 1.2;
}

.location-map-preview {
    border-radius: 12px;
    overflow: hidden;
    background: #f3f4f6;
    height: 200px;
}

.location-map-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-details-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.detail-row .icon {
    font-size: 1.25rem;
    color: #f26a21;
    line-height: 1;
}

.detail-row .text strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #111827;
}

.detail-row .text p {
    margin: 0;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
}

.btn-directions-outline {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #f26a21;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
    margin-top: 0.5rem;
}

.btn-directions-outline:hover {
    border-color: #f26a21;
    background: #fff5f0;
}

.location-image {
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 900px) {
    .location-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-image {
        height: 300px;
        order: -1;
    }
}
