/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */






@media only screen and (max-width: 600px) {
  
    .left-column,
  .right-column{
      width: 100% !important;
     

  }
  
  .left-column{
      order: 1;
  }

  .main-procedure .container{
      flex-wrap: wrap;

  }
}

/* Health Hop Form Styles - Exact Match to Original */
#healthhop-contact-form {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

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

#healthhop-contact-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

#healthhop-contact-form .form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

/* Input Fields - Exact Match to Original */
#healthhop-contact-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    background-color: #ffffff;
    color: #333;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
}

#healthhop-contact-form .form-control:focus {
    outline: none;
    border-color: #07A6A9;
    box-shadow: 0 0 0 2px rgba(7,166,169,0.1);
}

#healthhop-contact-form .form-control::placeholder {
    color: #999;
    font-style: normal;
}

/* Phone Input Group - Side by Side */
#healthhop-contact-form .phone-input-group {
    display: flex;
    gap: 10px;
}

#healthhop-contact-form .phone-country-code {
    flex: 0 0 80px;
    min-width: 80px;
}

#healthhop-contact-form .phone-number {
    flex: 1;
}

/* Procedures Dropdown - Full Width */
#healthhop-contact-form .procedures-dropdown {
    height: auto;
    min-height: 40px;
    padding: 8px 15px;
}

#healthhop-contact-form .procedures-dropdown option {
    padding: 8px 12px;
}

/* Submit Button - Exact Match to Original */
#healthhop-contact-form .btn_green {
    background-color: #07A6A9;
    border: none;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    font-weight: 500;
}

#healthhop-contact-form .btn_green:hover {
    background-color: #005a87;
    color: white;
}

#healthhop-contact-form .btn_green:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

#healthhop-contact-form .btn_green i {
    font-size: 14px;
}

/* Responsive design */
@media (max-width: 768px) {
    #healthhop-contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    #healthhop-contact-form .form-row .form-group {
        margin-bottom: 20px;
    }
    
    #healthhop-contact-form .phone-input-group {
        flex-direction: column;
        gap: 0;
    }
    
    #healthhop-contact-form .phone-country-code {
        flex: 1;
        margin-bottom: 10px;
    }
}