/*
 Theme Name:   Bootscore Child
 Description:  Bootscore Child Theme
 Author:       Bootscore
 Author URI:   https://bootscore.me
 Template:     bootscore
 Version:      6.0.0
 Requires at least: 5.0
 Tested up to: 6.6
 Requires PHP: 7.4
 License: MIT License
 License URI: https://github.com/bootscore/bootscore-child/blob/main/LICENSE
 Text Domain:  bootscore
*/

/* 
All style editing is done via /assets/scss/_bootscore_custom.scss
*/

:root {
  --blue:        #2187da;
  --blue2:       #1f81d2;
  --darkblue:    #1869AA;
  --darkblue2:   #006172;
  --lightblue:   #bee9ff;
  --lightblue2:  #f4faff;
  --lightblue3:  #e7f6ff;
  --green:       #446900;
  --green2:      #819f49;
  --lightgreen:  #a3e635;
  --lightgreen2: #a9cc61;
  --darkgreen:   #375c15;
  --white:       #ffffff;
  --black:       #000000;
  --body:        #0f172a;
  --mutedbg:     #f6fbff;

  --tp-font-family-base: "Plus Jakarta Sans", Arial, sans-serif;
  --tp-section-pad-y: clamp(3rem, 5vw, 5rem);
  --tp-radius-lg: 1rem;
  --tp-font-size-body: 1rem;
  --tp-font-size-lead: 1.125rem;
  --tp-font-size-h1: clamp(2rem, 4vw, 3.4rem);
  --tp-font-size-h2: clamp(1.5rem, 2.6vw, 2.4rem);
  --bs-primary: var(--blue);
  --bs-primary-rgb: 33, 135, 218;
  --bs-link-color: var(--blue);
  --bs-link-hover-color: var(--darkblue);
}

body {
  font-family: var(--tp-font-family-base) !important;
  font-size: var(--tp-font-size-body);
  color: var(--body);
}

h2 {
  font-size: var(--tp-font-size-h2);
}

h3 {
  font-size: 20px;
}

p {
  font-size: 16px;
  font-weight: 600;
}

.btn-cta {
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-decoration: none;
  display: inline-block;
  transition: all .5s;
}

.btn-cta:hover {
  transition: all .5s;
}

