/* ==========================================================================
   COMPONENTS
   --------------------------------------------------------------------------
   PURPOSE:
   This file defines REUSABLE UI COMPONENTS.
   Components are designed objects that appear in many places.

   Components are:
   - buttons
   - forms
   - cards
   - accordions
   - tabs
   - navigation items

   WHY THIS FILE EXISTS:
   - Centralises UI design decisions
   - Prevents duplication across sections
   - Makes redesigns faster and safer

   RULES:
   - Components should be reusable
   - Components may use tokens and utilities
   - Components should not depend on page context

   ASK YOURSELF:
   "Could this appear on multiple pages or sections?"
   If yes â†’ itâ€™s a component.

   EXAMPLES OF WHAT BELONGS HERE:
   .btn-primary
   .btn-secondary
   form inputs
   Gravity Forms styling
   accordion styles

   EXAMPLES OF WHAT DOES NOT BELONG HERE:
   Hero layout
   Services grid spacing
   Page-specific overrides
   ========================================================================== */



/* Logo */

/* site logo + mobile nav */

.site-logo {
  max-height: 60px;
  width: auto;
}

.mobile-logo {
  max-height: 50px;
  width: auto;
}

.home .header-phone {
  color: #fff;
}

.header-phone {
  font-weight: 600;
  font-family: var(--font-heading);
}

table td {
    padding: 0px!important;
    padding-right: 35px!important;
}


/* hamburger */
#hamburgler {
    background-color: transparent;
    border: 0px;
    width: 45px;
}

/* contact page */

.googlemap iframe {
  border-radius: var(--radius-sm);
}

.social img {
    height: 25px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */



.btn, input[type="submit"]  {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 18px;
  cursor: pointer;
  transition: all 500ms;
  border-radius: var(--btn-radius);
  text-decoration: none !important;
  display: inline-block;
  min-width: 160px;
}

.btn-primary, input[type="submit"]  {
  background-color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
  color: var(--brand-white);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="submit"]:active {
  background-color: var(--brand-secondary);
  border-color: var(--brand-secondary);
  color: var(--brand-white);
}

.btn-secondary {
  background-color: var(--brand-secondary);
  border: 1px solid var(--brand-secondary);
  color: var(--brand-white);
}

.btn-secondary:hover {
  background-color: var(--brand-primary);
  color: var(--brand-white);
  border: 1px solid var(--brand-primary);
}

.btn-outline-secondary {
  background-color: transparent;
  border: 1px solid var(--brand-secondary);
  color: var(--brand-secondary);
}

.btn-outline-secondary:hover {
  background-color: var(--brand-secondary);
  color: var(--brand-white);
  border: 1px solid var(--brand-secondary);
}

/* ==========================================================================
   FORMS & INPUTS
   ========================================================================== */
input[type="email"],
input[type="password"],
input[type="text"],
input[type="tel"],
textarea,
select {
  height: var(--input-height);
  padding: 5px 23px;
  border: 0px solid var(--input-border);
  width: 100%;
  box-sizing: border-box;
  font-family: var(--font-body);
  border-radius: 10px !important;
  background-color: var(--brand-header);
}

textarea {
  height: auto;
  padding-top: 20px;
  padding-bottom: 20px;
}

textarea.form-control { height: 150px !important; }

input[type="submit"] {
  
}

input[type="submit"]:hover {

}

/* Gravity Forms specifics */

h3.gsection_title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
    color: var(--brand-primary);
}


.gfield_label.gform-field-label {
  font-weight: 300!important;
  color: var(--brand-black);
}


/* Slick arrows â€“ hero carousel only */
.layout-hero-carousel .slick-prev {
  left: 25px;
}

.layout-hero-carousel .slick-next {
  right: 25px;
}

.layout-hero-carousel .slick-arrow {
  z-index: 9;
   width: 30px;
    height: 30px;
}

.slick-arrow:before {
  content: '';
    background-position: 50%;
    background-size: 13px 25px;
    background-repeat: no-repeat;
    display: block;
    width: 30px;
    height: 30px;
}


.slick-next:before {
  background-image: url('../images/sliderright.png');
}

.slick-prev:before {
  background-image: url('../images/sliderleft.png');
}





/* FAQ Layout */
.layout-faqs .faq-accordion .accordion-item {
  border: 0;
  border-bottom: px solid var(--border-subtle, #e6e6e6);
  
}

.layout-faqs .accordion-button {
  font-weight: 600;
  padding: 1.25rem;
  background: transparent;
  background-color: var(--brand-header);
  margin-bottom: 1rem;
  border-radius: var(--radius-sm)!important;
}

.layout-faqs .accordion-button:not(.collapsed) {
  color: var(--brand-secondary);
  box-shadow: none;
}

.layout-faqs .accordion-body {
  padding: 1.25rem;
}

.accordion-button::after {
    background-size: auto;
    background-position: 50%;
}


.answer-content {
    padding-left: 1.5rem;
    border-left: 1px solid var(--brand-black);
}

.accordion-button.collapsed::after {
    background-image: url(../images/plus.png);
}


.accordion-button:not(.collapsed)::after {
    background-image: url(../images/minus.png);
}

/* media queries 992 and up */

@media (min-width: 992px) {

  .site-logo {
    max-height: unset;
    width: auto;
}


}