/* GWFlowAI Specific Styles */

/* Hero Section */
.gwflowai-page .hero h2 span {
    color: #ffc451;
  }
  
  /* Search Form */
  .form-search {
    background-color: #fff;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
  }
  
  .form-search input {
    border: none;
    padding: 10px 15px;
    border-radius: 50px;
    width: 100%;
    outline: none;
  }
  
  .form-search button {
    background-color: #ffc451;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .form-search button:hover {
    background-color: #e6b03e;
  }
  
  .location-note {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #666;
  }
  
  .location-note a {
    color: #ffc451;
    text-decoration: underline;
    cursor: pointer;
  }
  
  /* Jump Animation */
  .jump-text {
    display: inline-block;
    animation: jump 1s ease-in-out infinite;
    color: #ffc451;
    font-weight: 500;
  }
  
  @keyframes jump {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
  }
  
  /* Forms and Boxes */
  .gwflow-form {
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 30px;
    transition: all 0.3s ease;
  }
  
  .gwflow-form:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  }
  
  .gwflow-sidebar-box {
    margin-bottom: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  }
  
  .gwflow-sidebar-box h4 {
    color: #1a1a1a;
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
  }
  
  .gwflow-sidebar-box h4 i {
    margin-right: 10px;
    color: #ffc451;
  }
  
  /* Stats */
  .stats-container {
    margin-top: 30px;
  }
  
  .stat-box {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
  }
  
  .stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .stat-box .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffc451;
    margin-bottom: 10px;
  }
  
  .stat-box .label {
    font-size: 1rem;
    color: #666;
  }
  
  /* Use Cases */
  .use-case-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 20px;
  }
  
  .use-case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .use-case-item i {
    font-size: 2.5rem;
    color: #ffc451;
    margin-bottom: 15px;
  }
  
  .use-case-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  /* Loader */
  .loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #ffc451;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  .loader-text {
    color: white;
    font-size: 18px;
    font-weight: 500;
  }
  
  /* Modal */
  .modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
    position: relative;
  }
  
  .modal-content h2 {
    margin-top: 0;
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .modal-content input,
  .modal-content textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  .modal-content textarea {
    height: 100px;
    resize: vertical;
  }
  
  .modal-content .submit-btn {
    background-color: #ffc451;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
  }
  
  .modal-content .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
  }
  
  /* Questionnaire Styles */
  .questionnaire-content {
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  .questionnaire-content h2 {
    text-align: center;
    color: #333;
    margin-bottom: 10px;
  }
  
  .form-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
  
  .form-section h3 {
    margin-bottom: 15px;
    color: #555;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
  }
  
  .form-section h3 i {
    margin-right: 10px;
    color: #ffc451;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
  }
  
  .required-field::after {
    content: '*';
    color: red;
    margin-left: 4px;
  }
  
  .checkbox-group, .radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .checkbox-group label, .radio-group label {
    font-weight: normal;
    margin-bottom: 0;
    display: flex;
    align-items: center;
  }
  
  .checkbox-group input, .radio-group input {
    margin-right: 8px;
  }
  
  .form-control, .form-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  
  .custom-option {
    margin-top: 10px;
  }
  
  .progress-container {
    margin-bottom: 30px;
  }
  
  .progress {
    height: 8px;
    border-radius: 4px;
    background-color: #f1f1f1;
    overflow: hidden;
  }
  
  .progress-bar {
    height: 100%;
    background-color: #ffc451;
    transition: width 0.3s ease;
  }
  
  .step-indicators {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
  }
  
  .step-indicator {
    font-size: 0.875rem;
    color: #6c757d;
  }
  
  .step-indicator.active {
    color: #ffc451;
    font-weight: bold;
  }
  
  .nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
  }
  
  .prev-btn, .cancel-btn {
    background-color: #f1f1f1;
    color: #333;
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .next-btn, .submit-btn {
    background-color: #ffc451;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .prev-btn:hover, .cancel-btn:hover {
    background-color: #e4e4e4;
  }
  
  .next-btn:hover, .submit-btn:hover {
    background-color: #e6b03e;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .questionnaire-content {
      width: 95%;
      padding: 20px;
    }
    
    .checkbox-group, .radio-group {
      flex-direction: column;
    }
    
    .nav-buttons {
      flex-direction: column;
      gap: 10px;
    }
    
    .nav-buttons button {
      width: 100%;
    }
    
    .step-indicators {
      display: none;
    }
  }