.btn-cta-green {
  background: linear-gradient(90deg, var(--green) 0%, var(--lightgreen) 100%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-cta-darkgreen {
  background: var(--darkgreen);
  color: var(--white);
}

.btn-cta-darkgreen:hover {
  background: var(--green2);
  color: var(--white);
}

.btn-cta-lightgreen2 {
	background-color: var(--green2);
    color: var(--white);
}

.btn-cta-lightgreen2:hover {
	background-color: var(--lightgreen2);
    color: var(--white);
}

.btn-cta-blue2 {
  background: linear-gradient(90deg, var(--blue2) 0%, var(--lightblue) 100%);
  background: var(--blue2);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-cta-blue2:hover {
  background-color: var(--darkblue);
  color: var(--white);
}

.btn-cta-green:hover,
.btn-cta-green:focus {
  background: linear-gradient(90deg, #3b5b00 0%, #8fd11a 100%);
  color: var(--white);
}

.btn-cta-lightblue {
  background-color: var(--lightblue);
  color: var(--darkblue2);
}

.btn-cta-outline {
  background-color: transparent;
  border: 2px solid var(--darkgreen);
  color: var(--darkgreen);
  transition: all .5s;
}

.btn-cta-outline:hover,
.btn-cta-outline:focus {
  color: var(--darkgreen);
  transition: all .5s;
}

.py-section {
  padding-top: var(--tp-section-pad-y);
  padding-bottom: var(--tp-section-pad-y);
}

.section-tint {
  background: var(--lightblue);
}

.display-title {
  font-size: var(--tp-font-size-h1);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-title {
  font-size: var(--tp-font-size-h2);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.lead {
  font-size: var(--tp-font-size-lead);
}

.hero-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--lightblue2) 100%);
}

.btn-primary {
  --bs-btn-bg: var(--blue);
  --bs-btn-border-color: var(--blue);
  --bs-btn-hover-bg: var(--darkblue);
  --bs-btn-hover-border-color: var(--darkblue);
  --bs-btn-active-bg: var(--darkblue);
  --bs-btn-active-border-color: var(--darkblue);
}

.btn-outline-primary {
  --bs-btn-color: var(--blue);
  --bs-btn-border-color: var(--blue);
  --bs-btn-hover-bg: var(--blue);
  --bs-btn-hover-border-color: var(--blue);
  --bs-btn-active-bg: var(--darkblue);
  --bs-btn-active-border-color: var(--darkblue);
}

.text-primary {
  color: var(--blue) !important;
}

.text-green {
  color: var(--green) !important;
}

.text-darkgreen {
  color: var(--darkgreen) !important;
}

.text-blue2 {
  color: var(--blue2) !important;
}

.bg-lightblue {
  background-color: var(--lightblue);
}

.bg-lightblue2 {
  background-color: var(--lightblue2);
}

.bg-lightblue3 {
  background-color: var(--lightblue3);
}

.bg-green2 {
  background-color: var(--green2);
}

.eyebrow {
  background-color: var(--blue2);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: bold !important;
}

.hero-eyebrow {
	margin-bottom: 20px;
    background-color: #f4f4f4;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #e3e3e3;
    max-width: 335px;
}

.hero-eyebrow img {
	max-width: 50px;
}

.hero-eyebrow span {
	font-weight: bold;
    margin-left: 10px;
    text-transform: uppercase;
}

.text-success {
  color: var(--green) !important;
}

.row-two img.me-2 {
  position: relative;
  top: -2px;
}

#why-turf-patrol .card-body p {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

#why-turf-patrol .card-body p img {
  flex: 0 0 25px;
  margin-top: 0.1rem;
}

.badge.text-bg-light {
  background-color: var(--white) !important;
  border-color: rgba(33, 135, 218, 0.3) !important;
  color: var(--body) !important;
}

.card,
.gallery-image,
.form-control,
.form-select {
  border-radius: var(--tp-radius-lg);
}

.card {
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.card-body {
  padding: 2rem !important;
}

.card-body .small.stars {
  font-size: 20px !important;
  color: var(--darkgreen) !important;
}

#why-turf-patrol .card-body img {
  width: 25px;
  height: 25px;
}

.service-card .card-img-top {
  background-color: var(--lightblue);
  border-top-left-radius: var(--tp-radius-lg);
  border-top-right-radius: var(--tp-radius-lg);
}

.before-after {
  --pos: 50%;
  position: relative;
  overflow: hidden;
  border-radius: var(--tp-radius-lg);
  aspect-ratio: 4 / 3;
  background: #d7ecf8;
}

.before-after__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.before-after__after-wrap {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 var(--pos));
}

.before-after__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 2px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  transform: translateX(-1px);
}

.before-after__label {
  position: absolute;
  top: 1rem;
  z-index: 2;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.9);
  color: var(--body);
}

.before-after__label--before {
  left: 1rem;
}

.before-after__label--after {
  right: 1rem;
}

.before-after__range {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  width: auto;
  accent-color: var(--green);
}

.book-section {
/*   background-color: var(--lightblue); */
}

.book-steps {
  padding-top: 2rem;
}

.step-item__num {
  width: 2.2rem;
  height: 2.2rem;
  min-width: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  color: var(--darkgreen);
  background: var(--white);
}

.step-item p {
  color: rgba(15, 23, 42, 0.78);
  color: var(--white);
}

.book-form-card {
  border-radius: 1.8rem !important;
}

.book-form-title {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 800;
}

.form-label-caps {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(15, 23, 42, 0.55);
  font-weight: 700;
}

.form-control-soft {
  background-color: #e7f6ff;
  border: 1px solid transparent;
  color: var(--body);
}

.form-control-soft:focus {
  background-color: #f2fbff;
  border-color: rgba(0, 97, 114, 0.35);
  box-shadow: 0 0 0 0.2rem rgba(33, 135, 218, 0.12);
}

.contact-highlight__panel {
  background: var(--darkgreen);
  border-radius: 2rem;
  padding: clamp(1.5rem, 3vw, 3rem);
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.08);
}

.contact-highlight__title {
  /* font-size: clamp(2rem, 4.2vw, 3.25rem); */
  line-height: 1;
}

.contact-highlight__serving {
/*   color: var(--blue2); */
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-highlight__icon {
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--green2);
}

.contact-highlight__panel a {
  color: var(--white);
  text-decoration: none;
}

.contact-highlight__panel a:hover {
  color: var(--white);
}

.contact-highlight__image {
  border-radius: 1.5rem;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.16);
}

.site-footer {
  background: var(--white);
}

.site-footer p {
  font-weight: 500;
}

.site-footer__social {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--darkgreen);
  color: var(--white);
  text-decoration: none;
  transition: all .5s;
}

