.survey {
    --main-color: #1F3B5B;
    --main-soft-color: #A3E2B1;
    --secondary-color: #57B6E7;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    color: black;
}

@media (max-width: 500px) {
  h1 {
    font-size: 28px !important; /* or any size you prefer */
  }
}
.survey #ineligible,
.survey #timeout_survey {
    display: none !important;
}

.survey #timeout_survey.active {
    display: flex !important;
}

.survey #timeout_survey {
    text-align: center;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.survey #title {
    font-size: 30px;
    font-weight: 700;
}

.survey .answer_button {
    width: 100%;
    max-width: 100% !important;
    background-color: transparent !important;
    border: 4px solid var(--main-soft-color);
    color: black;
    font-size: 25px;
    border-radius: 20px;
    font-weight: normal;
    outline: 0 !important;
    cursor: pointer;
}

.survey .answer_button:hover {
    border-color: var(--main-color);
    background-color: transparent !important;
    text-shadow: 0 0 1px currentColor;
}

.survey button {
    background-color: var(--secondary-color);
    color: white;
    font-weight: 700;
    border: 0;
    padding: 15px 70px;
    border-radius: 10px;
    cursor: pointer !important;
}

/* .survey button:hover {
    background-color: darkorange !important;
} */

.survey button:hover {
    background-color: var(--secondary-color) !important;
}

.survey h1 {
    padding: 0px;
    margin: 0px;
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 20px;
}

.survey input {
    width: 100%;
    max-width: 100% !important;
    background-color: transparent !important;
    border: 4px solid var(--main-soft-color) !important;
    color: black !important;
    padding: 15px !important;
    border-radius: 10px !important;
    outline: 0 !important;
    text-align: center !important;
}

.survey input:focus {
    border-color: var(--main-color) !important;
}

.survey label {
    flex-shrink: 0;
}

.survey .step {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    display: none;
}

.survey .step.active {
    display: flex !important;
}

.survey .loader {
    width: 70px;
    height: 70px;
    border-radius: 100px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-left: 5px solid orange;
    animation: spinloader 1s infinite;
    flex-shrink: 0;
}

@keyframes spinloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.survey .error {
    color: red;
    display: none;
}

.survey .error.active {
    display: block;
}

.survey .inline-checkbox {
    display: block;
    text-align: justify;
    align-items: start;
}

.survey .inline-checkbox input {
    width: 21px;
    height: 28px;
    margin-top: 5px;
    margin-right: 15px;
}

.survey .inline-checkbox label{
    line-height: 1.8;
}

#step_7 {
    align-items: flex-start;
}

.survey .contractor {
    width: 100%;
    border-radius: 10px;
    border: 4px solid var(--main-soft-color);
    text-align: left;
    padding: 20px;
    position: relative;
    height: fit-content;
}

.survey .contractor .verified {
    background-color: #2ecc71;
    color: white;
    padding: 8px 19px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    width: fit-content;
}

.contractor-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
}

.contractor_info_container{
    display: flex;
    width: 75%;
    gap: 20px;
}

.contractor_info_container .contractor-image{
    width: 40%;
    height: auto;
    border-radius: 10px !important;
    box-shadow: 0px 0px 10px #0000009c;
}

