.package-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  gap: 8px;
}
.voucher-icon img {
  height: 100px;
}
.price-old-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9em;
}

.price-old-label {
  color: #7f8c8d;
  font-weight: normal;
}

.price-old {
  text-decoration: line-through;
  font-weight: 500;
}

.price-current-wrapper {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.price-amount {
  font-size: 2em;
  font-weight: bold;
  color: #2c3e50;
}

.price-label {
  font-size: 0.9em;
  color: #7f8c8d;
}

.package-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-details {
  display: inline-block;
  padding: 12px 24px;
  background-color: #ecf0f1;
  color: #2c3e50;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.btn-details:hover {
  background-color: #bdc3c7;
}

.btn-primary {
  display: inline-block;
  padding: 12px 24px;
  background-color: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #2980b9;
}

/* Layout pentru servicii */
.servicii-packages .packages-container {
  display: grid;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Homepage: 4 carduri pe un singur rând */
.servicii-packages .packages-container:has(.package-card:nth-child(4):last-child) {
  grid-template-columns: repeat(4, 1fr);
}

/* Pagina Servicii: 6 carduri - 3 pe rând */
.servicii-packages .packages-container:has(.package-card:nth-child(6)) {
  grid-template-columns: repeat(3, 1fr);
}

.servicii-packages .packages-container:has(.package-card:nth-child(6)) .package-card {
  grid-column: span 1;
}

/* Pagina Servicii: 5 carduri - 3 pe rândul 1, 2 centrate pe rândul 2 */
.servicii-packages .packages-container:has(.package-card:nth-child(5):last-child) {
  grid-template-columns: repeat(6, 1fr);
}

.servicii-packages .packages-container:has(.package-card:nth-child(5):last-child) .package-card:nth-child(1),
.servicii-packages .packages-container:has(.package-card:nth-child(5):last-child) .package-card:nth-child(2),
.servicii-packages .packages-container:has(.package-card:nth-child(5):last-child) .package-card:nth-child(3) {
  grid-column: span 2;
}

.servicii-packages .packages-container:has(.package-card:nth-child(5):last-child) .package-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.servicii-packages .packages-container:has(.package-card:nth-child(5):last-child) .package-card:nth-child(5) {
  grid-column: 4 / span 2;
}

/* Responsive pentru tablet */
@media (max-width: 1024px) {
  .servicii-packages .packages-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .servicii-packages .package-card:nth-child(4),
  .servicii-packages .package-card:nth-child(5),
  .servicii-packages .package-card:nth-child(6) {
    grid-column: span 1;
    margin-left: 0;
    margin-right: 0;
  }
}

/* Responsive pentru mobile */
@media (max-width: 768px) {
  .servicii-packages .packages-container {
    grid-template-columns: 1fr !important;
  }
  
  .servicii-packages .package-card {
    grid-column: span 1 !important;
    margin-left: 0;
    margin-right: 0;
  }
}

.extra-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
}

.extra-modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 0;
  border-radius: 12px;
  max-width: 600px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  position: relative;
  animation: slideIn 0.3s ease-out;
}

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

.extra-modal-close {
  color: #aaa;
  float: right;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  padding: 15px 20px;
  cursor: pointer;
  transition: color 0.3s;
}

.extra-modal-close:hover,
.extra-modal-close:focus {
  color: #000;
}

.extra-modal-header {
  padding: 30px 30px 20px;
  border-bottom: 1px solid #eee;
}

.extra-modal-header h2 {
  margin: 0;
  color: #2c3e50;
  font-size: 1.8em;
}

.extra-modal-body {
  padding: 30px;
}

.extra-modal-description {
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1.05em;
}

.extra-modal-price {
  text-align: center;
  margin: 30px 0;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
}

.extra-modal-price .price-old {
  text-decoration: line-through;
  color: #999;
  font-size: 1.1em;
  display: block;
  margin-bottom: 8px;
}

.extra-modal-price .price-new {
  color: #2c3e50;
  font-size: 2em;
  font-weight: bold;
  display: block;
}

.extra-modal-footer {
  text-align: center;
  padding: 0 30px 30px;
}

.extra-modal-btn {
  display: inline-block;
  padding: 15px 40px;
  background-color: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s;
  font-size: 1.1em;
}

.extra-modal-btn:hover {
  background-color: #2980b9;
}

@media (max-width: 768px) {
  .extra-modal-content {
    margin: 10% 15px;
    max-width: none;
  }
  
  .extra-modal-header h2 {
    font-size: 1.5em;
  }
  
  .extra-modal-body {
    padding: 20px;
  }
}

.extra-card::before {
  display: none !important;
  pointer-events: none !important;
}

.extra-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.extra-card-title {
  font-size: 1.5em;
  color: #2c3e50;
  margin: 0;
  font-weight: 700;
}

