/* ===== FEATURE CARDS ===== */
.eco-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--eco-space-xl);
  margin-top: var(--eco-space-2xl);
}

.eco-feature-card {
  position: relative;
  border-radius: var(--eco-radius-xl);
  overflow: hidden;
  background: var(--eco-white);
  box-shadow: var(--eco-shadow-md);
  transition: var(--eco-transition-normal);
  height: 300px;
}

.eco-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--eco-shadow-xl);
}

.eco-feature-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.eco-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--eco-transition-slow);
}

.eco-feature-card:hover .eco-card-img {
  transform: scale(1.1);
}

.eco-feature-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--eco-white);
  padding: var(--eco-space-xl);
  transform: translateY(50%);
  transition: var(--eco-transition-normal);
}

.eco-feature-card:hover .eco-feature-overlay {
  transform: translateY(0);
}

.eco-feature-title {
  font-family: var(--eco-font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--eco-space-sm);
}

.eco-feature-text {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.5;
}

/* ===== SOLUTIONS GRID ===== */
.eco-solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--eco-space-xl);
  margin-top: var(--eco-space-2xl);
}

.eco-solution-item {
  background: var(--eco-white);
  border-radius: var(--eco-radius-xl);
  overflow: hidden;
  box-shadow: var(--eco-shadow-md);
  transition: var(--eco-transition-normal);
}

.eco-solution-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--eco-shadow-xl);
}

.eco-solution-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.eco-solution-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--eco-transition-slow);
}

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

.eco-solution-content {
  padding: var(--eco-space-xl);
}

.eco-solution-title {
  font-family: var(--eco-font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--eco-gray-900);
  margin-bottom: var(--eco-space-md);
  line-height: 1.3;
}

.eco-solution-text {
  color: var(--eco-gray-600);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ===== STATISTICS SECTION ===== */
.eco-stats-section {
  background: linear-gradient(135deg, var(--eco-primary) 0%, var(--eco-primary-dark) 100%);
  color: var(--eco-white);
  position: relative;
  overflow: hidden;
}

.eco-stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="60" height="60" fill="url(%23dots)"/></svg>');
  opacity: 0.4;
}

.eco-stats-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--eco-space-xl);
  text-align: center;
}

.eco-stat-item {
  padding: var(--eco-space-xl);
}

.eco-stat-number {
  display: inline-block;
  font-family: var(--eco-font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.eco-stat-symbol {
  font-family: var(--eco-font-heading);
  font-size: 2rem;
  font-weight: 600;
  margin-left: var(--eco-space-xs);
}

.eco-stat-label {
  margin-top: var(--eco-space-md);
  font-size: 1.125rem;
  font-weight: 500;
  opacity: 0.9;
}

/* ===== FOOTER ===== */
.eco-footer {
  background-color: var(--eco-gray-900);
  color: var(--eco-white);
  padding: var(--eco-space-3xl) 0 var(--eco-space-xl);
}

.eco-footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--eco-space-3xl);
  margin-bottom: var(--eco-space-2xl);
}

.eco-footer-brand {
  max-width: 400px;
}

.eco-footer-title {
  font-family: var(--eco-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--eco-accent);
  margin-bottom: var(--eco-space-md);
}

.eco-footer-description {
  color: var(--eco-gray-300);
  line-height: 1.7;
  font-size: 0.95rem;
}

.eco-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--eco-space-2xl);
}

.eco-footer-column {
  min-width: 0;
}

.eco-footer-heading {
  font-family: var(--eco-font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--eco-space-lg);
  color: var(--eco-white);
}

.eco-footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.eco-footer-list li {
  margin-bottom: var(--eco-space-sm);
}

.eco-footer-link {
  color: var(--eco-gray-300);
  text-decoration: none;
  transition: var(--eco-transition-fast);
  font-size: 0.9rem;
}

.eco-footer-link:hover {
  color: var(--eco-accent);
}

.eco-footer-bottom {
  border-top: 1px solid var(--eco-gray-700);
  padding-top: var(--eco-space-xl);
  text-align: center;
}

.eco-copyright {
  color: var(--eco-gray-400);
  font-size: 0.875rem;
}

/* ===== ANIMATIONS ===== */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animation Classes */
.eco-animate-slide-up {
  animation: slideUp 0.8s ease-out forwards;
}

.eco-animate-slide-right {
  animation: slideRight 0.8s ease-out forwards;
}

.eco-animate-slide-left {
  animation: slideLeft 0.8s ease-out forwards;
}

