/* Contact CTA Section */
.sbr-contact-cta {
   background: url('/img/homepage-bg.jpg');
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   color: white;
   padding: 60px 0;
   text-align: center;
   position: relative;
   overflow: hidden;
}

.sbr-contact-cta::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background-color: rgba(0, 0, 0, 0.8);
   z-index: 1;
}

.sbr-contact-cta h2 {
   font-size: 2.2rem;
   margin-bottom: 1.5rem;
   position: relative;
   z-index: 2;
}

.sbr-phone-number {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   font-size: 2.5rem;
   color: #6acc5b;
   text-decoration: none;
   font-weight: bold;
   transition: color 0.3s ease;
   position: relative;
   z-index: 2;
}

.sbr-phone-number i {
   font-size: 2rem;
}

.sbr-phone-number:hover {
   color: #5bb84a;
}


/* Contact CTA Responsive Design */

/* Tablet Styles */
@media (max-width: 1024px) {
   .sbr-contact-cta {
       padding: 50px 0;
   }
   
   .sbr-contact-cta h2 {
       font-size: 2rem;
       margin-bottom: 1.25rem;
   }
   
   .sbr-phone-number {
       font-size: 2.2rem;
   }
   
   .sbr-phone-number i {
       font-size: 1.8rem;
   }
}

/* Mobile Styles */
@media (max-width: 768px) {
   .sbr-contact-cta {
       padding: 40px 20px;
   }
   
   .sbr-contact-cta h2 {
       font-size: 1.75rem;
       margin-bottom: 1rem;
   }
   
   .sbr-phone-number {
       font-size: 1.8rem;
       gap: 0.375rem;
   }
   
   .sbr-phone-number i {
       font-size: 1.5rem;
   }
}