
/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  font-size: 16px;
}

.modal.active {
  display: block;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.modal-content {
  position: relative;
  max-width: 900px;
  margin: 50px auto;
  background: #fff;
  border-radius: 8px;
  z-index: 10000;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #333;
  z-index: 10001;
}

.modal-body {
  display: flex;
  padding: 40px;
  gap: 30px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-image {
  flex: 1;
  text-align: center;
}

.modal-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.modal-info {
  flex: 1;
}

.modal-info h2 {
  margin: 0 0 15px 0;
  font-size: 28px;
}

.modal-info p {
  margin-bottom: 25px;
  color: #666;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.form-group select,
.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.btn-submit {
  width: 100%;
  padding: 12px;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}

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

.modal-button {
  padding: 12px 30px;
  background: #fff;
  color: #333;
  border: 2px solid #333;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 15px;
}

.modal-button:hover {
  background: #333;
  color: #fff;
}

.social-buttons a{
  color: #fff;
  letter-spacing: 10px;
  font-size: 30px;
}

.social-buttons a:hover{
  color: #c2c2c2;
}


@media (max-width: 768px) {
  .modal-body {
    flex-direction: column;
    padding: 20px;
  }
  
  .modal-content {
    margin: 20px;
  }

  .modal-image img {
    max-height: 350px;
    width: auto;
  }

  .social-buttons a{
    color: #fff;
    letter-spacing: 10px;
    font-size: 30px;
  }
}