.eco-animate-fade-in {
  animation: fadeIn 1s ease-out 0.3s forwards;
  opacity: 0;
}

.eco-animate-scale {
  animation: scaleIn 0.6s ease-out forwards;
}

.eco-animate-zoom {
  animation: zoomIn 0.6s ease-out forwards;
}

/* Intersection Observer Animations */
.eco-animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.eco-animate-on-scroll.eco-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN FOR COMPONENTS ===== */
@media (max-width: 768px) {
  .eco-features-grid {
    grid-template-columns: 1fr;
    gap: var(--eco-space-lg);
  }

  .eco-solutions-grid {
    grid-template-columns: 1fr;
    gap: var(--eco-space-lg);
  }

  .eco-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--eco-space-lg);
  }

  .eco-footer-content {
    grid-template-columns: 1fr;
    gap: var(--eco-space-2xl);
  }

  .eco-footer-links {
    grid-template-columns: 1fr;
    gap: var(--eco-space-xl);
  }

  .eco-stat-number {
    font-size: 2.5rem;
  }

  .eco-stat-symbol {
    font-size: 1.75rem;
  }
}

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

  .eco-feature-card {
    height: 250px;
  }

  .eco-solution-image {
    height: 180px;
  }

  .eco-stat-number {
    font-size: 2rem;
  }

  .eco-stat-symbol {
    font-size: 1.5rem;
  }
}

/* ===== UTILITY CLASSES ===== */
.eco-text-center {
  text-align: center;
}

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

.eco-text-right {
  text-align: right;
}

.eco-hidden {
  display: none;
}

.eco-visible {
  display: block;
}

.eco-opacity-0 {
  opacity: 0;
}

.eco-opacity-50 {
  opacity: 0.5;
}

.eco-opacity-100 {
  opacity: 1;
}

/* ===== LOADING STATES ===== */
.eco-loading {
  position: relative;
  overflow: hidden;
}

.eco-loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: shimmer 1.5s infinite;
}

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

/* ===== PAGE HEADER ===== */
.eco-page-header {
  padding: var(--eco-space-3xl) 0 var(--eco-space-2xl);
  background: linear-gradient(135deg, var(--eco-gray-50) 0%, var(--eco-white) 100%);
  margin-top: 70px;
}

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

.eco-page-title {
  font-family: var(--eco-font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--eco-gray-900);
  margin-bottom: var(--eco-space-lg);
  line-height: 1.2;
}

.eco-page-subtitle {
  font-size: 1.25rem;
  color: var(--eco-gray-600);
  line-height: 1.6;
}

/* ===== MISSION SECTION ===== */
.eco-mission-section {
  padding: var(--eco-space-3xl) 0;
}

.eco-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--eco-space-3xl);
  align-items: center;
}

.eco-section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--eco-primary) 0%, var(--eco-accent) 100%);
  color: var(--eco-white);
  padding: var(--eco-space-sm) var(--eco-space-lg);
  border-radius: var(--eco-radius-xl);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--eco-space-lg);
}

.eco-mission-title {
  font-family: var(--eco-font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--eco-gray-900);
  margin-bottom: var(--eco-space-xl);
  line-height: 1.2;
}

.eco-mission-text {
  color: var(--eco-gray-600);
  line-height: 1.7;
  margin-bottom: var(--eco-space-lg);
  font-size: 1.125rem;
}

.eco-mission-text:last-child {
  margin-bottom: 0;
}

.eco-rounded-img {
  width: 100%;
  height: auto;
  border-radius: var(--eco-radius-xl);
  box-shadow: var(--eco-shadow-lg);
}

/* ===== VALUES SECTION ===== */
.eco-values-section {
  padding: var(--eco-space-3xl) 0;
}

.eco-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--eco-space-xl);
  margin-top: var(--eco-space-2xl);
}

.eco-value-card {
  background: var(--eco-white);
  padding: var(--eco-space-2xl);
  border-radius: var(--eco-radius-xl);
  text-align: center;
  box-shadow: var(--eco-shadow-md);
  transition: var(--eco-transition-normal);
  border: 1px solid var(--eco-gray-200);
}

.eco-value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--eco-shadow-xl);
  border-color: var(--eco-primary);
}

.eco-value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--eco-primary) 0%, var(--eco-accent) 100%);
  color: var(--eco-white);
  border-radius: 50%;
  margin-bottom: var(--eco-space-lg);
  box-shadow: var(--eco-shadow-md);
}

