/* Prevent horizontal scroll on mobile */
html,
body {
  overflow-x: hidden;
  touch-action: pan-y;
  /* Allows vertical scrolling only */
}

/* Optional: prevent pinch-zoom (sometimes causes weird movement) */
body {
  overscroll-behavior-x: none;
}

a:hover {
  color: #FD9C65;
}

/* comment sections */
.fullwidth_comment_wrapper.sidebar {
  display: none !important;
}

.team-inner .post-overlay-items>* ul.nav.social-icons {
  display: inline-block;
  margin: 0px 0px 0px -10px;
}

/* Hide header topbar on tablet and mobile */
@media (max-width: 1024px) {
  .header-topbar {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}

/* Hide Dog Service Section */
#float-parallax-189539733 {
  display: none !important;
}

/* Hide Belt Image */
#float-parallax-194694429 {
  display: none !important;
}

/* Hide Before Footer Parallax Sections */
#float-parallax-210918452,
#float-parallax-210918453 {
  display: none !important;
}

/* Footer Cleanup  */
.site-footer .site-footer-wrap .footer-widgets-wrap::before,
.site-footer .site-footer-wrap .footer-widgets-wrap::after {
  display: none !important;
}

.section-title-wrapper .title-wrap>*.sub-title:after {
  display: none;
}

/* About us section */
@media (max-width: 1024px) {

  /* Target parent container that holds both sections */
  .elementor-container {
    display: flex;
    flex-direction: column;
  }

  /* Move About Us section before Consumer */
  .elementor-element.elementor-element-a21a234 {
    /* About Us section ID */
    order: 1;
  }

  .elementor-element.elementor-element-d133939 {
    /* Section 1 */
    order: 2;
  }

  .elementor-element.elementor-element-fbd6d70 {
    /* Section 2 */
    order: 3;
  }
}

/* Newsletter form */
.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-row {
  display: flex;
  align-items: center;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  overflow: hidden;
  max-width: 400px;
  width: 100%;
  height: 60px;
}

.form-col.email-field {
  flex: 1;
}

.form-col.email-field input[type="email"] {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  padding: 12px 20px;
  font-size: 15px;
}

.form-col.email-field input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-col.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  margin-right: 8px;
  margin-top: -15px;
}

.newsletter-submit {
  background-color: #0d0d0d;
  border: 1px solid #ff6a00;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-submit:hover {
  background-color: #fff;
  border-color: #ff6a00;
}

.newsletter-submit i {
  color: #fff;
  font-size: 18px;
  transition: color 0.3s ease;
}

.newsletter-submit:hover i {
  color: #0d0d0d;
}



@media (max-width: 768px) {
    .header-titles > a.site-link {
        margin-right: -30px;
    }
}

/* BIG Appointment Button */
.navbar .cea-button-link {
    background: #f88f4f;
    color: #fff !important;
	padding: 18px 25px !important;
}


/* Apply only inside #whychooseuscon */
#whychooseuscon .feature-box-wrapper .media {
    display: flex;
    align-items: center;        /* vertically center */
    gap: 20px;                  /* space between image & text */
}

/* Left: icon container */
#whychooseuscon .media-icon-part {
    flex: 0 0 70px;             
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Image size */
#whychooseuscon .cea-feature-box-img img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    display: block;
}

/* Text block on the right */
#whychooseuscon .media-body {
    flex: 1;
    text-align: left;
}

/* Title spacing (no font-size changes) */
#whychooseuscon .feature-box-title {
    margin: 0 0 6px;
}

/* Content spacing (no font-size changes) */
#whychooseuscon .fbox-content {
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 767px) {
    #whychooseuscon .feature-box-wrapper .media {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    #whychooseuscon .media-body {
        text-align: center;
    }
}

/* Footer changes */
/* =============================
   DESKTOP – Align Footer Columns
   ============================= */
.cus-middle-widget-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* Titles alignment */
.cus-middle-widget-wrap .widgettitle,
.cus-middle-widget-wrap .widget-title {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 20px;
  line-height: 1.3;
}

/* Fix Quicklinks padding */
.cus-middle-widget-wrap .widget_nav_menu .widget-content {
  padding-top: 0;
}

/* Prevent Gutenberg override */
.cus-middle-widget-wrap.is-layout-flex {
  justify-content: space-between !important;
  align-items: flex-start;
}

/* =============================
   TABLET – iPad / Medium screens
   ============================= */
@media (max-width: 1024px) and (min-width: 768px) {
  .cus-middle-widget-wrap {
    gap: 25px;
  }

  .cus-footer-1 {
    flex-basis: 35% !important;
  }

  /* First hide all <br> */
  .cus-footer-1 br {
    display: none !important;
  }

  /* Now show only first 2 <br> */
  .cus-footer-1 br:nth-of-type(-n+2) {
    display: inline !important;
  }
}

/* =============================
   MOBILE – Stack columns + hide <br>
   ============================= */
@media (max-width: 767px) {
  /* Stack columns */
  .cus-middle-widget-wrap {
    flex-direction: column;
    gap: 30px;
  }

  .cus-middle-widget-wrap > .wp-block-column {
    flex-basis: 100% !important;
    width: 100%;
  }

  /* Hide ALL <br> on mobile */
  .cus-footer-1 br {
    display: none !important;
  }
}


/* Faqs */
/* --- Accordion Header --- */
.e-n-accordion-item summary.e-n-accordion-item-title {
    padding: 18px 0 !important;
    border: none !important;
    background: transparent !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* Text style */
.e-n-accordion-item-title-text {
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

/* Orange for open header text (Screenshot 2) */
.e-n-accordion-item[open] .e-n-accordion-item-title-text {
    color: #f79c3d !important;
}

/* --- Chevron Icon --- */
.e-n-accordion-item-title-icon svg {
    width: 20px !important;
    height: 20px !important;
    fill: #4a4a4a !important;
}

/* Icon turns orange when open */
.e-n-accordion-item[open] .e-n-accordion-item-title-icon svg {
    fill: #f79c3d !important;
}

/* --- Content Box Style (opened area) --- */
.e-n-accordion-item[open] > div[role="region"] {
    padding: 20px 0 10px 0 !important;
    border: none !important;
    background: transparent !important;
}

/* Remove card box from nested structure */
.cea-accordion, 
.cea-accordion-content,
.card,
.card-body {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
}

/* Body text inside open accordion */
.e-n-accordion-item[open] p {
    font-size: 16px !important;
    line-height: 26px !important;
    color: #555 !important;
    margin: 0 !important;
}

body.mobile-menu-active .mobile-menu-floating {
    left: -110px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    body.mobile-menu-active .mobile-menu-floating {
        left: -290px;
        width: 80%;
    }
}

@media (max-width: 987px) {
  .header-titles {
      text-align: center;
      margin-left: 50px;
      margin-bottom: 20px;
  }}