/* 전기수리 전용 스타일 */

body { background: #f8fafc; }
.repair-main { max-width: 1000px; margin: 0 auto; padding: 0 16px; }

/* Hero Section */
.repair-hero {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #2563eb 100%);
  color: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  margin: 2rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .repair-hero {
    grid-template-columns: 1fr 1fr;
    padding: 4rem 3rem;
  }
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2rem 0;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-buttons a {
  flex: 1;
  min-width: 150px;
  text-align: center;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  background: white;
  color: #4f46e5;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.hero-image {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 640px) {
  .hero-image {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero-card h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.hero-card p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Services Section */
.services-section {
  margin: 2rem 0;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

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

.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.service-header {
  padding: 2rem;
  text-align: center;
}

.leakage .service-header {
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
}

.outage .service-header {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.socket .service-header {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.emergency .service-header {
  background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
}

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

.service-header h2 {
  margin: 0 0 0.5rem 0;
  font-size: 1.8rem;
  font-weight: 800;
  color: #111827;
}

.service-header p {
  margin: 0;
  color: #6b7280;
  font-size: 1.1rem;
}

.service-content {
  padding: 2rem;
}

.service-features h4,
.service-specs h4 {
  margin: 0 0 1rem 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #4f46e5;
}

.service-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.service-features li:last-child {
  border-bottom: none;
}

.feature-icon {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.spec-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  min-height: 200px;
  align-content: start;
}

@media (min-width: 640px) {
  .spec-grid {
    grid-template-columns: 1fr 1fr;
    min-height: 140px;
  }
}

.spec-item {
  background: #f8fafc;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.spec-item strong {
  display: block;
  color: #4f46e5;
  font-weight: 700;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.spec-item span {
  color: #6b7280;
  font-size: 0.85rem;
  white-space: nowrap;
}

/* Process Section */
.process-section {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  margin: 2rem 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #4f46e5;
  text-align: center;
  margin: 0 0 3rem 0;
}

.process-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

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

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

.process-step {
  text-align: center;
  padding: 1.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #c7d2fe;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1rem auto;
}

.step-content h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #4f46e5;
}

.step-content p {
  margin: 0;
  color: #374151;
  line-height: 1.5;
  font-size: 0.9rem;
}

/* Cases Section */
.cases-section {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  margin: 2rem 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.cases-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

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

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

.case-card {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.case-header h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #4f46e5;
}

.case-location {
  display: inline-block;
  background: #4f46e5;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.case-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.case-spec {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.5;
}

.case-spec strong {
  color: #4f46e5;
  font-weight: 700;
  margin-right: 0.5rem;
}

/* Safety Section */
.safety-section {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  margin: 2rem 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.safety-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

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

.safety-category {
  background: linear-gradient(135deg, #fefefe 0%, #f8fafc 100%);
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.5rem;
  transition: border-color 0.3s ease;
}

.safety-category:hover {
  border-color: #4f46e5;
}

.safety-category h3 {
  margin: 0 0 1rem 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #4f46e5;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.safety-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f3f4f6;
  color: #374151;
  line-height: 1.5;
  font-size: 0.9rem;
}

.safety-list li:last-child {
  border-bottom: none;
}

.safety-list strong {
  color: #4f46e5;
  font-weight: 700;
}

/* 전기수리 신청 버튼 */
.repair-cta-wrapper {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}

.repair-cta-btn {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

.repair-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.4);
}

/* FAQ Section */
.faq-section {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  margin: 2rem 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.faq-item {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1.2rem;
  font-weight: 700;
  color: #4f46e5;
  background: white;
  margin: 0;
  border-bottom: 1px solid #e5e7eb;
  transition: background-color 0.2s ease;
}

.faq-item summary:hover {
  background: #f9fafb;
}

.faq-content {
  padding: 1.2rem;
}

.faq-content p {
  margin: 0 0 1rem 0;
  color: #374151;
  line-height: 1.6;
}

.faq-content ul {
  margin: 0;
  padding-left: 1.2rem;
  color: #6b7280;
}

.faq-content li {
  margin: 0.5rem 0;
  line-height: 1.5;
}

/* CTA Section */
.cta-section {
  margin: 3rem 0;
}

.cta-card {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-card h3 {
  margin: 0 0 1rem 0;
  font-size: 2rem;
  font-weight: 800;
}

.cta-card p {
  margin: 0 0 2rem 0;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-card .btn-primary {
  background: white;
  color: #4f46e5;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

/* 모바일 반응형 스타일 */
@media (max-width: 767px) {
  .repair-main {
    padding: 0 12px;
  }
  
  .repair-hero {
    padding: 2rem 1.5rem;
    margin: 1rem 0;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    text-align: center;
    flex: 1;
  }
  
  .hero-image {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }
  
  .hero-card {
    padding: 1rem;
  }
  
  .hero-card h3 {
    font-size: 1rem;
  }
  
  .hero-card p {
    font-size: 0.8rem;
  }
  
  .process-section,
  .cases-section,
  .safety-section,
  .faq-section {
    padding: 2rem 1.5rem;
    margin: 1.5rem 0;
  }
  
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .service-card {
    margin: 1rem 0;
  }
  
  .service-header {
    padding: 1.5rem;
  }
  
  .service-header h2 {
    font-size: 1.5rem;
  }
  
  .service-content {
    padding: 1.5rem;
  }
  
  .case-card {
    padding: 1.25rem;
  }
  
  .case-header h4 {
    font-size: 1rem;
  }
  
  .safety-category {
    padding: 1.25rem;
  }
  
  .safety-category h3 {
    font-size: 1.1rem;
  }
  
  .cta-card {
    padding: 2rem 1.5rem;
  }
  
  .cta-card h3 {
    font-size: 1.5rem;
  }
  
  .cta-card .btn-primary {
    width: 100%;
    padding: 1rem 1.5rem;
  }
}


