.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-in-out;
}

.popup-content {
  position: relative;
  background: linear-gradient(135deg, #fce7f3, #dbeafe);
  width: 90%;
  max-width: 500px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  animation: scaleIn 0.3s ease-in-out;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  transition: color 0.3s;
}

.popup-close:hover {
  color: #fb7185;
}

.popup-content h2 {
  margin-bottom: 15px;
  color: #1e40af;
  font-family: 'Playfair Display', serif;
}

.popup-content p {
  margin-bottom: 20px;
  color: #333;
}

#popup-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  position: relative;
  width: 100%;
}

#popup-name,
#popup-email,
#popup-phone {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

#popup-name:focus,
#popup-email:focus,
#popup-phone:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

#popup-form button {
  background-color: #1e40af;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-weight: 600;
}

#popup-form button:hover {
  background-color: #3b82f6;
}

/* Notification styling */
.notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 15px 25px;
  color: white;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

.notification.success {
  background-color: #10b981;
}

.notification.error {
  background-color: #ef4444;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .popup-content {
    width: 85%;
    padding: 20px;
  }
  
  #popup-form button, 
  #popup-name, 
  #popup-email, 
  #popup-phone {
    padding: 10px 15px;
    font-size: 14px;
  }
  
  .notification {
    bottom: 10px;
    right: 10px;
    left: 10px;
    width: auto;
    text-align: center;
  }
} 