/* Everything Welding & Safety - Global Styles */
/* Clean, professional design for the welding industry */

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */

:root {
  --blue: #184677;
  --orange: #F25C05;
  --charcoal: #1A1A1A;
  --gunmetal: #4B5563;
  --light-gray: #F2F2F2;
  --white: #FFFFFF;
  --utility-bar-bg: #F9FAFB;
  --border-light: rgba(24, 70, 119, 0.1);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--blue);
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; margin-bottom: 2rem; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }
h5 { font-size: 1.125rem; font-weight: 600; }

p {
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

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

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

section {
  padding: 4rem 1rem;
}

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

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}

.btn-primary {
  background-color: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 2px 8px rgba(242, 92, 5, 0.2);
}

.btn-primary:hover {
  background-color: #D94E04;
  border-color: #D94E04;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(242, 92, 5, 0.3);
}

.btn-secondary {
  background-color: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 2px 8px rgba(24, 70, 119, 0.2);
}

.btn-secondary:hover {
  background-color: #0D3352;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(24, 70, 119, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

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

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* ============================================
   HEADER - UTILITY BAR
   ============================================ */

.utility-bar {
  background-color: var(--utility-bar-bg);
  border-bottom: 1px solid var(--border-light);
  padding: 0.75rem 0;
  font-size: 0.875rem;
}

.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.utility-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

.utility-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--blue);
  font-weight: 500;
}

.utility-phone:hover {
  color: var(--orange);
}

.utility-hours {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gunmetal);
  font-weight: 500;
}

.hours-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.hours-indicator.open {
  background-color: #10B981;
}

.hours-indicator.closed {
  background-color: #EF4444;
}

.utility-account {
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
  color: var(--gunmetal);
  font-weight: 400;
}

/* ============================================
   HEADER - MAIN NAVIGATION
   ============================================ */

.main-nav {
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  gap: 2rem;
}

.nav-logo {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: none;
  list-style: none;
  margin: 0;
  margin-left: auto;
  padding: 0;
  gap: 2rem;
  align-items: center;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  color: var(--charcoal);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: var(--orange);
}

.nav-menu a.active {
  color: var(--blue);
  font-weight: 600;
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--orange);
}

.nav-cta {
  display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--blue);
  transition: all 0.3s ease;
  border-radius: 2px;
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  z-index: 99;
  padding: 8rem 2rem 2rem;
  overflow-y: auto;
}

.mobile-menu-overlay.active {
  display: block;
}

.mobile-menu-overlay ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-overlay li {
  border-bottom: 1px solid var(--border-light);
}

.mobile-menu-overlay a {
  display: block;
  padding: 1rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--charcoal);
}

.mobile-menu-overlay a.active {
  color: var(--blue);
  font-weight: 600;
}

.mobile-menu-ctas {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu-ctas .btn {
  color: var(--white);
}

/* ============================================
   HERO SECTIONS
   ============================================ */

.hero {
  position: relative;
  background: linear-gradient(135deg, #0a2540 0%, #184677 100%);
  color: var(--white);
  padding: 3.75rem 1rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(24, 70, 119, 0.35) 0%, rgba(24, 70, 119, 0.45) 100%);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  max-width: 800px;
}

.hero p {
  font-size: 1.125rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.95);
}

.hero-home {
  padding: 2.5rem 1rem;
}

.hero-home::before {
  background-image: url('https://everythingweldingandsafety.com/assets/EWS-Storefront%20Closeup.jpg');
}

/* Hero Grid Layout */
.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: stretch;
}

.hero-content {
  flex: 1;
}

/* Display Statement Styles */
.hero-display-statement {
  margin-bottom: 3rem;
}

.display-line-1,
.display-line-2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.1;
}

.display-line-1 {
  color: var(--white);
}

.display-line-2 {
  color: var(--orange);
}

/* Hero H1 - Reduced size for subordinate position */
.hero-home h1 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
  max-width: none;
}

/* Hero Supporting Text */
.hero-supporting-text {
  font-size: 1.125rem;
  line-height: 1.65;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.95);
  max-width: none;
}

