/* E-Invoice Integration Section Styles */

.einvoice-integration {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.einvoice-integration::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.einvoice-integration .section-heading {
  color: white;
}

.einvoice-integration .section-heading h6 {
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.einvoice-integration .section-heading h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.einvoice-integration .section-heading h2 em {
  color: #ffd700;
  font-style: normal;
  font-weight: 700;
}

.einvoice-integration .section-heading h2 span {
  color: #ff6b6b;
}

.einvoice-integration .section-heading p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.8;
}

.einvoice-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.einvoice-features .feature-item {
  display: flex;
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.einvoice-features .feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.4);
}

.einvoice-features .feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffd700, #ff6b6b);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
  color: white;
}

.einvoice-features .feature-text h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.einvoice-features .feature-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin: 0;
}

.einvoice-specs {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  margin-top: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

.einvoice-specs h5 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.einvoice-specs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.einvoice-specs ul li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.einvoice-specs ul li i {
  color: #ffd700;
  font-size: 1.1rem;
}

.einvoice-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.einvoice-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.einvoice-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ffd700, #ff6b6b);
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.einvoice-badge i {
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .einvoice-features {
    grid-template-columns: 1fr;
  }

  .einvoice-specs ul {
    grid-template-columns: 1fr;
  }

  .einvoice-integration .section-heading h2 {
    font-size: 1.8rem;
  }

  .einvoice-image {
    min-height: 300px;
    margin-top: 30px;
  }
}
