.page-header .breadcrumbs {
    text-transform: capitalize !important;
    font-weight: 300 !important;
    font-family: 'Inter' !important;
}

.container {
    width: 1260px !important;
}

/* ============================================
   APPOINTMENT FORM — CF7 Custom Styles
   ============================================ */

.appt-form-wrapper {
  width: 100%;
  margin: 0 auto;
}

/* Row layout */
.appt-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.appt-two-col .appt-field-wrap {
  flex: 1;
}

.appt-full-col {
  width: 100%;
}

.appt-full-col .appt-field-wrap {
  width: 100%;
}

/* Field wrapper — relative for icon positioning */
.appt-field-wrap {
  position: relative;
}

/* Input fields */
.appt-form-wrapper input[type="text"],
.appt-form-wrapper input[type="tel"],
.appt-form-wrapper input[type="email"] {
  width: 100%;
  height: 52px;
  padding: 0 48px 0 18px;
  border: 1px solid #e0d8ce;
  border-radius: 8px;
  background-color: #fdfaf7;
  font-size: 14px;
  color: #444;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.appt-form-wrapper input[type="text"]:focus,
.appt-form-wrapper input[type="tel"]:focus,
.appt-form-wrapper input[type="email"]:focus {
  border-color: #c07a3a;
  box-shadow: 0 0 0 3px rgba(192, 122, 58, 0.12);
}

/* Textarea */
.appt-form-wrapper textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #e0d8ce;
  border-radius: 8px;
  background-color: #fdfaf7;
  font-size: 14px;
  color: #444;
  outline: none;
  resize: vertical;
  box-sizing: border-box;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.appt-form-wrapper textarea:focus {
  border-color: #c07a3a;
  box-shadow: 0 0 0 3px rgba(192, 122, 58, 0.12);
}

/* Placeholder color */
.appt-form-wrapper input::placeholder,
.appt-form-wrapper textarea::placeholder {
  color: #aaa;
  font-size: 13.5px;
}

/* Icon positioning */
.appt-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
}

.appt-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* CF7 span wrapper fix */
.appt-form-wrapper .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* Submit button */
.appt-submit-row {
  margin-top: 4px;
}

.appt-form-wrapper .wpcf7-submit {
  background-color: #3a2a1a;
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.15s ease;
}

.appt-form-wrapper .wpcf7-submit:hover {
  background-color: #4e3822;
  transform: translateY(-1px);
}

.appt-form-wrapper .wpcf7-submit:active {
  transform: translateY(0);
}

/* Validation error */
.appt-form-wrapper .wpcf7-not-valid-tip {
  font-size: 11.5px;
  color: #c0392b;
  margin-top: 4px;
  display: block;
}

.appt-form-wrapper .wpcf7-not-valid {
  border-color: #c0392b !important;
}

/* Response output */
.appt-form-wrapper .wpcf7-response-output {
  margin-top: 14px;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 13px;
  text-align: center;
  border: none;
}

/* Responsive — mobile */
@media (max-width: 600px) {
  .appt-row {
    flex-direction: column;
    gap: 12px;
  }
}


/* ============================================
   REQUEST A CALL BACK — CF7 Custom Styles
   ============================================ */

.callback-form-wrapper {
  width: 100%;
  margin: 0 auto;
}

/* Rows */
.cb-row {
  margin-bottom: 8px;
}

/* Label */
.cb-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.cb-required {
  color: #c0392b;
  margin-left: 2px;
}

/* Two column row */
.cb-two-col {
  display: flex;
  gap: 14px;
}

.cb-two-col .cb-col {
  flex: 1;
}

/* Field wrap */
.cb-field-wrap {
  width: 100%;
}

/* All inputs globally */
.callback-form-wrapper input,
.callback-form-wrapper input[type="text"],
.callback-form-wrapper input[type="tel"],
.callback-form-wrapper input[type="email"] {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #e2ddd6;
  border-radius: 8px;
  background-color: #fafaf8;
  font-size: 14px;
  color: #333;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.callback-form-wrapper input:focus,
.callback-form-wrapper input[type="text"]:focus,
.callback-form-wrapper input[type="tel"]:focus,
.callback-form-wrapper input[type="email"]:focus {
  border-color: #c07a3a;
  box-shadow: 0 0 0 3px rgba(192, 122, 58, 0.12);
  background-color: #fff;
}

/* Placeholder */
.callback-form-wrapper input::placeholder {
  color: #b0a89e;
  font-size: 13.5px;
}

/* Select dropdown wrapper */
.cb-select-wrap {
  position: relative;
}

.cb-select-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #888;
  pointer-events: none;
}

