/* 농사용/임시 전기 전용 스타일 */

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

/* Hero Section */
.agri-hero {
  background: linear-gradient(135deg, #065f46 0%, #059669 50%, #10b981 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) {
  .agri-hero {
    grid-template-columns: 1fr 0.8fr;
    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: #065f46;
  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;
}

@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.25rem;
  font-weight: 700;
}

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

/* 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: #065f46;
  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, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid #bbf7d0;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #059669 0%, #10b981 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: #065f46;
}

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

/* 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;
}

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

.temporary .service-header {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 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: #065f46;
}

.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;
}

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

.spec-item {
  background: #f8fafc;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

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

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

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

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

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

.pricing-card {
  background: #f8fafc;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-color: #059669;
  transform: scale(1.05);
}

.pricing-card h3 {
  margin: 0 0 1rem 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #111827;
}

.price {
  font-size: 1.8rem;
  font-weight: 800;
  color: #059669;
  margin-bottom: 1.5rem;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.pricing-card li {
  padding: 0.5rem 0;
  color: #374151;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.9rem;
}

.pricing-card li:last-child {
  border-bottom: none;
}

.pricing-btn {
  width: 100%;
  margin-top: 1.5rem;
  background: #059669 !important;
  color: white !important;
  text-align: center;
  padding: 0.8rem 1rem;
  font-size: 1rem;
}

.pricing-card.featured .pricing-btn {
  background: #065f46 !important;
}

/* 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: #065f46;
  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, #065f46 0%, #059669 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: #065f46;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

/* 모바일 반응형 스타일 */
@media (max-width: 767px) {
  .agri-main {
    padding: 0 12px;
  }
  
  .agri-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;
  }
  
  .process-section,
  .pricing-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;
  }
  
  .pricing-card {
    padding: 1.5rem 1rem;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .cta-card {
    padding: 2rem 1.5rem;
  }
  
  .cta-card h3 {
    font-size: 1.5rem;
  }
  
  .cta-card .btn-primary {
    width: 100%;
    padding: 1rem 1.5rem;
  }
}

/* 시공 사례 섹션 */
.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: #065f46;
}

.case-location {
  display: inline-block;
  background: #059669;
  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: #065f46;
  font-weight: 700;
  margin-right: 0.5rem;
}

/* 안전 기준 섹션 */
.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: #059669;
}

.safety-category h3 {
  margin: 0 0 1rem 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #065f46;
  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: #059669;
  font-weight: 700;
}

/* 모바일 반응형 - 추가 섹션 */
@media (max-width: 767px) {
  .cases-section,
  .safety-section {
    padding: 2rem 1.5rem;
    margin: 1.5rem 0;
  }
  
  .case-card {
    padding: 1.25rem;
  }
  
  .case-header h4 {
    font-size: 1rem;
  }
  
  .safety-category {
    padding: 1.25rem;
  }
  
  .safety-category h3 {
    font-size: 1.1rem;
  }
}


