/* ============================================================
   Caliber Turf Company — /trade/ page styles
   Rebuilt from Elementor post-222 + templates 618 (header) / 787 (footer).
   Standalone microsite look: does NOT use the Green Guard header/footer.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #1B1B1B;
  background: #fff;
}

img { max-width: 100%; height: auto; border: 0; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, p { margin: 0; }

.ct-inner { max-width: 1600px; margin: 0 auto; width: 100%; }

/* ---------- Buttons (Elementor button defaults + page overrides) ---------- */
.ct-btn {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  padding: 12px 24px;
  border-radius: 3px;
  color: #fff;
  fill: #fff;
  text-align: center;
  transition: all .3s;
  cursor: pointer;
}
.ct-btn--orange { background-color: #E04F1B; }
.ct-btn--outline {
  background-color: transparent;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
}
.ct-btn--outline:hover,
.ct-btn--outline:focus { background-color: #FFFFFF; color: #10551F; }

/* ---------- Header (template 618) ---------- */
.ct-header { background-color: #232323; padding: 2rem 0; }
.ct-header__inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.ct-logo { display: block; width: 23%; max-width: 23%; text-align: center; font-size: 0; }
.ct-logo img { max-width: 100%; height: auto; }

.ct-nav ul { list-style: none; margin: 0; padding: 0; display: flex; }
.ct-nav a {
  display: block;
  padding: 13px 20px;
  color: #FFFFFF;
  fill: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
}
.ct-nav a:hover { color: #FFFFFF; }

.ct-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  padding: .25em;
  font-size: 22px;
  border: 0;
  border-radius: 3px;
  background-color: rgba(255,255,255,.1);
  color: #fff;
  cursor: pointer;
}
.ct-menu-toggle svg { width: 1em; height: 1em; fill: currentColor; display: block; }
.ct-menu-toggle .ct-icon-close { display: none; }
.ct-menu-toggle[aria-expanded="true"] .ct-icon-open { display: none; }
.ct-menu-toggle[aria-expanded="true"] .ct-icon-close { display: block; }

.ct-nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}
.ct-nav-dropdown ul { list-style: none; margin: 0; padding: 0; }
.ct-nav-dropdown a {
  display: block;
  padding: 13px 20px;
  color: #1B1B1B;
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.ct-header.is-open .ct-nav-dropdown { display: block; }
.ct-header--relative { position: relative; }

@media (max-width: 1024px) {
  .ct-nav { display: none; }
  .ct-header__inner { min-height: 63px; }
  .ct-menu-toggle {
    display: flex;
    align-self: flex-start;
    margin: 4px 47px 0 0;
    font-size: 15px;
    padding: 5px;
  }
}

/* ---------- Hero (35ff5e28) ---------- */
.tr-hero {
  position: relative;
  background-image: url("/assets/images/bg-green.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 2rem 1rem;
  display: flex;
}
.tr-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #0F2A1D;
  opacity: .65;
}
.tr-hero__inner {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  min-height: calc(544px - 4rem);
}
.tr-hero__content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  align-items: flex-start;
}
.tr-hero__content h1 {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
  line-height: 1;
}
.tr-hero__text { font-size: 1rem; line-height: 29px; color: #FFFFFF; }
.tr-hero__text p { margin: 1em 0; }
.tr-hero__media { flex: 1 1 0; text-align: center; }
.tr-hero__media img { border-radius: 15px; vertical-align: middle; }

@media (max-width: 1024px) and (min-width: 768px) {
  .tr-hero__inner { min-height: calc(246px - 4rem); }
}
@media (max-width: 767px) {
  .tr-hero__inner { flex-direction: column-reverse; min-height: 10rem; }
  .tr-hero__content, .tr-hero__media { flex: 0 0 auto; width: 100%; }
}

/* ---------- Shared 2-column split sections ---------- */
.tr-split { padding: 60px 20px 80px; }
.tr-split__inner { display: flex; flex-direction: row; gap: 10px; }
.tr-split__col {
  flex: 1 1 0;
  width: 50%;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
}
.tr-split__col--text { gap: 20px; align-items: flex-start; }
.tr-split__col--media { justify-content: flex-start; text-align: center; }

.tr-label { font-size: 16px; color: #000000; margin: 1em 0; }
.tr-split h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: #54595F;
  line-height: 1;
}
.tr-divider { width: 100%; padding: 7px 0; font-size: 0; }
.tr-divider span {
  display: inline-block;
  width: 32%;
  border-top: 3.5px solid #E04F1B;
}
.tr-body { font-size: 16px; line-height: 1.8em; color: #54595F; }
.tr-body p { margin: 1em 0; }
.tr-split img { border-radius: 15px; vertical-align: middle; }

/* dark variant (3ec29c5) */
.tr-split--dark { background-color: #232323; padding: 5rem 1rem; }
.tr-split--dark .tr-split__inner { flex-direction: row-reverse; }
.tr-split--dark h2 { color: #FFFFFF; }
.tr-split--dark .tr-body { color: #ADADAD; }

/* apply variant (3e7eddf) */
.tr-split--apply { padding: 5rem 1rem; }
.tr-split--apply .tr-label { color: #1B1B1B; margin: 0; }
.tr-split--apply h2 { color: #000000; }
.tr-split--apply .tr-body { color: #ADADAD; }
.tr-split--apply .tr-body ul { margin: 1em 0; padding-left: 40px; }
.tr-split--apply .tr-body li { list-style: disc; }
.tr-split--apply .tr-body strong { color: #ADADAD; }

@media (max-width: 1024px) {
  .tr-split__col { padding: 0 20px; }
}
@media (max-width: 767px) {
  .tr-split { padding: 3rem 1rem; }
  .tr-split--dark, .tr-split--apply { padding: 3rem 1rem; }
  .tr-split__inner, .tr-split--dark .tr-split__inner { flex-direction: row; flex-wrap: wrap; }
  .tr-split__col { flex: 0 0 100%; width: 100%; }
  .tr-split__col--text { align-items: center; }
  .tr-split h2 { text-align: left; }
  .tr-split .tr-divider { text-align: center; }
  .tr-split__col--text > * { width: 100%; }
  .tr-split__col--text .ct-btn { width: auto; align-self: flex-start; }
}

/* ---------- 100% Pure PE cards (aefb191) ---------- */
.tr-pe {
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.tr-pe__head { padding: 0 30px; text-align: center; }
.tr-pe__head .tr-label { margin: 1em 0 16px; text-align: center; }
.tr-pe__head h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2em;
  color: #000000;
  text-align: center;
}
.tr-pe__body {
  width: 100%;
  max-width: 1600px;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.tr-pe__body .tr-divider { text-align: center; }
.tr-pe__body .tr-divider span { width: 13%; }
.tr-cards {
  width: 100%;
  padding: 0 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
}
.tr-card {
  width: 31%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #ffffff;
  border: 1px solid #e3e7e1;
  border-radius: 12px;
  box-shadow: 0 10px 30px 0 rgba(31,42,45,.06);
  padding: 30px 28px;
}
.tr-card__badge-row { display: flex; justify-content: center; align-items: center; }
.tr-card__badge {
  width: 90px;
  min-height: 90px;
  border-radius: 50%;
  background-color: #E04F1B;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.tr-card__badge .tr-card__num {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}
.tr-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3em;
  color: #1f2a2d;
  text-align: center;
  margin: 0 0 4px;
}
.tr-card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7em;
  color: #5d6b6a;
  text-align: start;
  margin: 1em 0;
}

@media (max-width: 1024px) and (min-width: 768px) {
  .tr-card { width: 48%; }
}
@media (max-width: 1024px) {
  .tr-pe__head, .tr-pe__body, .tr-cards { padding: 0 20px; }
}
@media (max-width: 767px) {
  .tr-pe { padding: 80px 20px 0; }
  .tr-pe__head h2 { font-size: 1.5rem; }
  .tr-pe__body { gap: 24px; padding: 0; }
  .tr-cards { padding: 0; }
  .tr-card { width: 100%; }
  .tr-card__badge { width: 70px; min-height: 70px; }
  .tr-card__badge .tr-card__num { font-size: 2rem; }
}

/* ---------- Testimonials (af08f38) ---------- */
.tr-quotes {
  background-color: #0F2A1D;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.tr-quotes__head { padding: 0 30px; }
.tr-quotes__head h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2em;
  color: #FFFFFF;
  text-align: center;
}
.tr-quotes__body {
  width: 100%;
  max-width: 1600px;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.tr-quotes__body .tr-divider { text-align: center; }
.tr-quotes__body .tr-divider span { width: 13%; }

.tr-carousel { width: 100%; padding: 0 30px; position: relative; }
.tr-carousel .swiper { width: calc(100% - 120px); margin: 0 auto; padding: 20px 0 29px; }
.tr-testimonial { text-align: center; }
.tr-testimonial__text {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.5;
  color: #FFFFFF;
}
.tr-testimonial__footer {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tr-testimonial__footer img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.tr-testimonial__footer cite {
  font-style: normal;
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-left: 20px;
  font-size: 14px;
  line-height: 1.5;
}
.tr-testimonial__name { font-family: "Poppins", sans-serif; font-weight: 700; font-size: 14px; color: #FFFFFF; }
.tr-testimonial__title { font-family: "Poppins", sans-serif; font-weight: 400; font-size: 14px; color: #FFFFFF; }

.tr-carousel .swiper-pagination { font-size: 0; line-height: 0; height: 6px; bottom: 5px; }
.tr-carousel .swiper-pagination-bullet { width: 6px; height: 6px; margin: 0 6px; background: #000; opacity: .2; }
.tr-carousel .swiper-pagination-bullet-active { opacity: 1; }

.tr-carousel .tr-swiper-btn {
  position: absolute;
  top: calc(50% - 18px);
  transform: translateY(-50%);
  z-index: 5;
  font-size: 20px;
  color: rgba(238,238,238,0.9);
  cursor: pointer;
}
.tr-carousel .tr-swiper-btn svg { width: 1em; height: 1em; fill: currentColor; display: block; }
.tr-carousel .tr-swiper-btn--prev { left: 40px; }
.tr-carousel .tr-swiper-btn--next { right: 40px; }

@media (max-width: 1024px) {
  .tr-quotes__head, .tr-quotes__body { padding: 0 20px; }
  .tr-carousel { padding: 0 20px; }
}
@media (max-width: 767px) {
  .tr-quotes { padding: 80px 20px 0; }
  .tr-quotes__head h2 { font-size: 1.5rem; }
  .tr-quotes__body { padding: 0; gap: 24px; }
  .tr-carousel { padding: 0; }
  .tr-carousel .swiper { width: calc(100% - 92px); padding: 20px 0 55px; }
  .tr-carousel .tr-swiper-btn--prev { left: 30px; }
  .tr-carousel .tr-swiper-btn--next { right: 30px; }
}

/* ---------- Footer (template 787) ---------- */
.ct-footer { background-color: #000000; padding: 5rem 1rem; }
.ct-footer__inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}
.ct-footer__col { flex: 1 1 0; padding: 0 30px; }
.ct-footer__col--logo { text-align: center; }
.ct-footer__col--logo img { max-width: 100%; display: block; margin: 0 auto; }
.ct-footer table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: #FFFFFF;
}
.ct-footer table td { padding: 2px 0; vertical-align: middle; line-height: 1.5; }
.ct-footer table a { color: #FFFFFF; }
.ct-footer__links p {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 1em 0;
}
.ct-footer__links a { color: #FFFFFF; }

@media (max-width: 1024px) {
  .ct-footer__col { padding: 0 20px; }
}
@media (max-width: 767px) {
  .ct-footer__inner { flex-direction: column; }
  .ct-footer__col { width: 100%; padding: 0 24px; }
  .ct-footer__col--logo { padding: 0; }
  .ct-footer__col--logo img { width: 90%; }
}