/* Hero CTA Panel */
.hero-cta-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: rgba(255, 255, 255, 0.98);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero-cta-panel .btn {
  width: 100%;
  text-align: center;
  margin: 0;
}

/* Hero Video Background */
.hero-video {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: blur(6px) brightness(0.75);
}

/* Page Hero (simpler, smaller) */
.page-hero {
  padding: 0.28125rem 1rem;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.page-hero p {
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
  color: var(--white);
}

/* ============================================
   CARDS & GRIDS
   ============================================ */

.card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

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

.card h3 {
  color: var(--blue);
  margin-bottom: 1rem;
}

.card p {
  color: var(--gunmetal);
  margin-bottom: 0;
}

.card-icon {
  width: 80px;
  height: 80px;
  background-color: transparent;
  border: 3px solid var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--blue);
  position: relative;
}

.card-icon::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  opacity: 0.3;
}

.card-with-border-top {
  border-top: 4px solid var(--orange);
}

.card-with-border-left {
  border-left: 4px solid var(--orange);
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

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

.grid-4 {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

/* ============================================
   SPECIFIC SECTIONS
   ============================================ */

/* Features Section */
.features-section {
  background-color: #F7F7F7;
}

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

/* Inventory Section */
.section--inventory {
  background-color: #FFFFFF;
}

/* Products/Services Grid */
.products-grid,
.services-grid {
  margin-top: 3rem;
}

/* New Services Grid - WestAir Style */
.services-section {
  background-color: var(--white);
}

.services-grid-new {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-top: 0;
}

.service-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--orange);
}

.service-icon-container {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-container {
  transform: scale(1.1);
}

.service-icon-placeholder {
  width: 40px;
  height: 40px;
  background-color: var(--blue);
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.service-card:hover .service-icon-placeholder {
  background-color: var(--orange);
}

.service-card h3 {
  color: var(--blue);
  margin-bottom: 1rem;
  font-size: 1.375rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--orange);
}

.service-card p {
  color: var(--gunmetal);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1rem;
  flex-grow: 1;
}

.service-cta {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  position: relative;
  padding-bottom: 0.25rem;
}

.service-cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--blue);
  transition: background-color 0.3s ease;
}

.service-cta:hover {
  color: var(--orange);
}

.service-cta:hover::after {
  background-color: var(--orange);
}

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

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

  .service-card {
    padding: 3rem 2.5rem;
  }

  .service-icon-container {
    width: 90px;
    height: 90px;
    margin-bottom: 2rem;
  }

  .service-icon-placeholder {
    width: 45px;
    height: 45px;
  }

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

  .service-card p {
    font-size: 1.0625rem;
  }
}

/* Product Cards with Icons */
.products-grid .card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 1.5rem;
  padding: 1.5rem;
  min-height: 180px;
}

.products-grid .card img {
  width: auto;
  height: 100%;
  max-height: 120px;
  object-fit: contain;
  flex-shrink: 0;
  align-self: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.products-grid .card a:hover img {
  transform: scale(1.05);
  opacity: 0.8;
}

.products-grid .card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.products-grid .card h3 {
  margin-bottom: 0.75rem;
}

.products-grid .card h3 a {
  transition: color 0.2s ease;
}

.products-grid .card h3 a:hover {
  color: var(--orange) !important;
}

.products-grid .card p {
  margin-bottom: 0.75rem;
}

.products-grid .card p:last-child {
  margin-bottom: 0;
  margin-top: auto;
}

/* Gallery */
.gallery-section {
  background-color: var(--light-gray);
}

.gallery-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
  grid-template-columns: 1fr;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Testimonials */
.testimonials-section {
  background-color: var(--light-gray);
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
  grid-template-columns: 1fr;
}

.testimonial-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--orange);
}

.testimonial-card p {
  font-style: italic;
  color: var(--gunmetal);
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--blue);
  font-style: normal;
}

/* New Google-Style Testimonials Section */
.testimonials-section-new {
  background-color: var(--light-gray);
  padding: 3rem 1rem 2rem;
}

.testimonials-section-new h2 {
  color: var(--blue);
  margin-bottom: 0;
}

.testimonials-subheading {
  text-align: center;
  font-size: 0.95rem;
  color: var(--gunmetal);
  margin-bottom: 3rem;
}