.eco-value-title {
  font-family: var(--eco-font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--eco-gray-900);
  margin-bottom: var(--eco-space-md);
}

.eco-value-text {
  color: var(--eco-gray-600);
  line-height: 1.6;
  font-size: 1rem;
}

/* ===== TEAM SECTION ===== */
.eco-team-section {
  padding: var(--eco-space-3xl) 0;
}

.eco-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--eco-space-2xl);
  margin-top: var(--eco-space-2xl);
}

.eco-team-member {
  background: var(--eco-white);
  border-radius: var(--eco-radius-xl);
  overflow: hidden;
  box-shadow: var(--eco-shadow-md);
  transition: var(--eco-transition-normal);
}

.eco-team-member:hover {
  transform: translateY(-6px);
  box-shadow: var(--eco-shadow-xl);
}

.eco-member-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.eco-member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--eco-transition-slow);
}

.eco-team-member:hover .eco-member-photo {
  transform: scale(1.05);
}

.eco-member-info {
  padding: var(--eco-space-xl);
}

.eco-member-name {
  font-family: var(--eco-font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--eco-gray-900);
  margin-bottom: var(--eco-space-sm);
}

.eco-member-role {
  color: var(--eco-primary);
  font-weight: 600;
  margin-bottom: var(--eco-space-md);
  font-size: 1rem;
}

.eco-member-bio {
  color: var(--eco-gray-600);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ===== CTA SECTION ===== */
.eco-cta-section {
  padding: var(--eco-space-3xl) 0;
  background: linear-gradient(135deg, var(--eco-primary) 0%, var(--eco-primary-dark) 100%);
  color: var(--eco-white);
  position: relative;
  overflow: hidden;
}

.eco-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
  opacity: 0.4;
}

.eco-cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.eco-cta-title {
  font-family: var(--eco-font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--eco-space-lg);
  line-height: 1.2;
}

.eco-cta-text {
  font-size: 1.25rem;
  margin-bottom: var(--eco-space-2xl);
  opacity: 0.9;
  line-height: 1.6;
}

.eco-cta-actions {
  display: flex;
  gap: var(--eco-space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.eco-cta-section .eco-btn-secondary {
  background-color: transparent;
  color: var(--eco-white);
  border-color: var(--eco-white);
}

.eco-cta-section .eco-btn-secondary:hover {
  background-color: var(--eco-white);
  color: var(--eco-primary);
}

/* ===== RESPONSIVE DESIGN FOR NEW COMPONENTS ===== */
@media (max-width: 768px) {
  .eco-page-title {
    font-size: 2.5rem;
  }

  .eco-mission-grid {
    grid-template-columns: 1fr;
    gap: var(--eco-space-2xl);
  }

  .eco-mission-title {
    font-size: 2rem;
  }

  .eco-values-grid {
    grid-template-columns: 1fr;
    gap: var(--eco-space-lg);
  }

  .eco-team-grid {
    grid-template-columns: 1fr;
    gap: var(--eco-space-lg);
  }

  .eco-cta-title {
    font-size: 2rem;
  }

  .eco-cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .eco-page-title {
    font-size: 2rem;
  }

  .eco-mission-title {
    font-size: 1.75rem;
  }

  .eco-cta-title {
    font-size: 1.75rem;
  }

  .eco-value-card {
    padding: var(--eco-space-lg);
  }

  .eco-member-info {
    padding: var(--eco-space-lg);
  }
}

/* ===== SERVICES PAGE STYLES ===== */

/* Services Overview */
.eco-services-overview {
  padding: var(--eco-space-3xl) 0;
}

.eco-services-intro {
  text-align: center;
  margin-bottom: var(--eco-space-3xl);
}

.eco-services-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--eco-space-xl);
  margin-top: var(--eco-space-2xl);
}

.eco-stat-card {
  background: var(--eco-white);
  padding: var(--eco-space-xl);
  border-radius: var(--eco-radius-xl);
  text-align: center;
  box-shadow: var(--eco-shadow-md);
  border: 2px solid var(--eco-gray-200);
  transition: var(--eco-transition-normal);
}

.eco-stat-card:hover {
  border-color: var(--eco-primary);
  transform: translateY(-4px);
  box-shadow: var(--eco-shadow-lg);
}

.eco-stat-icon {
  font-size: 2.5rem;
  margin-bottom: var(--eco-space-md);
}

.eco-stat-value {
  font-family: var(--eco-font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--eco-primary);
  margin-bottom: var(--eco-space-sm);
}

