@font-face {
  font-family: "Lato-Bold";
  src: url("../fonts/Lato/Lato-Bold.ttf");
}

@font-face {
  font-family: "Lato-Regular";
  src: url("../fonts/Lato/Lato-Regular.ttf");
}

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

a {
  color: inherit;
  border: none;
  outline: none;
  text-decoration: none;
}

body {
  background: #eee;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  max-width: 1440px;
}

.desktop {
  display: block;
}

.mobile {
  display: none;
}

img {
  max-width: 100%;
  height: auto;
}

.banner-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  /* background: url("../images/banner-bg.png"); */
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CONTENT WRAP */
.wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  height: 100%;
}

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

.cta-btn {
  margin-top: 30px;
}

.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:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 35px rgba(255, 126, 0, 0.45);
}

/* Glass shine */
.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;
}

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

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

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

.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-btn:hover .offer-badge {
  transform: scale(1.1) rotate(-5deg);
}

.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-btn:hover .offer-text {
  text-shadow: 0 4px 12px rgba(255, 255, 255, 0.35);
}

.offer-text strong {
  display: block;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.5px;
  line-height: 1;
}

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

.right .main-img {
  position: absolute;
  right: 17vw;
  bottom: 40px;
  width: 100%;
  max-width: 32%;
}

.left {
  text-align: left;
  align-items: center;
}

.logo-box {
  margin-bottom: 40px;
}

.left h1 {
  font-size: clamp(32px, 6vw, 50px);
  text-transform: capitalize;
  color: white;
  line-height: 1;
}

.orange {
  color: #e66f00;
}

.left p {
  font-size: 23px;
  color: white;
  text-align: left;
  margin-top: 30px;
  line-height: 1.3;
  max-width: 460px;
}

.btn-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.btn-box img {
  max-width: 200px;
}


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

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