.callback-form-wrapper select {
  width: 100%;
  height: 48px;
  padding: 0 42px 0 16px;
  border: 1px solid #e2ddd6;
  border-radius: 8px;
  background-color: #fafaf8;
  font-size: 14px;
  color: #b0a89e;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  box-sizing: border-box;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.callback-form-wrapper select:focus {
  border-color: #c07a3a;
  box-shadow: 0 0 0 3px rgba(192, 122, 58, 0.12);
  background-color: #fff;
}

.callback-form-wrapper select option:not([value=""]) {
  color: #fff;
}

/* CF7 span wrapper fix */
.callback-form-wrapper .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* ── CAPTCHA ROW ── */
.cb-captcha-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cb-captcha-question {
  min-width: 80px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0ece6;
  border: 1px solid #e2ddd6;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  flex-shrink: 0;
}

/* Captcha answer span wrapper — takes remaining space */
.cb-captcha-row .wpcf7-form-control-wrap {
  flex: 1;
  display: block;
  width: 100%;
}

/* Captcha input — override everything cleanly */
.cb-captcha-row .wpcf7-form-control-wrap input,
.cb-captcha-row .wpcf7-form-control-wrap input[type="text"] {
  display: block;
  width: 100% !important;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #e2ddd6;
  border-radius: 8px;
  background-color: #fafaf8;
  font-size: 14px;
  color: #333;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.cb-captcha-row .wpcf7-form-control-wrap input:focus,
.cb-captcha-row .wpcf7-form-control-wrap input[type="text"]:focus {
  border-color: #c07a3a;
  box-shadow: 0 0 0 3px rgba(192, 122, 58, 0.12);
  background-color: #fff;
}

.cb-captcha-row .wpcf7-form-control-wrap input::placeholder {
  color: #b0a89e;
}

/* Submit button */
.cb-submit-row {
  margin-top: 6px;
}

.callback-form-wrapper .wpcf7-submit {
  width: 100%;
  height: 52px;
  background-color: #2e2218;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.4px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.15s ease;
}

.callback-form-wrapper .wpcf7-submit:hover {
  background-color: #4a3828;
  transform: translateY(-1px);
}

.callback-form-wrapper .wpcf7-submit:active {
  transform: translateY(0);
}

/* Validation errors */
.callback-form-wrapper .wpcf7-not-valid-tip {
  font-size: 11.5px;
  color: #c0392b;
  margin-top: 4px;
  display: block;
}

.callback-form-wrapper .wpcf7-not-valid {
  border-color: #c0392b !important;
}

/* Response output */
.callback-form-wrapper .wpcf7-response-output {
  margin-top: 14px;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 13px;
  text-align: center;
  border: none;
}

/* Responsive */
@media (max-width: 480px) {
  .cb-two-col {
    flex-direction: column;
    gap: 14px;
  }
}

.elementor-1942 .elementor-element.elementor-element-19e7fda9 .ekit-form form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]), .elementor-1942 .elementor-element.elementor-element-19e7fda9 .ekit-form form textarea, .elementor-1942 .elementor-element.elementor-element-19e7fda9 .ekit-form form select {
    font-size: 14px;
    
}


#back-to-top.show {
    background-color: #38332E;
    border-radius: 50px;
    opacity: 1;
    visibility: visible;
    bottom: 20px;
}


/* Contact Us form cSS */

/* Respond via Radio Row */
.cb-respond-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.cb-respond-label {
  color: #cde0dc;
  font-size: 13px;
  font-weight: 500;
  margin-right: 4px;
}

.cb-radio-option {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #cde0dc;
  font-size: 13px;
  cursor: pointer;
}

.cb-radio-option input[type="radio"] {
  accent-color: #e8845a;
  width: 15px;
  height: 15px;
  cursor: pointer;
}

