/* Notification System */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #2c3e50;
    color: white;
    padding: 0;
    border-radius: 8px;
    min-width: 300px;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    overflow: hidden;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .notification.show {
    transform: translateY(0);
    opacity: 1;
  }
  
  .notification-content {
    display: flex;
    padding: 15px;
    flex-grow: 1;
  }
  
  .notification-icon {
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .notification-message {
    line-height: 1.5;
  }
  
  .notification-close {
    padding: 15px;
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
  }
  
  .notification-close:hover {
    opacity: 1;
  }
  
  /* Notification Types */
  .notification-success {
    background-color: #27ae60;
    border-left: 5px solid #2ecc71;
  }
  
  .notification-error {
    background-color: #e74c3c;
    border-left: 5px solid #c0392b;
  }
  
  .notification-info {
    background-color: #3498db;
    border-left: 5px solid #2980b9;
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .notification {
      min-width: auto;
      max-width: 90%;
      left: 5%;
      right: 5%;
    }
  }
  
  /* Contact Form Styles */
  .name-display-box {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }
  
  .name-display-box:focus-within {
    border-color: #bd5fff;
    box-shadow: 0 0 0 2px rgba(189, 95, 255, 0.2);
  }
  
  #dynamic-name {
    color: #ffffff;
    outline: none;
  }
  
  #dynamic-name.name-placeholder {
    color: rgba(255, 255, 255, 0.6);
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 15px;
    color: #ffffff;
    font-family: inherit;
    transition: all 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #bd5fff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(189, 95, 255, 0.2);
  }
  
  .form-group textarea {
    min-height: 120px;
    resize: vertical;
  }
  
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
  }
  
  .send-message-btn {
    background: linear-gradient(135deg, #bd5fff 0%, #9932cc 100%);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    font-size: 16px;
  }
  
  .send-message-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(189, 95, 255, 0.4);
  }
  
  .send-message-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(189, 95, 255, 0.4);
  }