.equipment-repair-page {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.equipment-repair-page.visible {
  opacity: 1;
}

.main-content-gradient {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding-top: 2rem;
}

.services-section {
  padding: clamp(3rem, 6vw, 4rem) 1.5rem;
  background: #fff;
}

.services-section .container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.page-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.page-intro h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1rem;
}

.page-intro p {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

.intro-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.service-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-icon {
  font-size: 2rem;
}

.service-header h3 {
  font-size: 1.5rem;
  color: #0f172a;
  margin: 0;
}

.service-image {
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: auto;
  display: block;
}

.service-description {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-details h4 {
  font-size: 1.1rem;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.service-details ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.service-details li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #334155;
}

.service-details li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0f766e;
  font-weight: 700;
}

.service-cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #14b8a6;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.service-cta:hover {
  background: #0d9488;
}

.why-choose-section {
  padding: clamp(3rem, 6vw, 4rem) 1.5rem;
  background: #f8fafc;
}

.why-choose-section .container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.why-choose-section h2 {
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 3rem;
}

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

.benefit-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.3rem;
  color: #0f172a;
  margin-bottom: 1rem;
}

.benefit-card p {
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.issues-section {
  padding: clamp(3rem, 6vw, 4rem) 1.5rem;
  background: #fff;
}

.issues-section .container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.issues-section h2 {
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 3rem;
}

.issues-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.issues-text p {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.issues-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.issues-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #334155;
  font-size: 1rem;
}

.issues-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #14b8a6;
  font-weight: 700;
  font-size: 1.5rem;
}

.issues-cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #14b8a6;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.issues-cta:hover {
  background: #0d9488;
}

.issues-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.process-section {
  padding: clamp(3rem, 6vw, 4rem) 1.5rem;
  background: #f8fafc;
}

.process-section .container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.process-section h2 {
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1rem;
}

.process-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.process-step {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #14b8a6;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.process-step h3 {
  font-size: 1.3rem;
  color: #0f172a;
  margin-bottom: 1rem;
}

.process-step p {
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

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

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background: #0d9488;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.btn-secondary {
  background: #3b82f6;
  color: white;
}

.btn-secondary:hover {
  background: #2563eb;
}

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

.btn-outline:hover {
  background: #14b8a6;
  color: white;
}

.maintenance-section {
  padding: clamp(3rem, 6vw, 4rem) 1.5rem;
  background: #fff;
}

.maintenance-section .container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.maintenance-section h2 {
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1rem;
}

.maintenance-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.plan-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.plan-card.featured {
  border-color: #14b8a6;
  border-width: 2px;
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 2rem;
  background: #dc2626;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.plan-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.plan-header h3 {
  font-size: 1.5rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.plan-price {
  font-size: 1.3rem;
  color: #14b8a6;
  font-weight: 700;
}

.plan-description {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.plan-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #334155;
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0f766e;
  font-weight: 700;
}

.plan-cta {
  display: block;
  text-align: center;
  padding: 0.75rem 1.5rem;
  background: #14b8a6;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.plan-cta:hover {
  background: #0d9488;
}

.emergency-section {
  padding: clamp(3rem, 6vw, 4rem) 1.5rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #f8fafc;
}

.emergency-section .container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.emergency-section h2 {
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: #f8fafc;
  margin-bottom: 3rem;
}

.emergency-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.emergency-text h3 {
  font-size: 1.8rem;
  color: #f8fafc;
  margin-bottom: 1rem;
}

.emergency-text p {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.emergency-features {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.emergency-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #cbd5e1;
}

.feature-icon {
  font-size: 1.5rem;
}

.emergency-cta {
  display: inline-block;
  padding: 1rem 2rem;
  background: #dc2626;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background 0.3s ease;
}

.emergency-cta:hover {
  background: #b91c1c;
}

.emergency-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.contact-cta-section {
  padding: clamp(3rem, 6vw, 4rem) 1.5rem;
  background: #f8fafc;
  text-align: center;
}

.contact-cta-section .container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.contact-cta-section h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: #0f172a;
  margin-bottom: 1rem;
}

.contact-cta-section p {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .issues-content,
  .emergency-content {
    grid-template-columns: 1fr;
  }
  
  .intro-images {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .maintenance-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .intro-images {
    grid-template-columns: 1fr;
  }
  
  .service-card,
  .benefit-card,
  .process-step,
  .plan-card {
    padding: 1.5rem;
  }
}

