#topbar {
  background: #fff;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  height: 44px;
  padding: 0;
  transition: all 0.5s;
  overflow: hidden;
  z-index: 996;
}
#topbar.topbar-scrolled {
  top: -44px;
}
#topbar .contact-info i {
  font-style: normal;
  color: #01b1d7;
}
#topbar .contact-info i a, #topbar .contact-info i span {
  padding-left: 5px;
  color: #444444;
}
#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}
#topbar .contact-info i a:hover {
  color: #01b1d7;
}
#topbar .social-links a {
  color: #62787d;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
  border-left: 1px solid #e9e9e9;
}
#topbar .social-links a:hover {
  color: #01b1d7;
}
#topbar .social-links a:first-child {
  border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  z-index: 997;
  transition: all 0.5s;
  background: #e60013;
  /* top: 44px; */
}
#header.header-scrolled {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  top: 0;
}
#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}
#header .logo h1 a, #header .logo h1 a:hover {
  color: #354144;
  text-decoration: none;
}
#header .logo h1 a span, #header .logo h1 a:hover span {
  color: #01b1d7;
}
#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 65px;
}

.content {
  padding-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Raleway", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF !important;
  white-space: nowrap;
  /* text-transform: uppercase; */
  transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #01b1d7;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 400;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #01b1d7;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #354144;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(31, 38, 39, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #354144;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #01b1d7;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #01b1d7;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}


/* ===================================== */
/* GLOBAL FONT SETUP */
/* ===================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f7f7f7;
  overflow-x: hidden !important; /* mencegah konten ikut geser */
}

.container {
  margin: 0 auto;
}

.container-form {
  background-color: #FFFFFF;
  width: 100%;
}

.form-header{
  background-color: #FFFFFF;
  padding: 0 319px;
  margin: 0px 0px;
}

.section-title {
  font-family: "Roboto", sans-serif;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}

/* ===================================== */
/* HERO SECTION (HEADER) */
/* ===================================== */

.head-desktop {
  width: 100%;
  display: block;
  background-color: #FFFFFF;
}

.head-mobile {
  display: none;
}

/* Wrapper agar hanya header yg bisa digeser */
.hero-scroll-wrapper {
  width: 100%;
  overflow-x: auto; /* scroll hanya di wrapper */
  overflow-y: hidden;
}

/* Header utama */
.hero-section {
  background: url("assets/Header.png") no-repeat;
  background-size: cover;
  background-position: right center;
  height: 380px;
  position: relative;
  color: white;
  overflow: hidden;
}

.header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.4) 30%,
    rgba(0, 0, 0, 0) 70%
  );
}

.header-content {
  position: absolute;
  top: 50%;
  right: 100px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* Button Learn More */
.btn-learn-more {
  display: inline-block;
  background-color: #1fa8cf;
  color: white;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.3s;
  position: relative;
  bottom: -150px;
}

.btn-learn-more:hover {
  background-color: #188aad;
}

.btn-lm-header {
  position: relative;
  bottom: 155px;
  right: -1230px;
}

.btn-lm-header-hm {
  position: relative;
  bottom: 155px;
  right: -1270px;
}

/* ===================================== */
/* VOUCHER CLAIM SECTION */
/* ===================================== */

.voucher-claim-section {
  background-color: white;
  text-align: center;
}

.voucher-sub-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 250px;
  padding: 20px 75px;
  margin-bottom: 30px;
}

.indomaret-logo {
  height: 81px;
}

.voucher-text-box {
  text-align: left;
}

.scratch-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 5px;
}

.voucher-title {
  font-family: "Roboto", sans-serif;
  font-size: 64px;
  color: #000000;
  font-weight: 900;
  line-height: 1.1;
}

.voucher-subtitle {
  font-size: 19px;
  color: #333;
  margin-top: 5px;
}

.snk-small {
  font-size: 12px;
  color: #888;
  margin-top: 10px;
}

.voucher-cards img {
  height: 340px;
  display: block;
}

.claim-title-bar {
  background-color: #e60013;
  color: white;
  padding: 10px 0;
  font-size: 35px;
  margin-bottom: 50px;
  font-weight: 600;
}

/* Claim Steps */
.claim-steps-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0 50px;
  margin-bottom: 30px;
}

.claim-steps-row-top,
.claim-steps-row-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.claim-steps-row-bottom {
  justify-content: center;
  gap: 150px;
  padding: 0 100px;
}

.step-item {
  flex-basis: 33.33%;
  text-align: center;
  padding-bottom: 20px;
}

.claim-steps-row-bottom .step-item {
  flex-basis: auto;
}

.step-icon {
  width: 120px;
  margin-bottom: 15px;
}

.step-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  margin: 0 auto;
  max-width: 250px;
}

.step-number-visual {
  color: #e60013;
  font-family: "Roboto";
  font-size: 24px;
  font-weight: 700;
  margin-right: 5px;
  max-width: 15px;
}

.step-heading {
  color: #e60013;
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 5px;
}

