@font-face {
  font-family: "Poppins-Regular";
  src: url("../fonts/Poppins/Poppins-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Poppins-Bold";
  src: url("../fonts/Poppins/Poppins-Bold.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Poppins-Medium";
  src: url("../fonts/Poppins/Poppins-Medium.ttf") format("truetype");
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins-Regular";
}

body {
  background: #000;
}

a {
  text-decoration: none;
}

span {
  display: inline-block;
}

.banner {
  position: relative;
  background-image: url("../images/banner-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
  height: 100dvh;
}

.banner::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-color: #000000;
  opacity: 0.2;
}

.logo-desktop {
  position: absolute;
  top: 45px;
  color: #ff7e00;
  font-weight: 800;
  font-size: 20px;
  text-align: right;
  left: 50%;
  transform: translateX(-50%);
}

.logo-mobile {
  display: none;
  color: #ff7e00;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 20px;
}

.content {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 10px;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.left {
  width: calc(50% - 20px);
}

.right {
  width: calc(50% - 20px);
  position: relative;
  text-align: center;
}

.right img {
  max-width: 670px;
  width: 100%;
  height: auto;
}

.left h1 {
  font-size: clamp(25px, 4vw, 68px);
  font-family: "Poppins-Medium";
  line-height: 1.1;
  margin-bottom: 15px;
}

.left h1 span {
  color: #ff7e00;
  /* display: block; */
  font-family: "Poppins-Medium";
}

.left .desc {
  font-size: 18px;
  color: #ddd;
  margin-bottom: 20px;
  max-width: 400px;
}

.save {
  position: absolute;
  top: 40px;
  right: 0;
  width: 80px;
  height: 80px;
  background: #fff;
  color: #0a3d62;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  text-align: center;
  line-height: 1.1;
  border: 3px dotted #003864;
}

.offer-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 5px 25px 5px 5px;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  overflow: hidden;
  background: linear-gradient(135deg, #ff9a3c 0%, #ff7e00 60%, #e66f00 100%);
  box-shadow: 0 10px 25px rgba(255, 126, 0, 0.35);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  /* margin-top: 30px; */
}

.offer-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -30%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0.35),
      rgba(255, 255, 255, 0.15),
      rgba(255, 255, 255, 0));
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  animation: glassShineMove 2s ease-in-out infinite alternate;
}

.offer-badge {
  position: relative;
  z-index: 1;
  background: radial-gradient(circle at top left, #fff3a0, #ffd400);
  color: #2b0a6b;
  font-weight: 900;
  font-size: 26px;
  line-height: 1;
  padding: 12px 14px;
  border-radius: 50%;
  text-align: center;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.6);
  width: 85px;
  height: 85px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
}

.offer-badge span {
  font-weight: 600;
  font-size: 12px;
}

.offer-text {
  position: relative;
  z-index: 1;
  color: #ffffff;
  text-align: center;
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  transition: text-shadow 0.35s ease;
}

.offer-text small {
  display: block;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0.95;
}

.offer-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 35px rgba(255, 126, 0, 0.45);
}

.offer-btn:hover::before {
  left: 120%;
}

.offer-btn:hover .offer-badge {
  transform: scale(1.1) rotate(-5deg);
}

.offer-btn:hover .offer-text {
  text-shadow: 0 4px 12px rgba(255, 255, 255, 0.35);
}

.footer-section {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 15px;
  text-align: center;
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 9;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;
}

@keyframes glassShineMove {
  0% {
    left: -40%;
    opacity: 0.6;
  }

  100% {
    left: 120%;
    opacity: 0.6;
  }
}

.btn-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 30px 0;
}

.btn-box img {
  width: 80px;
  height: 80px;
  border: 2px solid white;
  border-radius: 100px;
  padding: 4px;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (max-width: 1399px) {
  .content {
    max-width: 1320px;
  }
}

@media (max-width: 1299px) {
  .content {
    max-width: 1200px;
  }
}

@media (max-width: 1199px) {
  .content {
    max-width: 95%;
  }
}

@media (max-width: 992px) {
  .content {
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .btn-box img {
    width: 70px;
    height: 70px;
  }

  .left .desc {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .right img {
    max-width: 330px;
  }

  .btn-box {
    justify-content: center;
    margin: 15px 0;
  }

  .logo-desktop {
    display: none;
  }

  .logo-mobile {
    display: block;
  }

  .logo-mobile img {
    max-width: 230px;
  }

  .right {
    text-align: center;
  }

  .save {
    top: 130px;
  }

  .btn {
    margin-top: 20px;
  }

  .offer-badge {
    font-size: 14px;
    width: 55px;
    height: 55px;
  }

  .offer-badge span {
    font-size: 10px;
  }

  .offer-text small {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .logo-mobile {
    font-size: 18px;
  }

  .save {
    top: 0;
  }

  .left,
  .right {
    width: 100%;
  }

  .logo-mobile img {
    max-width: 180px;
  }

  .btn-box {
    justify-content: center;
    margin: 10px 0;
  }

  .left .desc {
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 0;
  }

  .btn-box img {
    width: 60px;
    height: 60px;
  }

  .right img {
    max-width: 370px;
  }

  .save {
    right: 30px;
    width: 60px;
    height: 60px;
    font-size: 14px;
  }

  .footer-section {
    padding: 5px;
  }
}

@media (max-width: 479px) {
  .logo-mobile img {
    max-width: 150px;
  }

  .logo-mobile {
    margin-bottom: 10px;
  }

  .content {
    gap: 20px;
  }

  .left h1 {
    margin-bottom: 8px;
  }

  .left h1 span {
    display: inline;
  }

  .footer-section p {
    font-size: 12px;
    line-height: 1.3;
  }


}

@media (max-width: 320px) {
  .banner {
    min-height: 100dvh;
    height: 100%;
  }

  .right img {
    max-width: 250px;
  }
}