.eco-stat-label {
  color: var(--eco-gray-600);
  font-weight: 500;
  font-size: 1rem;
}

/* Main Services Grid */
.eco-main-services {
  padding: var(--eco-space-3xl) 0;
}

.eco-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--eco-space-2xl);
}

.eco-service-card {
  background: var(--eco-white);
  border-radius: var(--eco-radius-xl);
  padding: var(--eco-space-2xl);
  box-shadow: var(--eco-shadow-md);
  border: 2px solid var(--eco-gray-200);
  transition: var(--eco-transition-normal);
  position: relative;
  overflow: hidden;
}

.eco-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--eco-shadow-xl);
  border-color: var(--eco-primary);
}

.eco-service-featured {
  border-color: var(--eco-primary);
  position: relative;
}

.eco-service-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--eco-primary) 0%, var(--eco-accent) 100%);
}

.eco-service-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--eco-space-lg);
}

.eco-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--eco-primary) 0%, var(--eco-accent) 100%);
  color: var(--eco-white);
  border-radius: var(--eco-radius-lg);
  box-shadow: var(--eco-shadow-md);
}

.eco-service-badge {
  background: linear-gradient(135deg, var(--eco-primary) 0%, var(--eco-accent) 100%);
  color: var(--eco-white);
  padding: var(--eco-space-xs) var(--eco-space-md);
  border-radius: var(--eco-radius-xl);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.eco-service-title {
  font-family: var(--eco-font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--eco-gray-900);
  margin-bottom: var(--eco-space-md);
  line-height: 1.3;
}

.eco-service-description {
  color: var(--eco-gray-600);
  line-height: 1.6;
  margin-bottom: var(--eco-space-lg);
  font-size: 1rem;
}

.eco-service-features {
  list-style: none;
  margin: 0 0 var(--eco-space-lg) 0;
  padding: 0;
}

.eco-service-features li {
  color: var(--eco-gray-700);
  margin-bottom: var(--eco-space-sm);
  font-size: 0.95rem;
  line-height: 1.5;
}

.eco-service-pricing {
  display: flex;
  align-items: baseline;
  gap: var(--eco-space-xs);
  margin-bottom: var(--eco-space-xl);
}

.eco-price {
  font-family: var(--eco-font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--eco-primary);
}

.eco-price-period {
  color: var(--eco-gray-500);
  font-size: 1rem;
}

/* Process Section */
.eco-process-section {
  padding: var(--eco-space-3xl) 0;
}

.eco-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--eco-space-2xl);
  margin-top: var(--eco-space-2xl);
}

.eco-process-step {
  text-align: center;
  position: relative;
}

.eco-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--eco-primary) 0%, var(--eco-accent) 100%);
  color: var(--eco-white);
  border-radius: 50%;
  font-family: var(--eco-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--eco-space-lg);
  box-shadow: var(--eco-shadow-lg);
}

.eco-step-title {
  font-family: var(--eco-font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--eco-gray-900);
  margin-bottom: var(--eco-space-md);
}

.eco-step-description {
  color: var(--eco-gray-600);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Industries Section */
.eco-industries-section {
  padding: var(--eco-space-3xl) 0;
}

.eco-industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--eco-space-xl);
  margin-top: var(--eco-space-2xl);
}

.eco-industry-card {
  background: var(--eco-white);
  padding: var(--eco-space-xl);
  border-radius: var(--eco-radius-xl);
  text-align: center;
  box-shadow: var(--eco-shadow-md);
  border: 2px solid var(--eco-gray-200);
  transition: var(--eco-transition-normal);
}

.eco-industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--eco-shadow-xl);
  border-color: var(--eco-primary);
}

.eco-industry-icon {
  font-size: 3rem;
  margin-bottom: var(--eco-space-lg);
}

.eco-industry-title {
  font-family: var(--eco-font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--eco-gray-900);
  margin-bottom: var(--eco-space-md);
}

.eco-industry-text {
  color: var(--eco-gray-600);
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
  .eco-services-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--eco-space-lg);
  }

  .eco-services-grid {
    grid-template-columns: 1fr;
    gap: var(--eco-space-lg);
  }

  .eco-process-steps {
    grid-template-columns: 1fr;
    gap: var(--eco-space-lg);
  }

  .eco-industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--eco-space-lg);
  }

  .eco-stat-value {
    font-size: 2rem;
  }

  .eco-price {
    font-size: 1.75rem;
  }
}

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

  .eco-industries-grid {
    grid-template-columns: 1fr;
  }

  .eco-service-card {
    padding: var(--eco-space-lg);
  }

  .eco-service-header {
    flex-direction: column;
    align-items: center;
    gap: var(--eco-space-md);
  }

  .eco-stat-value {
    font-size: 1.75rem;
  }

  .eco-stat-icon {
    font-size: 2rem;
  }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero */
