html,
body {
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
    max-width: 100%;
    overflow-x: hidden;
  }
}

/* STICKY HEADER - ONLY THE HEADER */
.header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9999 !important;
  background: white;
  border-bottom: 1px solid #e5e7eb;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.logo {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  flex-shrink: 0;
}

.company-info {
  min-width: 0;
  overflow: hidden;
}

.company-info h1 {
  font-size: 16px;
  font-weight: bold;
  color: #111827;
  white-space: nowrap;
  line-height: 1.2;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.company-info p {
  font-size: 12px;
  color: #6b7280;
  white-space: nowrap;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.desktop-nav a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  font-size: 18px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 10px 20px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.desktop-nav a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d1d3d4, #b8babb);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

.desktop-nav a:hover {
  color: #d1d3d4;
  background: rgba(209, 211, 212, 0.05);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px rgba(209, 211, 212, 0.15);
}

.desktop-nav a:hover::before {
  width: 80%;
}

.desktop-nav a:active {
  transform: translateY(-1px) scale(1.02);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.mobile-menu-btn:hover {
  background: rgba(209, 211, 212, 0.1);
}

.hamburger-line {
  width: 24px;
  height: 3px;
  background: #374151;
  margin: 2px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: #d1d3d4;
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
  background: #d1d3d4;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .header {
    position: fixed !important;
    top: 0 !important;
  }

  .header-content {
    padding: 0 16px;
    height: 70px;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .desktop-nav {
    display: none;
  }

  .logo {
    height: 40px;
  }

  .company-info h1 {
    font-size: 14px;
  }

  .company-info p {
    font-size: 10px;
  }
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: white;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-nav-overlay.active .mobile-nav-content {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #e5e7eb;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.mobile-nav-close {
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  font-size: 24px;
  font-weight: bold;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-nav-close:hover {
  background: rgba(239, 68, 68, 0.2);
  transform: scale(1.1);
}

.mobile-nav {
  padding: 20px 0;
}

.mobile-nav-link {
  display: block;
  padding: 16px 24px;
  color: #374151;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #f3f4f6;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #d1d3d4;
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: bottom;
}

.mobile-nav-link:hover {
  background: rgba(209, 211, 212, 0.05);
  color: #d1d3d4;
  padding-left: 32px;
}

.mobile-nav-link:hover::before {
  transform: scaleY(1);
}

.mobile-nav-cta {
  padding: 24px;
  border-top: 1px solid #e5e7eb;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.mobile-cta-btn {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #d1d3d4 0%, #b8babb 100%);
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(209, 211, 212, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.mobile-cta-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.6s;
}

.mobile-cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(209, 211, 212, 0.4);
}

.mobile-cta-btn:hover::before {
  left: 100%;
}

.mobile-cta-btn:active {
  transform: translateY(0) scale(1);
}

/* Call Banner - NOT STICKY, JUST REGULAR */
.call-banner {
  background: #314919;
  color: white;
  padding: 12px 0;
  position: relative;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: 80px;
}

@media (max-width: 768px) {
  .call-banner {
    margin-top: 70px;
  }
}

.call-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .call-banner-content {
    flex-direction: column;
    gap: 12px;
    padding: 0 16px;
    text-align: center;
  }
}

.call-text {
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .call-text {
    font-size: 14px;
  }
}

.call-number-yellow {
  font-size: 20px;
  font-weight: bold;
  color: black !important;
  text-decoration: none;
  padding: 12px 24px;
  background: #fbbf24 !important;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid #f59e0b;
}

@media (max-width: 768px) {
  .call-number-yellow {
    font-size: 18px;
    padding: 10px 20px;
  }
}

.call-number-yellow:hover {
  background: #f59e0b !important;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.call-availability {
  font-size: 14px;
  opacity: 0.9;
  font-weight: 500;
}

@media (max-width: 768px) {
  .call-availability {
    font-size: 12px;
  }
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: #314919;
  color: white;
}

.btn-primary:hover {
  background: #3d5c21;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-outline:hover {
  background: #2563eb;
  color: white;
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
}

@media (max-width: 768px) {
  .btn-large {
    width: 100%;
    justify-content: center;
  }
}

/* Enhanced Hero Call Button */
.hero-call-btn {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #314919 0%, #3d5c21 100%);
  box-shadow: 0 4px 15px rgba(49, 73, 25, 0.3);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-call-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.6s;
}

.hero-call-btn:hover {
  background: linear-gradient(135deg, #3d5c21 0%, #4a6e28 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(49, 73, 25, 0.4);
}

.hero-call-btn:active {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 15px rgba(49, 73, 25, 0.5);
  background: linear-gradient(135deg, #4a6e28 0%, #567f2f 100%);
}

.hero-call-btn {
  animation: subtle-pulse 3s ease-in-out infinite;
}

@keyframes subtle-pulse {
  0%,
  100% {
    box-shadow: 0 4px 15px rgba(49, 73, 25, 0.3);
  }
  50% {
    box-shadow: 0 4px 20px rgba(49, 73, 25, 0.4);
  }
}

.hero-call-btn:hover {
  animation: none;
}

/* Full Width Hero Badge Banner */
.badge-hero {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  background: linear-gradient(135deg, #bdbdbd 0%, #cacaca 100%);
  color: #000000;
  padding: 12px 16px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(189, 189, 189, 0.3);
  border-bottom: 3px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  overflow: hidden;
  z-index: 5;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .badge-hero {
    font-size: 11px;
    padding: 8px 12px;
    letter-spacing: 0.5px;
    white-space: normal;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

.badge-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.8s;
  animation: shimmer 1.5s ease-in-out infinite;
}

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

/* Hero Section - NO EXTRA TOP PADDING NEEDED */
.hero {
  padding: 140px 0 120px;
  background: linear-gradient(135deg, #dbeafe 0%, #f3f4f6 100%);
  position: relative;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.badge {
  display: inline-block;
  background: #dbeafe;
  color: #1d4ed8;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-logo {
  text-align: left;
  margin-bottom: 24px;
}

.hero-logo-img {
  height: 150px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

@media (max-width: 768px) {
  .hero-logo-img {
    height: 100px;
  }
}

.hero-title {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #111827;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 28px;
  }
}

.text-blue {
  color: #000000; /* Changed from #314919 (dark green) to black for better visibility */
}

.hero-description {
  font-size: 20px;
  color: #6b7280;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .hero-description {
    font-size: 16px;
  }
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.9);
  padding: 24px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .hero-features {
    grid-template-columns: 1fr;
    font-size: 14px;
    padding: 20px 24px;
    gap: 12px;
  }
}

.feature {
  color: #314919; /* Changed from #d1d3d4 (light gray) to #314919 (dark green) */
  font-weight: 600;
  font-size: 15px;
}

@media (max-width: 768px) {
  .feature {
    white-space: normal;
    font-size: 14px;
    word-wrap: break-word;
  }
}

/* Hero Carousel */
.hero-carousel {
  position: relative;
}

.experience-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: white;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 768px) {
  .experience-badge {
    top: 8px;
    right: 8px;
    padding: 12px;
    scale: 0.9;
  }
}

.badge-icon {
  width: 40px;
  height: 40px;
  background: #314919; /* Changed from #e8e9ea to dark green */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white; /* Changed from #d1d3d4 to white for better contrast */
  font-weight: bold;
}

.badge-title {
  font-weight: bold;
  font-size: 14px;
}

.badge-subtitle {
  font-size: 12px;
  color: #6b7280;
}

.carousel-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  background: white;
}

.carousel-slides {
  position: relative;
  height: 500px;
}

@media (max-width: 768px) {
  .carousel-slides {
    height: 300px;
  }
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

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

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  color: white;
  padding: 24px;
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .slide-caption {
    padding: 16px;
    font-size: 14px;
  }
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(49, 73, 25, 0.9); /* Changed from white to dark green */
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s;
}

.carousel-container:hover .carousel-btn {
  opacity: 1;
}

.carousel-btn:hover {
  background: rgba(61, 92, 33, 0.9); /* Changed hover state to darker green */
  transform: translateY(-50%) scale(1.1); /* Added scale effect on hover */
}

.prev {
  left: 16px;
}

.next {
  right: 16px;
}

.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(209, 211, 212, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: #d1d3d4;
  transform: scale(1.2);
}

/* Equipment Showcase Carousel */
.equipment-showcase {
  width: 100%;
  max-width: 600px;
}

.equipment-carousel-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  background: white;
}

.equipment-carousel-slides {
  position: relative;
  height: 500px;
}

@media (max-width: 768px) {
  .equipment-carousel-slides {
    height: 300px;
  }
}

.equipment-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.equipment-slide.active {
  opacity: 1;
}

.equipment-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.equipment-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(49, 73, 25, 0.9);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s;
  z-index: 10;
}

.equipment-carousel-container:hover .equipment-carousel-btn {
  opacity: 1;
}

.equipment-carousel-btn:hover {
  background: rgba(61, 92, 33, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.equipment-carousel-btn.prev {
  left: 16px;
}

.equipment-carousel-btn.next {
  right: 16px;
}

.equipment-carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.equipment-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(49, 73, 25, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.equipment-dot.active {
  background: #314919;
  transform: scale(1.2);
}

/* Services Section */
.services {
  padding: 80px 0 120px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-block;
  border: 1px solid #d1d5db;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1.1;
  color: #111827;
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 32px;
  }
}

.section-header p {
  font-size: 20px;
  color: #6b7280;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section-header p {
    font-size: 16px;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) and (min-width: 769px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.service-card {
  position: relative;
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.6s cubic-bezier(0.25, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
}

.service-card[data-bg="images/service-equipment-sales.jpg"]::before {
  background-image: url("images/service-equipment-sales.jpg");
}

.service-card[data-bg="images/service-delivery-installation.jpg"]::before {
  background-image: url("images/service-delivery-installation.jpg");
}

.service-card[data-bg="images/service-repair-maintenance.jpg"]::before {
  background-image: url("images/service-repair-maintenance.jpg");
}

.service-card[data-bg="images/service-emergency.jpg"]::before {
  background-image: url("images/service-emergency.jpg");
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  transition: opacity 0.8s cubic-bezier(0.25, 0, 0.2, 1);
  z-index: 1;
}

.service-card:hover::before {
  opacity: 0.5;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.8) 100%);
  transition: all 0.8s cubic-bezier(0.25, 0, 0.2, 1);
  z-index: 2;
}

.service-card:hover::after {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.7) 100%);
}

.service-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-card > * {
  position: relative;
  z-index: 10;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  transition: all 0.6s cubic-bezier(0.25, 0, 0.2, 1);
}

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

.service-icon.blue {
  background: #dbeafe;
}

.service-icon.green {
  background: #e8e9ea;
}

.service-icon.orange {
  background: #fed7aa;
}

.service-icon.red {
  background: #fecaca;
}

.service-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
  transition: all 0.6s cubic-bezier(0.25, 0, 0.2, 1);
}

.service-card:hover h3 {
  color: #b8babb;
  transform: translateY(-1px);
}

.service-card p {
  color: #6b7280;
  line-height: 1.6;
  transition: all 0.6s cubic-bezier(0.25, 0, 0.2, 1);
}

.service-card:hover p {
  color: #374151;
  transform: translateY(-1px);
}

/* Service Preview Area */
.service-preview {
  height: 0;
  min-height: 0;
  background: #f8fafc;
  border-radius: 12px;
  padding: 0 24px;
  margin-top: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.5s cubic-bezier(0.25, 0, 0.2, 1);
  border-left: 4px solid transparent;
  overflow: hidden;
}

.service-preview.active {
  height: auto;
  min-height: 120px;
  padding: 24px;
  margin-top: 32px;
  opacity: 1;
  transform: translateY(0);
}

.service-preview.equipment {
  border-left-color: #2563eb;
  background: linear-gradient(135deg, #dbeafe 0%, #f8fafc 100%);
}

.service-preview.delivery {
  border-left-color: #d1d3d4;
  background: linear-gradient(135deg, #e8e9ea 0%, #f8fafc 100%);
}

.service-preview.repair {
  border-left-color: #ea580c;
  background: linear-gradient(135deg, #fed7aa 0%, #f8fafc 100%);
}

.service-preview.emergency {
  border-left-color: #dc2626;
  background: linear-gradient(135deg, #fecaca 0%, #f8fafc 100%);
}

.service-preview h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #111827;
}

.service-preview p {
  font-size: 18px;
  color: #4b5563;
  line-height: 1.6;
}

.service-preview-placeholder {
  text-align: center;
  color: #9ca3af;
  font-style: italic;
  padding: 40px 0;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0 120px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  border-left: 4px solid #314919;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.quote-icon {
  font-size: 72px;
  color: #314919;
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-rating {
  font-size: 24px;
  color: #fbbf24;
  letter-spacing: 4px;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 32px 24px;
  }

  .quote-icon {
    font-size: 56px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .testimonial-rating {
    font-size: 20px;
  }
}

/* Industries Section */
.industries {
  padding: 80px 0 120px;
  background: #f9fafb;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

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

.industry-card {
  position: relative;
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 16px;
}

.industry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.industry-card:hover::before {
  opacity: 0.5;
}

.industry-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
  transition: all 0.5s ease;
  z-index: 2;
}

.industry-card:hover::after {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.6) 100%);
}

.industry-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.industry-card > * {
  position: relative;
  z-index: 10;
}

.industry-icon {
  width: 48px;
  height: 48px;
  background: #dbeafe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: transform 0.3s ease;
}

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

.industry-card span {
  flex: 1;
  font-weight: 600;
  color: #111827;
  transition: color 0.3s ease;
}

.industry-card:hover span {
  color: #2563eb;
}

.arrow {
  font-size: 20px;
  color: #2563eb;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.3s ease;
}

.industry-card:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Footer */
.footer {
  background: #314919;
  color: white;
  padding: 64px 0 32px;
}

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

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-section h3 {
  font-size: 18px;
  font-weight: bold;
  color: #d1d3d4;
  margin: 0;
}

.footer-section .company-tagline {
  font-size: 14px;
  color: #d1d3d4;
  margin: 0;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #d1d3d4;
}

.footer-section p {
  color: #d1d3d4;
  line-height: 1.6;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #d1d3d4;
}

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

.footer-section ul li {
  margin-bottom: 8px;
}

.emergency-badge {
  background: #d1d3d4;
  color: #111827;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  margin-top: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(209, 211, 212, 0.3);
  text-decoration: none;
}

.emergency-badge::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;
}

.emergency-badge:hover {
  background: #b8babb;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(209, 211, 212, 0.4);
}

.emergency-badge:active {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 15px rgba(209, 211, 212, 0.5);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid #d1d3d4;
  color: #d1d3d4;
}

/* About Section */
.about {
  padding: 80px 0 120px;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 968px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.about-text {
  max-width: 600px;
}

.section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 24px;
  line-height: 1.2;
  color: #111827;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
}

.about-description {
  margin-bottom: 32px;
}

.about-description p {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #111827;
}

.feature-content p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