.contractor_info_container_right{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contractor_badges{
    display: flex;
    justify-content: flex-end;
    margin-top: 0px;
}

.contractor_badge{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 13px;
}

.contractor_badge:not(:first-child){
    padding-left: 15px;
    border-left: 2px solid var(--main-soft-color);
    margin-left: 15px;
}

.contractor_badge img{
    width: 45px;
    transform: translate(2px, 2px) scale(2.5);
    filter: drop-shadow(0px 1px 1px #00000080);
}

.contractor_badge span{
    /* box-shadow: 0px 1px 6px #00000080; */
    border-radius: 100px;
    aspect-ratio: 1;
}

.contractor_footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.schedule-badge{
    width: 100%;
    display: flex;
    height: 30px;
    gap: 5px;
    align-items: center;
}

.schedule-badge svg{
    width: 30px;
    height: 100%;
    fill: var(--main-color);
    transform: scale(2);
}

.schedule-badge span{
    background-color: var(--main-color);
    color: white;
    padding: 2px 8px;
    border-radius: 3px;
    height: fit-content;
    font-weight: bold;
}

.survey .contractor .verified svg {
    width: 15px;
    fill: white;
}

.survey .contractor h2 {
    font-weight: 700;
    margin: 0px;
    font-size: 21px;
}

.survey .date_picker.active,
.survey .time_picker.active {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.survey .time_picker.active{
    margin-top: 20px;
}

.date-picker-container{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.survey .date_picker,
.survey .time_picker {
    display: none;
    flex-wrap: wrap;
    margin-top: 40px;
}

.survey .date_picker button,
.survey .time_picker button {
    padding: 0px;
    width: 120px;
    height: 50px;
    background-color: transparent !important;
    border: 3px solid var(--main-soft-color);
    color: black;
    text-align: center;
    border-radius: 10px;
    font-weight: normal;
    outline: 0 !important;
}

.survey .date_picker button.active,
.survey .time_picker button.active {
    border-color: var(--main-soft-color) !important;
    background-color: #dfcee975 !important;
    outline: 0 !important;
    
}

.survey .date_picker button.pagination {
    width: 45px;
    height: 45px;
    border-radius: 100px;
    padding: 10px;
    margin: 0px;
    background: var(--main-soft-color) !important;
    outline: 0 !important;
    /* margin: 0 auto; */
    display: inline-flex;
}

.survey .date_picker button.pagination svg {
    fill: white;
    margin-top: -1px;
    width: 30px;
}

.survey .date_picker button.pagination:hover{
    background-color: var(--main-color) !important;
    border-color: var(--main-color);
}

.survey .tcp_optin {
    display: none;
    align-items: center;
    gap: 5px;
}

.survey .tcp_optin.active {
    display: flex;
    flex-direction: column;
    margin-top: 0px;
    height: fit-content;
    width: fit-content;
}

.gtcp_optin_text {
  display: block; /* Ensure block layout for height control */
  max-height: 3.6em; /* Limit to 2-3 lines */
  overflow: hidden; /* Hide overflowing text */
  text-overflow: ellipsis; /* Add ellipsis for truncated text */
  white-space: normal; /* Allow text to wrap */
  transition: max-height 0.3s ease; /* Smooth transition for height changes */
}

.gtcp_optin_text.expanded {
  max-height: none; /* Remove height restriction when expanded */
}

.gtcp_show_toggle {
  display:flex;
  justify-content: center;
  cursor: pointer;
}

/* Ensure proper truncation and expansion behavior */
.tcp_optin_text {
  display: block; /* Ensure block layout for height control */
  max-height: 3.6em; /* Limit to 2-3 lines */
  overflow: hidden; /* Hide overflowing text */
  text-overflow: ellipsis; /* Add ellipsis for truncated text */
  white-space: normal; /* Allow text to wrap */
  transition: max-height 0.3s ease; /* Smooth transition for height changes */
}

.tcp_optin_text.expanded {
  max-height: none; /* Remove height restriction when expanded */
}

.tcp_show_toggle {
  display: inline-block; /* Ensure the link is inline but on its own line */
  color: var(--main-color); /* Use your theme's main color */
  font-weight: bold;
  cursor: pointer;
  text-decoration: underline;
  margin-bottom: 15px; /* Add spacing between text and link */
}
/* Responsive adjustments for mobile */


.survey .confirm_date {
    display: none;
    align-items: center;
    gap: 5px;
}

.survey .confirm_date.active {
    display: flex;
    margin-top: 0px;
    height: fit-content;
    width: fit-content;
}

.survey .confirm_date svg{
    width: 20px;
    fill: white;
    transform: scale(2);
}

.survey .project_info {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-transform: capitalize;
}

.survey .project_info p {
    margin: 0;
}

.survey ul {
    text-align: left;
    padding-left: 20px;
}

.survey .date_main.hidden {
    display: none !important;
}

.survey .date_success {
    display: none;
}

.survey .date_success.active {
    display: block;
    background-color: #2ecc71;
    font-weight: 700;
    border-radius: 10px;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
}

.survey .project-step {
    width: 100%;
    border-radius: 10px;
    border: 4px solid var(--main-soft-color);
    text-align: left;
    padding: 0px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    min-height: 230px;
}

.survey .project-step img{
    width: 30%;
    object-fit: cover;
}

.survey .project-step-separator{
    width: 60px;
    padding: 10px;
    display: flex;
    align-items: center;
    box-shadow: 2px 0px 10px #0000007a;
    background-color: var(--main-color);
}

.survey .project-step-separator svg{
    fill: white;
    transform: scale(2);
    width: 30px;
}

.survey .project-step-content{
    width: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-step-content-divider{
    height: 4px;
    width: 70px;
    background-color: var(--main-color);
    margin-top: 10px;
    margin-bottom: 10px;
}

#step_7 h3 {
    margin-bottom: 0px;
    margin-top: 20px;
    font-weight: 700;
}

.date_loading {
    display: none;
}

.date_loading.active {
    display: flex;
    gap: 50px;
    padding: 20px;
    align-items: center;
    font-weight: 700;
    color: orange;
    font-size: 24px;
    margin-top: 20px;
}

@media only screen and (max-width: 700px) {
    .survey {
        padding: 0px !important;
    }

    .survey .contractor .verified {
        position: static !important;
        margin-bottom: 10px;
    }

    .survey .date_picker button,
    .survey .time_picker button {
        width: calc(50% - 5px);
    }

    .step_3_button img,
    .step_2_1_button img {
        width: 100% !important;
    }
}

.step_3_buttons,
.step_2_1_buttons,
.step_2_2_buttons,
.step_2_3_buttons,
.step_2_driveway_buttons,
.step_2_plumbing_buttons,
.step_2_kitchen_buttons,
.step_2_HVAC_buttons,
.step_2_solar_buttons,
.step_2_ADU_buttons,
.step_2_landscaping_buttons {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.step_3_buttons .step_3_button,
.step_2_1_buttons .step_2_1_button {
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 20px; */
    flex-shrink: 0;
    padding: 20px 70px;
}

.step_3_button img,
.step_2_1_button img {
    width: 40%;
    transform: scale(2);
}

.full_width_answer {
    width: 100% !important;
}

.step_2_button {
    width: 30% !important;
    text-transform: capitalize;
    padding: 15px 0px !important;
    margin-bottom: 10px;
}

#step_7_contractors {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Job Category */
#step_2 {
    flex-direction: column;
    /* flex-wrap: wrap; */
    justify-content: start; 
    align-items: normal;
}

#step_2_job_type {
    height: 60px;
}

#button-wrapper {
    display: flex; 
    flex-wrap: wrap; 
    width: 100%; 
    justify-content: space-between;
}

.no_contractors {
    color: red;
    font-weight: 500;
}

.pagination-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pagination-buttons .back {
    background-color: transparent;
    width: 50px;
    height: 50px;
    padding: 0px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--main-soft-color);
}

.pagination-buttons .back svg {
    width: 20px;
    fill: var(--main-soft-color);
    transition: fill 0.3s;
}

.pagination-buttons .back:hover {
    border-color: var(--main-color);
    background-color: transparent !important;
}

.pagination-buttons .back:hover svg {
    fill: var(--main-color);
}

.step_2_2_landscaping_buttons {
    width: 50%;
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.step_2_2_landscaping_buttons>div {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
}

.step_2_2_landscaping_buttons input[type="checkbox"] {
    width: 50px;
}

.google-logo {
    margin: 50px auto;
    max-width: 100px !important;
}

.almost-ready {
    width: 100%;
    background-color: var(--main-soft-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    gap: 20px;
    font-weight: 700;
}

.almost-ready svg {
    fill: var(--main-color);
    max-height: 50px;
}

.success-gif {
    width: 150px;
    height: 150px;
    margin-bottom: -40px;
}

.book-multiple {
    font-weight: 700;
    font-size: 18px;
}

.book-instruction-note{
    color: white;
    background-color: var(--main-color);
    width: fit-content;
    padding: 2px 10px;
    border-radius: 4px;
    font-weight: 500;
}

.booking-instruction {
    text-align: left;
}

.survey .logo {
    width: 150px;
    margin: 30px auto;
}

#step_6_success.hidden {
    display: none;
}

#step_6_no_contractors {
    display: none;
}

#step_6_no_contractors.active {
    display: block;
}

