/* ====== Download After Form Modal Styling ====== */

.daf-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    display: none;
    z-index: 9999;
  }
  
  .daf-modal-wrap {
    background: #fff;
    max-width: 480px;
    margin: 5% auto;
    padding: 40px 35px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    text-align: center;
  }
  
  .daf-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
    color: #555;
  }
  
  .daf-modal-wrap h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #222;
  }
  
  .daf-modal-wrap p.subtitle {
    margin: 0 0 25px 0;
    font-size: 15px;
    color: #666;
  }
  
  #daf-form p {
    margin: 0 0 18px 0;
    text-align: left;
  }
  
  #daf-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
  }
  
  #daf-form input[type="text"],
  #daf-form input[type="email"],
  #daf-form input[type="tel"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
    font-size: 14px;
    box-sizing: border-box;
  }
  
  #daf-form input:focus {
    outline: none;
    border-color: #0044cc;
    background: #fff;
  }
  
  .daf-submit-btn {
    display: inline-block;
    width: 100%;
    padding: 14px;
    
    background: #051462;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  
 
  
  .daf-form-message {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
  }
  