@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
    background-color: #000000;
    padding-top: 30px;
  }

  h1 {
    text-transform: uppercase;
  }

.span1 {
  font-weight: 400;
}

/* Visually hidden for accessibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Offers hero – infinite horizontal slider */
.offers-hero {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
  color: #fff;
  margin-top: 30px;
}

.offers-hero .offers-hero__dots {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease-out 0.2s, transform 0.5s ease-out 0.2s;
}

.offers-hero.is-visible .offers-hero__dots {
  opacity: 1;
  transform: translateY(0);
}

.offers-hero__slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.offers-hero__track {
  display: flex;
  width: 100%;
  height: auto;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.offers-hero__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 50vh;
  position: relative;
}

.offers-hero__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Dot indicators – bottom center (like design) */
.offers-hero__dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.offers-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.2s ease;
}

.offers-hero__dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.offers-hero__dot--active {
  background: #fff;
  transform: scale(1.15);
}

/* Tablet */
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .offers-hero {
    height: 60vh;
    min-height: 400px;
  }

  .offers-hero__dots {
    bottom: 16px;
  }

  .offers-hero__dot {
    width: 8px;
    height: 8px;
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  .offers-hero {
    height: 0vh;
    min-height: 200px;
  }

  .offers-hero__image {
    object-position: center center;
  }

  .offers-hero__dots {
    bottom: 12px;
    gap: 10px;
  }

  .offers-hero__dot {
    width: 8px;
    height: 8px;
  }
}
/* Small Mobile */
@media screen and (max-width: 480px) {
  .offers-hero {
    height: 0vh;
    min-height: 110px;
  }
}

/* Offers intro – black block, white text */
.offers-intro {
  background: #000;
  color: #fff;
  padding: clamp(48px, 8vw, 80px) clamp(24px, 6vw, 64px);
}

.offers-intro__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.offers-intro__title,
.offers-intro__text {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

.offers-intro__title.is-visible,
.offers-intro__text.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.offers-intro__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 1.2em;
  color: #fff;
}

.offers-intro__text {
  font-size: clamp(15px, 1.8vw, 16px);
  font-weight: 300;
  line-height: 1.65;
  margin: 0 0 1.25em;
  color: #fff;
}

.offers-intro__text:last-child {
  margin-bottom: 0;
}

/* Tablet */
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .offers-intro {
    padding: 56px 40px;
  }

  .offers-intro__title {
    font-size: clamp(26px, 3.5vw, 36px);
    margin-bottom: 1em;
  }

  .offers-intro__text {
    font-size: 16px;
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  .offers-intro {
    padding: 40px 35px;
  }

  .offers-intro__title {
    font-size: 22px;
    margin-bottom: 0.9em;
    line-height: 1.25;
  }

  .offers-intro__text {
    font-size: 15px;
    line-height: 1.6;
  }
}

@media screen and (max-width: 480px) {
  .offers-intro {
    padding: 32px 25px;
  }

  .offers-intro__title {
    font-size: 25px;
    text-align: center;
  }

  .offers-intro__text {
    font-size: 14px;
  }
}

/* Offers GET IN TOUCH – contact form */
.offers-contact {
  background: #000;
  color: #fff;
  padding: clamp(48px, 8vw, 40px) clamp(24px, 6vw, 64px);
}

.offers-contact__container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 25px;
  margin-bottom: 30px;
}

.offers-contact__title,
.offers-contact__description,
.offers-contact__form {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

.offers-contact__title.is-visible,
.offers-contact__description.is-visible,
.offers-contact__form.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.offers-contact__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
  color: #fff;
}

.offers-contact__description {
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  max-width: 620px;
}

.offers-contact__message {
  display: none;
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.offers-contact__message.is-visible {
  display: block;
}

.offers-contact__message--success {
  background: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.4);
  color: #81c784;
}

.offers-contact__message--error {
  background: rgba(244, 67, 54, 0.15);
  border: 1px solid rgba(244, 67, 54, 0.4);
  color: #e57373;
}

.offers-contact__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
}

.offers-contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.offers-contact__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.offers-contact__field--full {
  grid-column: 1 / -1;
}

.offers-contact__label {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  margin: 0;
}

.offers-contact__input,
.offers-contact__select,
.offers-contact__textarea {
  width: 100%;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: #000;
  outline: none;
  transition: border-color 0.2s ease;
}

.offers-contact__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.offers-contact__input::placeholder,
.offers-contact__textarea::placeholder {
  color: #999;
}

.offers-contact__input:focus,
.offers-contact__select:focus,
.offers-contact__textarea:focus {
  border-color: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.offers-contact__textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.offers-contact__submit {
  align-self: center;
  padding: 14px 40px;
  background: #000;
  border: 1px solid #fff;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  transition: background 0.2s ease, color 0.2s ease;
}

.offers-contact__submit:hover {
  background: #fff;
  color: #000;
}

.offers-contact__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Tablet: same vertical gap between all inputs */
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .offers-contact {
    padding: 56px 40px;
  }

  .offers-contact__row {
    gap: 20px;
  }

  .offers-contact__form {
    gap: 20px;
  }
}

/* Mobile: single column, same vertical gap between all input boxes */
@media screen and (max-width: 768px) {
  .offers-contact {
    padding: 40px 35px;
  }

  .offers-contact__container {
    gap: 20px;
  }

  .offers-contact__title {
    font-size: 25px;
  }

  .offers-contact__description {
    font-size: 16px;
  }

  .offers-contact__row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .offers-contact__form {
    gap: 20px;
  }

  .offers-contact__field {
    margin: 0;
  }
}

@media screen and (max-width: 480px) {
  .offers-contact {
    padding: 32px 25px;
  }

  .offers-contact__title {
    font-size: 25px;
  }

  .offers-contact__input,
  .offers-contact__select,
  .offers-contact__textarea {
    padding: 12px 14px;
    font-size: 16px;
  }
}