@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");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

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;
}

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

.desktop {
  display: block;
}

.mobile {
  display: none;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

.logo-box img {
  max-width: 220px;
}

.left h1 {
  font-size: 77px;
  line-height: 1;
  color: #FFFFFF;
  font-weight: 700;
  text-transform: capitalize;
}

.left h1 span.light {
  font-weight: 100;
}

.left h1 span.orange {
  color: #ff7a00;
}

.left p {
  margin-top: 20px;
  font-size: 22px;
  color: #FFFFFF;
}

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

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

.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 img {
  max-width: 550px;
} */

.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;
}