/* Rapoarte PDF - EXACT ca Pachete Speciale */

.rapoarte-pdf-section {
  padding: 60px 20px;
  background: #f8f9fa;
}

.rapoarte-pdf-section .extra-container {
  max-width: 1400px;
  margin: 0 auto;
}

.rapoarte-pdf-section .extra-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 15px;
}

.rapoarte-pdf-section .extra-subtitle {
  font-size: 1.2rem;
  color: #7f8c8d;
  text-align: center;
  margin-bottom: 50px;
}

.rapoarte-pdf-section .extra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.rapoarte-pdf-section .extra-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  padding: 40px 30px 30px 30px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: grid;
  grid-template-rows: 1fr auto;
  text-align: center;
  position: relative;
  min-height: 600px;
}

.rapoarte-pdf-section .extra-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.rapoarte-pdf-section .extra-icon {
  display: none;
}

.rapoarte-pdf-section .extra-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.3;
}

.rapoarte-pdf-section .extra-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.rapoarte-pdf-section .extra-card-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 0;
  padding-top: 20px;
}

.rapoarte-pdf-section .extra-card-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  line-height: 1.6;
}

.rapoarte-pdf-section .raport-content-detail {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  text-align: left;
  padding: 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
  width: 100%;
}

.rapoarte-pdf-section .extra-price {
  margin: 0 0 20px 0;
}

.rapoarte-pdf-section .price-old {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: line-through;
  display: block;
  margin-bottom: 5px;
}

.rapoarte-pdf-section .price-new {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
}

.rapoarte-pdf-section .btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background-color: #ffffff;
  color: #667eea;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin: 0 0 15px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.rapoarte-pdf-section .btn-primary:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  color: #667eea;
}

.raport-footer-individual {
  margin: 0;
  padding: 15px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  width: 100%;
}

.raport-footer-individual p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
}

.rapoarte-footer-notice {
  text-align: center;
  margin-top: 40px;
  padding: 25px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.rapoarte-footer-notice p {
  font-size: 1.1rem;
  color: #7f8c8d;
  margin: 0;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .rapoarte-pdf-section .extra-title {
    font-size: 2rem;
  }
  
  .rapoarte-pdf-section .extra-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .rapoarte-pdf-section .extra-card {
    padding: 30px 20px 20px 20px;
    min-height: 500px;
  }
  
  .rapoarte-pdf-section .extra-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
  
  .rapoarte-pdf-section .extra-card-title {
    font-size: 1.4rem;
  }
  
  .rapoarte-pdf-section .price-new {
    font-size: 2rem;
  }
}

.hd-modal {
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.hd-modal-content {
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  margin: 5% auto;
  padding: 40px;
  border-radius: 20px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hd-modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  color: #ffffff;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.hd-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

#hd-modal-title {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 30px;
  font-weight: 700;
}

.hd-form-group {
  margin-bottom: 20px;
}

.hd-form-group label {
  display: block;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.hd-form-group input,
.hd-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: #2c3e50;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.hd-form-group input:focus,
.hd-form-group textarea:focus {
  outline: none;
  border-color: #ffffff;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.hd-form-actions {
  margin-top: 30px;
  text-align: center;
}

.hd-btn-submit {
  background-color: #ffffff;
  color: #667eea;
  padding: 14px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hd-btn-submit:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hd-btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.hd-form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
}

.hd-form-message.success {
  background: rgba(76, 175, 80, 0.2);
  color: #ffffff;
  border: 2px solid rgba(76, 175, 80, 0.5);
}

.hd-form-message.error {
  background: rgba(244, 67, 54, 0.2);
  color: #ffffff;
  border: 2px solid rgba(244, 67, 54, 0.5);
}

@media (max-width: 768px) {
  .hd-modal-content {
    width: 95%;
    margin: 10% auto;
    padding: 30px 20px;
  }
  
  #hd-modal-title {
    font-size: 1.5rem;
  }
  
  .hd-form-group input {
    font-size: 16px;
  }
}