.site-footer__social:hover {
  color: var(--white);
  transition: all .5s;
}

footer h3 {
  font-size: 18px;
}

.site-footer__quicklinks {
  flex-wrap: nowrap !important;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 0.25rem;
}

.site-footer__quicklinks li {
  margin-bottom: 5px;
}

.site-footer__quicklinks a,
footer .col-lg-4 ul.list-unstyled li {
  color: var(--body);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
}

footer .list-unstyled a {
  color: var(--black);
  transition: all .5s;
}

.site-footer__quicklinks a:hover {
  color: var(--blue2);
  transition: all .5s;
}

.custom-header__brand img {
  height: 34px;
  width: auto;
  display: block;
}

.custom-header__links .nav-link {
  color: var(--body);
  font-weight: 600;
  font-size: 0.92rem;
  padding-left: 0.9rem;
  padding-right: 0.9rem;
}

.custom-header__links .nav-link:hover {
  color: var(--darkblue2);
}

.custom-header__cta {
  font-size: 0.88rem !important;
  padding: 0.55rem 1.2rem;
}

.copyright,
.policy-link,
.footer-description {
  color: #424936;
  text-decoration: none;
  font-size: 13px;
}

.top-button {
  background-color: var(--darkgreen);
}

.pricing-card {
  border-radius: 1.5rem !important;
}

.pricing-card--featured {
  border: 2px solid var(--darkgreen) !important;
  position: relative;
}

.pricing-card-right h3 {
  margin-top: 40px;
}

.pricing-top-badge {
  display: inline-block;
  max-width: 150px;
  margin-bottom: 1rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--darkgreen);
  color: var(--white);
}

/* .pricing-card ul li::before {
  content: "\2713";
  color: var(--green);
  margin-right: 0.5rem;
} */

.pricing-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pricing-card ul li i {
  flex: 0 0 auto;
  line-height: 1.5;
  margin-top: 2px;
  color: var(--darkgreen);
}

.fa-check {
  color: var(--blue2);
}

.pricing-subtext {
  color: rgba(15, 23, 42, 0.75);
  font-size: 0.95rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0;
}

.pricing-price__amount {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
  color: var(--darkgreen);
}

.pricing-price__unit {
  font-size: 1rem;
  font-weight: 600;
  margin-left: 0.25rem;
  white-space: nowrap;
}

a {
  color: var(--blue);
}

a:hover {
  color: var(--darkblue);
}

.pricing-title {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 800;
}

#before-after {
	background-color: #f4ffee !important;
}

#testimonials .card {
	background-color: #f4ffee;
}

.modal-dialog {
	max-width: 500px;
}

.modal-content {
	padding: 25px;
	border-radius: 40px;
}

.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(4px);
}

.mobile-cta .btn-cta {
    font-size: 13px !important;
    text-align: center;
    padding: 12px 5px;
    border-radius: 10px;
    line-height: 13px;
}

/* ***** PRIVACY POLICY ***** */

.privacy-policy-content {
  padding: 48px;
}

.privacy-policy-content h2 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 700;
}

.privacy-policy-content p {
  margin-bottom: 16px;
}

@media (max-width: 767.98px) {
  .privacy-policy-content {
    padding: 28px;
  }

  .privacy-policy-content h2 {
    font-size: 24px;
  }
}

/* ***** TERMS OF SERVICE$ ***** */

.terms-content {
  padding: 48px;
}

.terms-content h2 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 700;
}

.terms-content p {
  margin-bottom: 16px;
}

@media (max-width: 767.98px) {
  .terms-content {
    padding: 28px;
  }

  .terms-content h2 {
    font-size: 24px;
  }
}

/* ***** ACCESSIBILITY STATEMENT ***** */

.legal-page-content {
  padding: 48px;
}

.legal-page-content h2 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 700;
}

.legal-page-content p {
  margin-bottom: 16px;
}

@media (max-width: 767.98px) {
  .legal-page-content {
    padding: 28px;
  }

  .legal-page-content h2 {
    font-size: 24px;
  }
}

/* ***** MEDIA QUERIES ***** */

@media (max-width: 991px) {
	
	.container {
		max-width: 95% !important;
	}
	
}

@media (max-width: 767px) {
  body {
    padding-bottom: 4.5rem;
  }

  .display-title {
    font-size: 26px;
  }

  .btn-cta {
    padding: 10px 20px;
  }

  footer {
    margin-bottom: 40px;
  }

  .top-button {
    display: none !important;
  }

}