.step-detail {
  font-size: 16px;
  color: #555;
  line-height: 1.4;
  max-width: 250px;
  margin: 0 auto;
  text-align: justify;
  padding-left: 18px;
}

.read-snk-link {
  display: block;
  color: #e60013;
  font-weight: 600;
  font-size: 20px;
  padding: 50px 0;
}

/* ===================================== */
/* ELIGIBLE PRODUCT */
/* ===================================== */

.eligible-product-section {
  background-color: white;
  padding-bottom: 50px;
  text-align: center;
}

.product-title-revised {
  font-size: 32px;
  font-weight: 400;
  color: #545454;
  margin-bottom: 40px;
}

.product-grid-revised {
  display: flex;
  justify-content: center;
  gap: 95px;
}

.product-image-revised {
  width: 350px;
}

/* ===================================== */
/* S&K SECTION */
/* ===================================== */

.snk-section {
  background-color: white;
}

.snk-container {
  width: 900px;
  margin: 0 auto;
}

.snk-main-title {
  font-family: "Roboto";
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

.snk-subtitle {
  font-family: "Roboto";
  text-align: center;
  font-size: 22px;
  margin-bottom: 50px;
}

.snk-part {
  margin-bottom: 40px;
}

.snk-part-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.snk-part p {
  margin-bottom: 15px;
  font-size: 15px;
}

.eligible-table,
.tier-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  font-size: 14px;
  box-shadow: none;
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid #777777;
}

.eligible-table th,
.tier-table th {
  background-color: #d3d3d3;
  padding: 10px;
  text-align: center;
  border: 3px solid #f7f7f7;
}

.eligible-table td,
.tier-table td {
  padding: 10px;
  border: 3px solid #f7f7f7;
  text-align: center;
}

.eligible-table tbody tr:nth-child(odd),
.tier-table tbody tr:nth-child(odd) {
  background-color: #777;
  color: white;
}

.eligible-table tbody tr:nth-child(even),
.tier-table tbody tr:nth-child(even) {
  background-color: #b7b7b7;
  color: white;
}

/* ===================================== */
/* RESPONSIVE DESIGN */
/* ===================================== */

/* MOBILE: Header bisa digeser */
@media (max-width: 767px) {
  body {
    overflow-x: auto !important; /* agar header bisa digeser */
  }

  .head-desktop {
    display: none;
  }

  .head-mobile {
    width: 100%;
    display: block;
    padding-bottom: 15px;
    background-color: #FFFFFF;
  }

  .hero-section {
    width: 900px; /* area lebih besar agar bisa digeser */
    height: 250px;
    background-size: cover;
  }

  .btn-learn-more {
    position: relative !important;
    left: 144px;
    top: 0px;
  }

  .form-header{
    padding: 0 15px;
  }

  .btn-lm-header-hm {
    position: relative !important;
    left: 168px;
    top: 0px;
  }

  .section-title {
    font-size: 28px;
  }

  .claim-title-bar {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .voucher-title {
    font-size: 24px;
    font-weight: 600;
  }

  .voucher-sub-header {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0px;
  }

  .voucher-text-box {
    text-align: center;
  }

  .claim-steps-container {
    padding: 0 10px;
    gap: 10px;
  }

  .claim-steps-row-top,
  .claim-steps-row-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .claim-steps-row-bottom {
    justify-content: center;
    padding: 0;
  }

  .step-item {
    flex-basis: 100%;
    text-align: left;
    padding-left: 6px;
  }

  .step-icon {
    float: left;
    margin-right: 15px;
  }

  .step-content {
    margin-left: 100px;
    max-width: none;
    justify-content: flex-start;
  }

  .step-detail {
    margin-left: 133px;
  }

  .product-grid-revised {
    flex-direction: column;
    gap: 25px;
  }

  .product-image-revised {
    width: 100%;
  }

  .eligible-table,
  .tier-table {
    overflow-x: auto;
  }

  .read-snk-link {
    margin-bottom: 40px ;
  }

  .voucher-cards img {
    height: 230px;
    display: block;
  }

  .indomaret-logo {
    height: 74px;
  }

  .step-number-visual {
    font-size: 19px;
  }

  .last-image-resize {
    width: 97%;
  }

}

/* Tablet */
@media (max-width: 1023px) {
  .container,
  .snk-container {
    width: 100%;
  }

  .hero-section {
    height: 300px;
    background-size: auto 100%;
    background-position: left center;
  }

  .header-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.6)
    );
  }

  .header-content {
    right: auto;
    left: 20px;
    top: auto;
    bottom: 150px;
    transform: none;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #1f2627;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}
#footer .footer-top {
  background: #2a3336;
  border-bottom: 1px solid #354144;
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #354144;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 5px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #01b1d7;
  color: #fff;
  text-decoration: none;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #40dcfe;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: #27d8fe;
}
#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}
#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}
#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #01b1d7;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
}
#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #0187a4;
}
#footer .copyright {
  text-align: center;
  padding-top: 30px;
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}