/* Checkboxes */
.cb-consent-row {
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.cb-consent-row input[type="checkbox"] {
  accent-color: #e8845a;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

.cb-consent-row span {
  color: #a0c4be;
  font-size: 12px;
  line-height: 1.5;
}

.cb-consent-row span a {
  color: #e8845a;
  text-decoration: underline;
}

.page-header .page-title {
    width: 38%;   
}

@media (max-width: 768px) {
    .page-header .page-title {
        width: 100%;
     
    }
}


.pybanner-btn.pybanner-btn-1 {
    position: relative;
}

.pybanner-btn.pybanner-btn-1::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid #E76E50;
    transform: scale(0);
    opacity: 1;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.pybanner-btn.pybanner-btn-1:hover::before {
border-radius:8px;
    transform: scale(1);
}

.pybanner-btn.pybanner-btn-2 {
    position: relative;
}

.pybanner-btn.pybanner-btn-2::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid #E76E50;
    transform: scale(0);
    opacity: 1;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.pybanner-btn.pybanner-btn-2:hover::before {
    border-radius: 8px;
    transform: scale(1);
}


.animation-btn {
   position: relative;        /* important */
    display: inline-block;     /* important */
   
   
    transition: 0.3s ease;
    width: 160px;
    color: #fff;
    border-radius: 7px;
           /* prevents overflow */
    z-index: 1;
}

.animation-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    z-index: -1;
	 opacity: 1;
    border-radius:9px;
	background: #000;
    transform: scale(0);
    transform-origin: center;
    transition: transform 0.4s ease;
	height:47px;
	top:9px;
}

.animation-btn:hover::before {
     transform: scale(1);
	left:0;
}

.animation-btn input[type="submit"] {
    position: relative;
    z-index: 2;
}
a.link-text:visited
{
	color:#ffffff99;
}
a.link-text
{
	color:#ffffff99;
}
a.link-text:hover
{
	color:#E76E50;
}

a.link-text1
{
	color:#E76E50;
}
a.link-text1:visited
{
	color:#E76E50;
}
a.link-text1:hover
{
	color:#5f5f5f !important;
}

a.link-text2
{
	color:#E76E50;
}
a.link-text2:visited
{
	color:#E76E50;
}
a.link-text2:hover
{
	color:#ffffff !important;
}

a.link-text3
{
	color:#fff;
}
a.link-text3:hover
{
	color:#E76E50;
}

.area-we-serve-bxx1
{
	color:#E76E50;
}
.area-we-serve-bxx1:hover
{
	color:#5f5f5f !important;
}

span.strike
{
	text-decoration:line-through;
	
}
.abbr{
  margin-left:6px;
}

.vimeo-banner {
position:relative;
width:100%;
height:100vh;
overflow:hidden;
}

/* Desktop */
.vimeo-banner iframe{
position:absolute;
top:50%;
left:50%;
width:177.78vh;
height:100vh;
transform:translate(-50%,-50%);
pointer-events:none;
}

/* Mobile */
@media (max-width:768px){

.vimeo-banner{
height:70vh;
}

.vimeo-banner iframe{
width:100vw;
height:56.25vw;
min-height:100%;
min-width:177.77%;
}

}

.mmenu-wrapper .mobile_mainmenu li.current-menu-item > a
{
	color:#e76e50;
}


/*google css*/

.google-text {
  display: block;
  flex-direction: column;
  line-height: 1.2;
}

.review-text {
  font-size: 15px;
  color: #000;
  font-weight: 500;
  margin-top: 3px;
}
 .google-icon {
  margin-right: 7px;
  font-size: 24px;
  font-weight: bold;
  position: relative;
  display: inline-block;
}

/* Google icon colors */
.google-icon::before {
  content: "G";
  background: conic-gradient(
    #4285F4 0% 25%, 
    #EA4335 25% 50%, 
    #FBBC05 50% 75%, 
    #34A853 75% 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: bold;
}

.google-badge {
  position: fixed;
  bottom: 6%;
  left: 4px;
  background: #fff;
  padding: 3px 16px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1),
              0 8px 20px rgba(0,0,0,0.15);
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: bold;
  color: #000;
  z-index: 9;
  width: 220px;
  height: 70px;
  border: 1px solid #b9b0b0;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.google-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.google-badge span {
  color: #FFA515; /* yellow star color */
  font-size: 22px;
}
@media only screen and (max-width: 768px) {
  .google-badge {
  position: fixed;
  bottom: 11%;
  left: 4px;
  background: #fff;
  padding: 3px 16px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1),
              0 8px 20px rgba(0,0,0,0.15);
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: bold;
  color: #000;
  z-index: 9;
  width: 220px;
  height: 70px;
  border: 1px solid #b9b0b0;
  border-radius: 6px;
  transition: all 0.3s ease;
}
}

h3.elementor-icon-box-title a {
    color: #fff !important;
}