.extra-price {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.extra-price .price-old {
  text-decoration: line-through;
  color: #999;
  font-size: 1.1em;
}

.extra-price .price-new {
  color: #fff;
  font-size: 2em;
  font-weight: bold;
}


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

.voucher-container {
  max-width: 1400px;
  margin: 0 auto;
}

.voucher-header {
  text-align: center;
  margin-bottom: 50px;
}

.voucher-title {
  font-size: 2.5em;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.voucher-subtitle {
  font-size: 1.2em;
  color: #7f8c8d;
}

.voucher-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.voucher-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  position: relative;
}

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

.voucher-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.voucher-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.voucher-name {
  font-size: 1.5em;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.voucher-price {
  font-size: 1.5em;
  color: #2c3e50;
  font-weight: bold;
  margin-bottom: 20px;
}

.voucher-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.voucher-btn:hover {
  background-color: #2980b9;
}

.package-delivery-info {
  text-align: center;
  padding: 15px 20px;
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  margin-bottom: 20px;
  border-radius: 4px;
}

.delivery-text {
  margin: 0;
  color: #856404;
  font-size: 0.9em;
  font-weight: 600;
  line-height: 1.4;
}

.package-header {
  text-align: center;
  padding: 25px 20px 20px;
  border-bottom: 1px solid #eee;
}

.package-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.package-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.package-title {
  font-size: 1.5em;
  color: #2c3e50;
  margin: 0 0 15px 0;
  font-weight: 700;
}

.package-subtitle {
  color: #7f8c8d;
  font-size: 0.95em;
  line-height: 1.6;
  margin: 0;
}

.package-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

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

.package-content {
  padding: 25px;
  flex: 1;
}

.package-footer {
  padding: 0 25px 25px;
  margin-top: auto;
}

.voucher-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
}

.voucher-modal-content {
  background-color: #fefefe;
  margin: 3% auto;
  padding: 0;
  border-radius: 12px;
  max-width: 600px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.voucher-modal-close {
  color: #aaa;
  float: right;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  padding: 15px 20px;
  cursor: pointer;
  transition: color 0.3s;
}

.voucher-modal-close:hover {
  color: #000;
}

.voucher-modal-header {
  padding: 30px 30px 20px;
  border-bottom: 1px solid #eee;
}

.voucher-modal-header h2 {
  margin: 0;
  color: #2c3e50;
  font-size: 1.8em;
}

.voucher-modal-body {
  padding: 30px;
}

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

.voucher-form-group label {
  display: block;
  margin-bottom: 8px;
  color: #2c3e50;
  font-weight: 600;
}

.voucher-form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1em;
  transition: border-color 0.3s;
}

.voucher-form-group input:focus {
  outline: none;
  border-color: #3498db;
}

.voucher-modal-footer {
  text-align: center;
  padding: 0 30px 30px;
}

.voucher-submit-btn {
  width: 100%;
  border: none;
  cursor: pointer;
}

.voucher-submit-btn:disabled {
  background-color: #95a5a6;
  cursor: not-allowed;
}

@media (max-width: 1024px) {
  .voucher-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .voucher-grid {
    grid-template-columns: 1fr;
  }
  
  .voucher-modal-content {
    margin: 5% 15px;
    max-width: none;
  }
}
.servicii-faq {
  padding: 60px 20px;
  background: white;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-size: 2.5em;
  color: #2c3e50;
  margin-bottom: 50px;
  font-weight: 600;
}

.faq-item {
  margin-bottom: 30px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #3498db;
}

.faq-question {
  color: #2c3e50;
  font-size: 1.3em;
  margin-bottom: 15px;
  font-weight: 600;
}

.faq-answer {
  color: #555;
  line-height: 1.8;
  margin: 0;
  font-size: 1.05em;
}

@media (max-width: 768px) {
  .faq-title {
    font-size: 2em;
  }
  
  .faq-item {
    padding: 20px;
  }
  
  .faq-question {
    font-size: 1.1em;
  }
}

.booking-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.7);
}

.booking-modal-content {
  background-color: #fefefe;
  margin: 3% auto;
  padding: 0;
  border-radius: 12px;
  max-width: 600px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.booking-modal-close {
  color: #aaa;
  float: right;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  padding: 15px 20px;
  cursor: pointer;
  transition: color 0.3s;
}

.booking-modal-close:hover {
  color: #000;
}

.booking-modal-header {
  padding: 30px 30px 20px;
  border-bottom: 1px solid #eee;
}

.booking-modal-header h2 {
  margin: 0;
  color: #2c3e50;
  font-size: 1.8em;
}

.booking-modal-body {
  padding: 30px;
}

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

.booking-form-group label {
  display: block;
  margin-bottom: 8px;
  color: #2c3e50;
  font-weight: 600;
}

.booking-form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1em;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.booking-form-group input:focus {
  outline: none;
  border-color: #3498db;
}

.booking-modal-footer {
  text-align: center;
  padding: 0 0 10px 0;
}

.booking-submit-btn {
  width: 100%;
  border: none;
  cursor: pointer;
}

.booking-submit-btn:disabled {
  background-color: #95a5a6;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .booking-modal-content {
    margin: 5% 15px;
    max-width: none;
  }
  
  .booking-modal-header h2 {
    font-size: 1.5em;
  }
  
  .booking-modal-body {
    padding: 20px;
  }
}

.ebook-cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  text-align: center;
}

.ebook-cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.ebook-cta-title {
  font-size: 2.5em;
  color: white;
  margin-bottom: 20px;
  font-weight: 600;
}

.ebook-cta-text {
  font-size: 1.3em;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 35px;
  line-height: 1.6;
}

.ebook-cta-button {
  display: inline-block;
  padding: 18px 45px;
  background-color: white;
  color: #667eea;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.ebook-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background-color: #f8f9fa;
}

@media (max-width: 768px) {
  .ebook-cta-section {
    padding: 60px 20px;
  }
  
  .ebook-cta-title {
    font-size: 2em;
  }
  
  .ebook-cta-text {
    font-size: 1.1em;
  }
  
  .ebook-cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }
}