@font-face {
  font-family: "Forza";
  src: url("fonts/Forza-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Hero – basketball court style banner */
.hero {
  min-height: 70vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('/img/TRANSFER.gif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__logo {
  position: absolute;
  top: 5%;
  left: 5%;
  height: 36px;
  width: auto;
  z-index: 2;
  filter: brightness(0) invert(0.9);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 900px;
}

.hero__headline {
  font-family: "Forza", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #e8e0d0;
  margin-bottom: 1.25rem;
}

.hero__headline-emphasis {
  font-weight: 900;
  font-size: 1.35em;
  display: block;
  margin-bottom: 0.05em;
}

.hero__sub {
  font-family: "Forza", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(0.85rem, 2.2vw, 1.1rem);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0 auto 2rem;
  padding: 1rem 1.5rem;
  max-width: 720px;
}

.hero__btn {
  display: inline-block;
  font-family: "Forza", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: #000;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.hero__btn:hover {
  background: #222;
  color: #fff;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero__btn--secondary {
  background: #f5f0e6;
  color: #000;
  border: none;
  cursor: pointer;
}

.hero__btn--secondary:hover {
  background: #e8e0d4;
  color: #000;
}

/* Text us popup */
body.text-us-modal-open {
  overflow: hidden;
}

.text-us-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.text-us-popup--open {
  opacity: 1;
  visibility: visible;
}

.text-us-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.text-us-popup__box {
  position: relative;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  max-width: 320px;
  width: 100%;
  text-align: center;
}

.text-us-popup__box--with-form {
  max-width: 480px;
}

.text-us-popup__form {
  min-height: 200px;
  margin-bottom: 1rem;
}

.text-us-popup__label {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  color: #666;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.text-us-popup__number {
  font-family: "Forza", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: #000;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

.text-us-popup__link {
  display: inline-block;
  font-family: "Forza", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  background: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}

.text-us-popup__link:hover {
  background: #333;
}

.text-us-popup__link.is-disabled {
  pointer-events: none;
  opacity: 0.6;
  cursor: not-allowed;
}

.text-us-popup__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  color: #999;
  cursor: pointer;
  transition: color 0.2s;
}

.text-us-popup__close:hover {
  color: #000;
}

@media (max-width: 767px) {
  .hero {
    min-height: 60vh;
  }

  .hero__logo {
    filter: brightness(0) invert(1);
  }

  .hero__headline {
    color: #e8e0d0;
  }
}

/* Hero claim + 3 images (no gap) */
.hero-claim {
  width: 100%;
}

.hero-claim__title {
  font-family: "Forza", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(1.25rem, 3.5vw, 2.25rem);
  text-transform: uppercase;
  color: #000;
  letter-spacing: 0.02em;
  text-align: center;
  margin: 0;
  padding: 2.5rem 1.5rem;
  background-color: #fff;
  line-height: 1.2;
}

.hero-claim__images {
  display: flex;
  width: 100%;
  gap: 0;
}

.hero-claim__img {
  flex: 1 1 0;
  width: 33.333%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 767px) {
  .hero-claim__images {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-claim__img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
  }
}

/* Clients / Who we've worked with */
.clients {
  background-color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.clients__title {
  font-family: "Forza", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  text-transform: uppercase;
  color: #000;
  letter-spacing: 0.02em;
  margin-bottom: 3rem;
}

.clients__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem 5rem;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.clients__logo {
  height: 80px;
  width: auto;
  max-width: 280px;
  flex: 1 1 0;
  min-width: 140px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
}
.clients__logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 767px) {
  .clients__logos {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: none;
    padding: 0.5rem 0;
    gap: 3.5rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.25) transparent;
  }

  .clients__logos::-webkit-scrollbar {
    height: 6px;
  }
  .clients__logos::-webkit-scrollbar-track {
    background: transparent;
  }
  .clients__logos::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
  }
  .clients__logos::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.35);
  }

  .clients__logo {
    flex: 0 0 auto;
    min-width: 160px;
    height: 64px;
  }
}

/* Three photos – full width on desktop */
.photos {
  display: flex;
  width: 100%;
  min-height: 320px;
}

.photos__item {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  display: flex;
}

.photos__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 767px) {
  .photos {
    flex-direction: row;
    flex-wrap: nowrap;
    position: relative;
    min-height: 520px;
    background-color: #0b1215;
    padding: 5rem 1.5rem;
  }

  .photos__item {
    position: absolute;
    flex: none;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }

  .photos__item:nth-child(1) {
    left: 0;
    bottom: 8%;
    width: 55%;
    height: 72%;
    z-index: 1;
  }

  .photos__item:nth-child(2) {
    right: 4%;
    top: 6%;
    width: 52%;
    height: 42%;
    z-index: 2;
  }

  .photos__item:nth-child(3) {
    right: 2%;
    bottom: 8%;
    width: 50%;
    height: 42%;
    z-index: 2;
  }

  .photos__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Testimonials */
.testimonials {
  background-color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.testimonials__container {
  width: 100%;
  max-width: none;
  margin: 0;
}

.testimonials__title {
  font-family: "Forza", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  text-transform: uppercase;
  color: #000;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.testimonials__subtitle {
  font-family: "Forza", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  text-transform: uppercase;
  color: #000;
  letter-spacing: 0.02em;
  margin: 0 0 1.5rem;
}

.testimonials__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.testimonials__badge {
  height: 50px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.testimonials__track {
  width: 100%;
  overflow: hidden;
  padding: 0.5rem 0;
}

.testimonials__scroll {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: testimonials-scroll 37.5s linear infinite;
}

.testimonials__scroll:hover {
  animation-play-state: paused;
}

@keyframes testimonials-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonials__scroll .testimonials__card {
  flex: 0 0 auto;
  min-width: 300px;
  max-width: 340px;
}

.testimonials__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
  text-align: left;
  background-color: #f5f5f5;
  border-radius: 12px;
  padding: 1.5rem 1.5rem 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonials__card::before {
  content: '"';
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-family: Georgia, serif;
  font-size: 3.5rem;
  line-height: 1;
  color: #e0e0e0;
}

.testimonials__card-headline {
  font-family: "Forza", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  color: #1a1a1a;
  margin: 0 2rem 0 0;
  padding-right: 1rem;
  line-height: 1.3;
}

.testimonials__stars {
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: #e6b800;
  margin: 0.5rem 0 0.75rem;
  line-height: 1;
}

.testimonials__quote {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #333;
  margin: 0;
  flex: 1;
}

.testimonials__card-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.testimonials__photo-wrap {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}

.testimonials__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.testimonials__name {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: #333;
  margin: 0;
}

@media (max-width: 767px) {
  .testimonials__scroll .testimonials__card {
    min-width: 260px;
    max-width: 280px;
  }

  .testimonials__container {
    padding: 0 1rem;
    overflow: hidden;
  }

  .testimonials__badges {
    gap: 1.25rem;
  }

  .testimonials__badge {
    height: 40px;
  }
}

/* Form embed section (Paperform) */
.form-embed {
  background-color: #fff;
  padding: 4rem 2rem;
}

.form-embed__container {
  max-width: 640px;
  margin: 0 auto;
}

/* Map block – location below form */
.map-block {
  max-width: 900px;
  margin: 4rem auto 0;
  text-align: center;
}

.map-block__title {
  font-family: "Forza", "Helvetica Neue", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #000;
  margin: 0 0 0.5rem;
}

.map-block__address {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  color: #444;
  margin: 0 0 1.5rem;
  letter-spacing: 0.02em;
}

.map-block__frame-wrap {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.map-block__frame-wrap::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}

.map-block__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