.eco-contact-hero {
  padding: var(--eco-space-3xl) 0;
}

.eco-contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--eco-space-3xl);
  align-items: start;
}

/* Contact Form */
.eco-contact-form-wrapper {
  background: var(--eco-white);
  border-radius: var(--eco-radius-xl);
  padding: var(--eco-space-2xl);
  box-shadow: var(--eco-shadow-lg);
  border: 1px solid var(--eco-gray-200);
}

.eco-form-header {
  margin-bottom: var(--eco-space-2xl);
}

.eco-form-title {
  font-family: var(--eco-font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--eco-gray-900);
  margin-bottom: var(--eco-space-md);
}

.eco-form-description {
  color: var(--eco-gray-600);
  line-height: 1.6;
  font-size: 1rem;
}

.eco-contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--eco-space-lg);
}

.eco-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--eco-space-lg);
}

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

.eco-form-label {
  font-weight: 500;
  color: var(--eco-gray-700);
  margin-bottom: var(--eco-space-sm);
  font-size: 0.95rem;
}

.eco-form-input,
.eco-form-select,
.eco-form-textarea {
  padding: var(--eco-space-md);
  border: 2px solid var(--eco-gray-300);
  border-radius: var(--eco-radius-md);
  font-size: 1rem;
  transition: var(--eco-transition-fast);
  background-color: var(--eco-white);
}

.eco-form-input:focus,
.eco-form-select:focus,
.eco-form-textarea:focus {
  outline: none;
  border-color: var(--eco-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.eco-form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.eco-form-checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: var(--eco-space-sm);
}

.eco-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--eco-space-sm);
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.5;
}

.eco-checkbox {
  display: none;
}

.eco-checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--eco-gray-400);
  border-radius: var(--eco-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--eco-transition-fast);
  flex-shrink: 0;
  margin-top: 2px;
}

.eco-checkbox:checked + .eco-checkbox-custom {
  background-color: var(--eco-primary);
  border-color: var(--eco-primary);
}

.eco-checkbox:checked + .eco-checkbox-custom::after {
  content: '✓';
  color: var(--eco-white);
  font-size: 12px;
  font-weight: bold;
}

.eco-link {
  color: var(--eco-primary);
  text-decoration: none;
}

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

.eco-btn-full {
  width: 100%;
  justify-content: center;
}

/* Contact Info */
.eco-contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--eco-space-xl);
}

.eco-contact-card {
  background: var(--eco-white);
  border-radius: var(--eco-radius-xl);
  padding: var(--eco-space-xl);
  box-shadow: var(--eco-shadow-md);
  border: 1px solid var(--eco-gray-200);
}

.eco-contact-card-title {
  font-family: var(--eco-font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--eco-gray-900);
  margin-bottom: var(--eco-space-lg);
}

.eco-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--eco-space-md);
  margin-bottom: var(--eco-space-lg);
}

.eco-contact-item:last-child {
  margin-bottom: 0;
}

.eco-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--eco-primary) 0%, var(--eco-accent) 100%);
  color: var(--eco-white);
  border-radius: var(--eco-radius-lg);
  flex-shrink: 0;
}

.eco-contact-details {
  flex: 1;
}

.eco-contact-label {
  display: block;
  font-weight: 500;
  color: var(--eco-gray-500);
  font-size: 0.875rem;
  margin-bottom: var(--eco-space-xs);
}

.eco-contact-value {
  color: var(--eco-gray-900);
  text-decoration: none;
  font-weight: 500;
  line-height: 1.5;
}

.eco-contact-value:hover {
  color: var(--eco-primary);
}

/* Business Hours */
.eco-business-hours {
  display: flex;
  flex-direction: column;
  gap: var(--eco-space-md);
}

.eco-hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--eco-space-sm) 0;
  border-bottom: 1px solid var(--eco-gray-200);
}

.eco-hours-item:last-child {
  border-bottom: none;
}

.eco-hours-day {
  font-weight: 500;
  color: var(--eco-gray-700);
}