#project_details_title {
    font-weight: 700;
    text-transform: capitalize;
}

#step_6_verify_sms_error.hidden {
    display: none !important;
}

#step_6_verify_sms_error {
    color: red;
}

/* Phone */
.phone-holder {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    height: 64px;
    padding: 0px 10px;
    border: 4px solid var(--main-soft-color) !important;
    border-radius: 5px;
}

.phone-holder:hover{
    border-color: var(--main-color);
}

.phone-holder input {
    max-width: 135px !important;
    height: 64px;
    border: 0px;
    background-color: transparent;
    font: inherit;
    padding: 0px;
    margin: 0px;
    outline: none !important;
    border: 0px !important;
    padding-left: 10px !important;
    padding-right: 0px !important;
    text-align: left !important;
}

.flag img {
    width: 20px;
}

.flag {
    margin-right: 10px;
}

label[for="step_6_agreed"] {
    width: calc(100% - 100px);
}

#step_6_email.hidden {
    display: none !important;
}

.woocommerce-form.woocommerce-form-login.login {
    max-width: 500px;
    margin: 0 auto;
}

.woocommerce>h2 {
    text-align: center;
}

/* EXIT POPUP */
.ze-exit-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
  }
  
  .ze-exit-popup-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .ze-exit-popup-title {
    color: var(--main-color);
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .ze-exit-popup-text {
    color: #333;
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .ze-exit-popup-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .ze-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .survey .ze-btn-primary {
    background-color: var(--main-color);
    color: white;
    width: 100%;
    padding: 20px;
  }
  
  .survey .ze-btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    width: 100%;
    padding: 20px;
  }
  
  .survey .ze-btn-primary:hover, .survey .ze-btn-secondary:hover {
    opacity: 0.9;
  }

  /* EXIT POPUP */

  .ze-schedule-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
  }
  
  .ze-schedule-popup-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .ze-schedule-popup-title {
    color: var(--main-color);
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .ze-schedule-popup-question {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  .ze-schedule-popup-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .ze-schedule-popup-text {
    color: #333;
    font-size: 16px;
    font-style: italic;
  }

@media(max-width: 724px){
    
    .contractor_footer{
        align-items: unset;
        flex-direction: column;
    }

    .survey .tcp_optin.active {
        margin: auto;
    }

    .survey .confirm_date.active {
        margin: auto;
    }

    .contractor_badges{
        margin-top: 20px;
        margin-left: auto;
    }

    .survey .answer_button{
        font-size: 14px;
        border-width: 2px;
        border-radius: 13px;
        word-wrap: break-word;
    }

    .schedule-badge span{
        font-size: 12px;
    }

    .contractor_info_container .contractor-image{
        width: 30%;
    }

    .contractor_info_container{
        width: 100%;
    }

}

@media(min-width: 1200px){

    #step_7_contractors{
        width: 1300px;
        transform: translateX(-50%);
        margin-left: 50%;
        flex-direction: row;
    }

    .survey .contractor{
        padding: 15px;
        max-width: 450px;
    }

    .contractor_info_container{
        width: 100%;
    }

    .schedule-badge{
        height: 20px;
    }

    .schedule-badge span{
        font-size: 10px;
    }

    .contractor_badges{
        margin-top: 20px;
    }

    .contractor_footer{
        align-items: unset;
        flex-direction: column;
    }

    .survey .tcp_optin.active {
        margin: auto;
    }

    .survey .confirm_date.active {
        margin: auto;
    }

}

/* CONTRACTOR LIST */

.contractor-listing .contractor-item{
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    padding: 10px;
    border: 5px solid #AF81C9;
}

.contractor-listing .contractor-content{
    display: flex;
    align-items: center;
    gap: 20px;
}

.contractor-listing img.contractor-image{
    width: 150px;
}

.contractor-listing .estimate-btn{
    margin-left: auto;
    color: white;
    background-color: #F89A7E;
    padding: 10px 20px;
    border-radius: 12px;
    transition: transform 0.2s;
}

.contractor-listing .estimate-btn:hover, .zip-change-btn:hover{
    transform: scale(1.1);
    color: white;
    background-color: #AF81C9;
}

.contractor-listing .contractor_badge:not(:first-child){
    margin-left: 0px;
}

.contractor-listing .contractor_badge img{
    width: 25px;
}

.contractor-listing .contractor_badge{
    font-size: 10px;
}

.contractor-listing .contractor_badges{
    margin-top: 25px;
    justify-content: start;
}

.contractor-listing .contractor-rating{
    display: flex;
    align-items: center;
    font-size: 16px;
    gap: 5px;
}

.contractor-listing .contractor-rating img{
    width: 16px;
}

.contractor-listing .cta-container{
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.contractor-listing .contractor-content{
    position: relative;
}

.contractor-listing .contractor-content h3{
    margin: 0px;
}

.contractor-listing .contractor-content p{
    font-size: 15px;
    flex-wrap: wrap;
    display: flex;
    gap: 10px;
}

.contractor-listing .contractors-grid{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.zip-change-btn{
    color: white;
    background-color: #AF81C9;
    padding: 10px 20px;
    border-radius: 12px;
    transition: transform 0.2s;
    margin-bottom: 5px;
    display: inline-block;
    border: none;
}

.pro-link{
    font-size: 16px;
    font-weight: bold;
    color: #AF81C9;
}

.listing-footer{
    margin-top: 5px;
}

.simulated-search-wrapper{
    display: flex;
    margin-bottom: 10px;
    gap: 10px;
    align-items: center;
}

.simulated-search-select, .simulated-search-input{
    padding: 10px !important;
    border-radius: 10px !important;
    border: 2px solid #AF81C9 !important;
    color: gray !important;
}

.simulated-search-input{
    padding: 5px 10px !important;
}

.simulated-search-input{
    width: 30% !important;
}

.contractor-listing .contractor-content h3{
    display: flex;
    align-items: center;
    gap: 10px;
}

.contractor-listing .contractor-content h3 span{
    font-size: 16px;
    line-height: 16px;
}

.contractor-listing .verified{
    width: fit-content;
    display: flex;
    text-align: center;
    align-items: center;
    gap: 10px;
    background-color: #2ECD70;
    padding: 5px 10px;
    border-radius: 10px;
    color: white;
    font-size: 14px;
}

.contractor-listing .verified svg{
    fill: white;
    width: 12px;
}

.license-container{
    min-height: 14px;
    margin-bottom: 10px;
}

.simulated-search-select{
    flex: 1;
}

.contractor-listing span.service-badge{
    padding: 5px 10px;
    background-color: #979797;
    color: white;
    border-radius: 10px;
    margin-right: 10px;
}


@media (max-width: 768px) {

    .contractor-listing .contractor-content{
        flex-direction: column;
    }

    .contractor-listing img.contractor-image{
        width: 100%;
        height: 150px;
    }

    .contractor-listing .contractor-content h3{
        text-align: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .contractor-listing .cta-container{
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .contractor-listing .estimate-btn{
        margin: 0;
    }

    .contractor-listing .contractor_badges{
        margin-left: 0;
        justify-content: center;
    }

    .contractor-listing .contractor-content p{
        flex-wrap: wrap;
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .contractor-listing span.service-badge{
        margin-right: 0px;
    }

    .contractor-listing .license-container{
        text-align: center;
    }

    .contractor-listing .verified{
        position: absolute;
        top: 0;
        right: 0;
    }

}


/* Lead form CSS authored by Ruslan */
/* Call us Nav Bar header & footer */

.call-us-bar{
    background-color: #1F3B5B; 
    padding: 12px 20px; 
    border-radius: 0px; 
    display: none; /* As default, set display flex */
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    gap: 15px;
}
.call-us-text{
    color: white; 
    font-size: 24px; 
    font-weight: bold; 
    text-align: center; 
    flex-grow: 1;
}
.call-us-button{
    display: inline-flex; 
    margin:auto; 
    align-items: center; 
    gap: 8px; 
    background: none; 
    border: 2px solid white; 
    color: white; 
    padding: 10px 16px; 
    border-radius: 6px; 
    font-size: 16px; 
    font-weight: 500; 
    text-decoration: none; 
    white-space: nowrap; 
    flex-shrink: 0;
}

.call-us-button:hover {
    color: white !important;
    background: rgba(255,255,255,0.1); /* optional: subtle background on hover */
    border-color: #fff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .call-us-text {
        font-size: 18px;
    }
    .call-us-button {
        padding: 7px 10px;
    }
    .call-us-header {
        display : none !important; 
    }
}
/* End of call us navbar CSS */