.testimonials-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
  margin-top: 1.5rem;
}

.testimonials-marquee::before,
.testimonials-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.testimonials-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--light-gray), transparent);
}

.testimonials-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--light-gray), transparent);
}

.testimonial-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(24, 70, 119, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  padding: 0;
}

.testimonial-nav-arrow svg {
  width: 24px;
  height: 24px;
  color: var(--blue);
}

.testimonial-nav-arrow:hover {
  background-color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-50%) scale(1.05);
}

.testimonial-nav-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.testimonial-nav-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.testimonial-nav-left {
  left: 1rem;
}

.testimonial-nav-right {
  right: 1rem;
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  align-items: stretch;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.review-card {
  background-color: var(--white);
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  width: 400px;
  max-width: 90vw;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(24, 70, 119, 0.15);
  flex-shrink: 0;
}

.reviewer-fallback {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--blue);
  color: var(--white);
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(24, 70, 119, 0.15);
  flex-shrink: 0;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.reviewer-name {
  font-weight: 600;
  color: var(--blue);
  font-size: 1rem;
}

.review-time {
  font-size: 0.8125rem;
  color: #6B7280;
}

.review-stars {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 0.75rem;
}

.review-stars .star {
  color: #D97706;
  font-size: 1.125rem;
}

.review-text {
  color: var(--gunmetal);
  line-height: 1.65;
  font-size: 0.9375rem;
  margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-marquee {
    overflow-x: auto;
    padding-bottom: 1rem;
  }

  .testimonials-marquee::before,
  .testimonials-marquee::after {
    display: none;
  }

  .review-card {
    min-width: 100%;
  }

  .carousel-pagination {
    display: none;
  }
}

/* FAQ */
.faq-section {
  background-color: var(--light-gray);
}

.faq-list {
  max-width: 800px;
  margin: 2rem auto 0;
}

.faq-item {
  background-color: var(--white);
  margin-bottom: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background-color: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: var(--utility-bar-bg);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: var(--orange);
  font-weight: 400;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  color: var(--gunmetal);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Map Container */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  height: 405px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Store Details */
.store-details {
  background-color: var(--light-gray);
  padding: 2rem;
  border-radius: 12px;
  height: 405px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.store-details p {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.store-details strong {
  color: var(--blue);
  font-weight: 600;
}

/* CTA Strip */
.cta-strip {
  background-color: var(--utility-bar-bg);
  padding: 3rem 1rem;
  text-align: center;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.cta-strip h2 {
  margin-bottom: 1.5rem;
}

.cta-strip .btn-group {
  justify-content: center;
}

/* Community Section */
.community-section {
  padding: 4rem 1rem;
}

.community-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
  color: var(--gunmetal);
}

.staff-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  max-width: 600px;
  margin: 3rem auto 0;
}

.staff-highlight img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--orange);
}

.staff-text {
  text-align: center;
}

.staff-text p {
  color: var(--gunmetal);
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: 500;
}

/* Note/Alert */
.note {
  font-size: 0.875rem;
  color: var(--gunmetal);
  font-style: italic;
  margin-top: 0.5rem;
}

/* ============================================
   BRANDS SECTION
   ============================================ */

.brands-section {
  background-color: var(--white);
  padding: 1.75rem 1rem 2.5rem;
  overflow: hidden;
}

.brands-section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.brands-section .brands-subtext {
  text-align: center;
  font-size: 0.95rem;
  color: var(--gunmetal);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.brands-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
}

.brands-marquee::before,
.brands-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.brands-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.brands-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.brands-track {
  display: flex;
  gap: 2rem;
  align-items: center;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.brands-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  filter: grayscale(100%);
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .brands-marquee {
    overflow-x: auto;
    padding-bottom: 1rem;
  }

  .brands-marquee::before,
  .brands-marquee::after {
    display: none;
  }
}

@media (min-width: 768px) {
  .brands-section {
    padding: 2.5rem 1rem 3.75rem;
  }

  .brands-marquee {
    padding: 0.5rem 0;
  }

  .brands-logo {
    height: 150px;
  }
}

@media (max-width: 1024px) {
  .brands-marquee {
    touch-action: pan-y;
  }
}

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

footer {
  background: linear-gradient(135deg, #0a2540 0%, #184677 100%);
  color: var(--white);
  padding: 4rem 1rem 2rem;
}

.footer-content {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
  grid-template-columns: 1fr;
}

.footer-logo {
  height: 60px;
  margin-bottom: 1rem;
}

.footer-section h4 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-section p {
  margin-bottom: 0.5rem;
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-section a {
  color: var(--white);
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--orange);
}

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

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.lightbox-close:hover {
  transform: scale(1.2);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

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

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

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

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

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }

  section {
    padding: 5rem 2rem;
  }

  .hero {
    padding: 4.5rem 2rem;
  }

  .hero-home {
    padding: 2.25rem 2rem;
  }

  /* Hero Two-Column Layout for Desktop */
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }

  .display-line-1,
  .display-line-2 {
    font-size: 3.5rem;
  }

  .hero-home h1 {
    font-size: 2rem;
    max-width: none;
  }

  .hero-supporting-text {
    max-width: none;
  }

  .hero-cta-panel {
    padding: 2.5rem;
  }

  .hero-home::before {
    background-image: url('https://everythingweldingandsafety.com/assets/EWS-StoreFront.jpg');
  }

  .nav-menu {
    display: flex;
  }

  .nav-cta {
    display: block;
  }

  .mobile-menu-toggle {
    display: none;
  }

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

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }

  .staff-highlight {
    flex-direction: row;
    text-align: left;
  }

  .staff-text {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }

  h1 { font-size: 3.5rem; }

  /* Hero Layout for Large Screens */
  .hero-grid {
    grid-template-columns: 60fr 40fr;
    gap: 4rem;
    align-items: start;
  }

  .display-line-1,
  .display-line-2 {
    font-size: 4.5rem;
  }

  .hero-home h1 {
    font-size: 2.25rem;
    max-width: none;
  }

  .hero-supporting-text {
    max-width: none;
  }

  .hero-video {
    display: block;
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .review-card {
    width: 500px;
    padding: 2rem;
  }

  .testimonials-section-new .reviewer-avatar,
  .testimonials-section-new .reviewer-fallback {
    width: 56px;
    height: 56px;
  }

  .testimonials-section-new .reviewer-fallback {
    font-size: 1.125rem;
  }

  .testimonial-nav-arrow {
    width: 56px;
    height: 56px;
  }

  .testimonial-nav-arrow svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 768px) {
  .testimonial-nav-arrow {
    width: 40px;
    height: 40px;
  }

  .testimonial-nav-arrow svg {
    width: 20px;
    height: 20px;
  }

  .testimonial-nav-left {
    left: 0.5rem;
  }

  .testimonial-nav-right {
    right: 0.5rem;
  }
}