.eco-hours-time {
  color: var(--eco-gray-600);
  font-size: 0.95rem;
}

/* Emergency Support */
.eco-emergency-text {
  color: var(--eco-gray-600);
  margin-bottom: var(--eco-space-md);
  line-height: 1.5;
}

.eco-emergency-phone {
  display: inline-block;
  background: linear-gradient(135deg, var(--eco-primary) 0%, var(--eco-accent) 100%);
  color: var(--eco-white);
  padding: var(--eco-space-md) var(--eco-space-lg);
  border-radius: var(--eco-radius-lg);
  text-decoration: none;
  font-weight: 600;
  transition: var(--eco-transition-normal);
}

.eco-emergency-phone:hover {
  transform: translateY(-2px);
  box-shadow: var(--eco-shadow-lg);
}

/* FAQ Section */
.eco-faq-section {
  padding: var(--eco-space-3xl) 0;
}

.eco-faq-grid {
  display: flex;
  flex-direction: column;
  gap: var(--eco-space-lg);
  margin-top: var(--eco-space-2xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.eco-faq-item {
  background: var(--eco-white);
  border-radius: var(--eco-radius-lg);
  box-shadow: var(--eco-shadow-md);
  border: 1px solid var(--eco-gray-200);
  overflow: hidden;
}

.eco-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--eco-space-xl);
  cursor: pointer;
  transition: var(--eco-transition-fast);
}

.eco-faq-question:hover {
  background-color: var(--eco-gray-50);
}

.eco-faq-question h3 {
  font-family: var(--eco-font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--eco-gray-900);
  margin: 0;
  flex: 1;
  line-height: 1.4;
}

.eco-faq-toggle {
  background: none;
  border: none;
  color: var(--eco-primary);
  cursor: pointer;
  padding: var(--eco-space-sm);
  border-radius: var(--eco-radius-md);
  transition: var(--eco-transition-fast);
  flex-shrink: 0;
}

.eco-faq-toggle:hover {
  background-color: var(--eco-gray-100);
}

.eco-faq-answer {
  padding: 0 var(--eco-space-xl) var(--eco-space-xl);
  color: var(--eco-gray-600);
  line-height: 1.6;
  display: none;
}

.eco-faq-item.eco-faq-open .eco-faq-answer {
  display: block;
}

.eco-faq-item.eco-faq-open .eco-faq-toggle svg {
  transform: rotate(180deg);
}

/* Map Section */
.eco-map-section {
  padding: var(--eco-space-2xl) 0;
  background-color: var(--eco-gray-50);
}

.eco-map-wrapper {
  border-radius: var(--eco-radius-xl);
  overflow: hidden;
  box-shadow: var(--eco-shadow-lg);
}

.eco-map-placeholder {
  height: 400px;
  background: linear-gradient(135deg, var(--eco-primary) 0%, var(--eco-accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eco-white);
  position: relative;
}

.eco-map-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="map-pattern" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23map-pattern)"/></svg>');
  opacity: 0.3;
}

.eco-map-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.eco-map-content h3 {
  font-family: var(--eco-font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--eco-space-md);
}

.eco-map-content p {
  font-size: 1.125rem;
  margin-bottom: var(--eco-space-xl);
  opacity: 0.9;
}

/* Contact Responsive Design */
@media (max-width: 1024px) {
  .eco-contact-grid {
    grid-template-columns: 1fr;
    gap: var(--eco-space-2xl);
  }

  .eco-contact-info {
    order: -1;
  }
}

@media (max-width: 768px) {
  .eco-form-row {
    grid-template-columns: 1fr;
    gap: var(--eco-space-md);
  }

  .eco-contact-form-wrapper {
    padding: var(--eco-space-lg);
  }

  .eco-contact-card {
    padding: var(--eco-space-lg);
  }

  .eco-form-title {
    font-size: 1.75rem;
  }

  .eco-contact-item {
    flex-direction: column;
    text-align: center;
    gap: var(--eco-space-sm);
  }

  .eco-hours-item {
    flex-direction: column;
    text-align: center;
    gap: var(--eco-space-xs);
  }
}

@media (max-width: 480px) {
  .eco-faq-question {
    padding: var(--eco-space-lg);
  }

  .eco-faq-answer {
    padding: 0 var(--eco-space-lg) var(--eco-space-lg);
  }

  .eco-faq-question h3 {
    font-size: 1rem;
  }

  .eco-map-content h3 {
    font-size: 1.5rem;
  }
}