.wpcf7 form .wpcf7-response-output {
   
    color: #fff;
}


.area-we-serve-bx .elementor a {
	color:#fff!important;
}

.post-button {
    text-align: center !important;
    width: 111px !important;
}

a[href^="mailto"] {
  pointer-events: auto;
}

input.wpcf7-form-control.wpcf7-text {
    border-radius: 50px !important;
    border: 1px solid #999 !important;
}
.ekit-wid-con .ekit-form form textarea {
	    border-radius: 30px !important;
    border: 1px solid #999 !important;
}
.cb-submit-row-1 {
    width: 14%;
    height: 40px;
}

.check-1 {
    margin-top: 8px !important;
}
.cb-consent-row {
    margin-bottom: 8px;
}
.cb-submit-row-1 input.wpcf7-form-control.wpcf7-submit.has-spinner {
    font-size: 16px !important;
    padding: 6px 30px !important;
}
 .elementor-17720 .elementor-element.elementor-element-1a51349 {
    position: fixed !important;
    z-index: 99999 !important;
    width: 100%;
}
.elementor-17746 .elementor-element.elementor-element-1a51349{
    position: fixed !important;
    z-index: 99999 !important;
    width: 100%;
}
@media only screen and (max-width: 768px) {
.cb-submit-row-1 {
    width: 40%;
}
	p.form-desc {
    font-size: 15px;
}
}

.elementor-17746 .elementor-element.elementor-element-d6dc6b8 .ekit-form form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"])
{
	font-size: 13px;
}

.elementor-17720 .elementor-element.elementor-element-d6dc6b8 .ekit-form form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"])
{
	font-size: 13px;
}

.elementor-17720 .elementor-element.elementor-element-d6dc6b8 .ekit-wid-con .ekit-form form textarea {
    font-size: 13px;
}

.elementor-17746 .elementor-element.elementor-element-d6dc6b8 .ekit-wid-con .ekit-form form textarea {
    font-size: 13px;
}
.elementor-17746 .elementor-element.elementor-element-d6dc6b8 .ekit-form form input[type="submit"] {
    color: #ffffff;
    background-color: #e76e50 !important;
    border-radius: 50px !important;
}

.elementor-17746 .elementor-element.elementor-element-d6dc6b8 .ekit-form form input[type="submit"]:hover {
    background-color: #000000 !important;
    color: #ffffff;
}
.elementor-17720 .elementor-element.elementor-element-d6dc6b8 .ekit-form form input[type="submit"]{
    color: #ffffff;
    background-color: #e76e50 !important;
    border-radius: 50px !important;
}
.elementor-17720 .elementor-element.elementor-element-d6dc6b8 .ekit-form form input[type="submit"]:hover {
    background-color: #000000 !important;
    color: #ffffff;
}



@media only screen and (max-width:767px){

    .mobile-sticky-bar{
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 999999 !important;
        margin: 0 !important;
    }

    .mobile-sticky-bar .elementor-container{
        display: flex !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .mobile-sticky-bar .elementor-column{
        width: 50% !important;
    }

    .mobile-sticky-bar .elementor-button{
        width: 100% !important;
        border-radius: 0 !important;
        text-align: center !important;
        padding: 16px 10px !important;
    }

    body{
       
    }
}
.cardn
{
	    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    min-height: 230px;
}
.bk-cons
{
	 margin-top: auto; /* This is the key for pushing the button to the bottom */
}


.popup-modal{
    display:none;
    position:fixed;
    z-index:99999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.75);
    justify-content:center;
    align-items:center;
    padding:20px;
    box-sizing:border-box;
}

/* Popup Content */
.popup-content{
    position:relative;
    max-width:800px;
    width:100%;
    border-radius:14px;
    overflow:hidden;
    animation:popupFade 0.3s ease;
	    margin:auto;

}

/* Images */
.desktop-img,
.mobile-img{
    width:100%;
    display:block;
}

/* Hide mobile image initially */
.mobile-img{
    display:none;
}

/* Mobile View */
@media(max-width:767px){

    .desktop-img{
        display:none;
    }

    .mobile-img{
        display:block;
    }

}

/* Close Button */
.close-popup{
    position:absolute;
    top:12px;
    right:23px;
    color:#fff;
    font-size:40px;
    line-height:1;
    cursor:pointer;
    z-index:10;
}

/* Animation */
@keyframes popupFade{
    from{
        transform:scale(0.85);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

.mmenu-toggle button
{
	padding:5px !important;
}