/* ============================================
   INDUSTRIES SECTION
   ============================================ */

.industries-section {
  background-color: var(--white);
}

.industries-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
  color: var(--gunmetal);
  line-height: 1.7;
}

.industries-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-top: 3rem;
}

.industry-tile {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.industry-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-color: var(--orange);
}

.industry-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(24, 70, 119, 0.05);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.industry-tile:hover .industry-icon {
  background-color: rgba(242, 92, 5, 0.1);
  transform: scale(1.1);
}

.industry-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--blue);
  transition: fill 0.3s ease;
}

.industry-tile:hover .industry-icon svg {
  fill: var(--orange);
}

.industry-tile h3 {
  color: var(--blue);
  margin-bottom: 1rem;
  font-size: 1.375rem;
  transition: color 0.3s ease;
}

.industry-tile:hover h3 {
  color: var(--orange);
}

.industry-tile p {
  color: var(--gunmetal);
  margin-bottom: 0;
  line-height: 1.65;
  font-size: 0.9375rem;
}

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

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

/* ============================================
   UTILITY CLASSES
   ============================================ */

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.text-white { color: var(--white); }
.text-blue { color: var(--blue); }
.text-orange { color: var(--orange); }
.text-gray { color: var(--gunmetal); }

.bg-light { background-color: var(--light-gray); }
.bg-white { background-color: var(--white); }
