*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  background:#ffffff;
  color:#1b1b1b;
}

/* NAVBAR */

.navbar{
  width:100%;
  padding:18px 6%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:#fff;
  border-bottom:1px solid #eee;
  position:sticky;
  top:0;
  z-index:999;
}

.logo{
  display:flex;
  align-items:center;
  gap:14px;
}

.logo img{
  width:55px;
}

.logo h1{
  font-size:22px;
  font-weight:800;
  color:#2453b3;
}

.logo p{
  font-size:13px;
  color:#f4b400;
}

nav{
  display:flex;
  gap:30px;
}

nav a{
  text-decoration:none;
  color:#222;
  font-weight:600;
}

.nav-btn{
  text-decoration:none;
  background:#2453b3;
  color:white;
  padding:12px 22px;
  border-radius:14px;
  font-weight:600;
}

/* HERO */

.hero{
  padding:70px 6%;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:50px;
}

.badge{
  background:#fff6da;
  color:#d79b00;
  width:max-content;
  padding:10px 18px;
  border-radius:50px;
  font-weight:600;
  margin-bottom:20px;
}

.hero h2{
  font-size:60px;
  line-height:1.1;
  color:#2453b3;
}

.hero p{
  margin-top:20px;
  font-size:17px;
  color:#666;
  line-height:1.8;
}

.hero-buttons{
  margin-top:30px;
  display:flex;
  gap:15px;
}

.primary-btn{
  background:#2453b3;
  color:white;
  border:none;
  padding:15px 28px;
  border-radius:16px;
  font-weight:700;
  cursor:pointer;
}

.secondary-btn{
  background:#fff6da;
  color:#d79b00;
  border:none;
  padding:15px 28px;
  border-radius:16px;
  font-weight:700;
  cursor:pointer;
}

.hero-right{
  position:relative;
}

.hero-card{
  background:#2453b3;
  border-radius:40px;
  overflow:hidden;
  padding:20px;
}

.hero-card img{
  width:100%;
  border-radius:25px;
}

.floating-box{
  position:absolute;
  background:white;
  padding:15px 20px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
  font-weight:700;
}

.box1{
  top:20px;
  left:-20px;
}

.box2{
  bottom:20px;
  right:-20px;
}

/* FEATURE */

.feature-section{
  padding:20px 6% 70px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.feature-card{
  background:#fff;
  border:1px solid #eee;
  padding:35px;
  border-radius:30px;
  transition:0.3s;
}

.feature-card:hover{
  transform:translateY(-5px);
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.feature-icon{
  font-size:35px;
}

.feature-card h3{
  margin-top:20px;
  color:#2453b3;
}

.feature-card p{
  margin-top:12px;
  color:#666;
  line-height:1.7;
}

/* HOME BANNER */

.home-banner{
  margin:0 6%;
  background:#2453b3;
  border-radius:40px;
  padding:50px;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:40px;
  overflow:hidden;
}

.banner-left h2{
  font-size:45px;
  color:white;
}

.banner-left p{
  margin-top:20px;
  color:#dfe8ff;
  line-height:1.8;
}

.banner-right img{
  width:100%;
  border-radius:25px;
}

/* TITLE */

.section-title{
  padding:80px 6% 30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.section-title h2{
  font-size:40px;
  color:#2453b3;
}

.section-title a{
  text-decoration:none;
  color:#f4b400;
  font-weight:700;
}

/* PRODUK */

.products-grid,
.featured-products{
  padding:0 6% 70px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.product-card{
  background:white;
  border-radius:28px;
  overflow:hidden;
  border:1px solid #eee;
  transition:0.3s;
}

.product-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.product-card img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
}

.product-content{
  padding:20px;
}

.product-brand{
  color:#f4b400;
  font-size:13px;
  font-weight:700;
}

.product-title{
  margin-top:10px;
  font-size:16px;
  font-weight:700;
  line-height:1.5;
}

.product-category{
  margin-top:8px;
  color:#777;
  font-size:13px;
}

.cart-button{
  margin-top:16px;
  width:100%;
  border:none;
  background:#2453b3;
  color:white;
  padding:13px;
  border-radius:14px;
  font-weight:700;
  cursor:pointer;
}

/* PAGE */

.page-header{
  padding:70px 6% 30px;
}

.page-header h2{
  font-size:50px;
  color:#2453b3;
}

.page-header p{
  margin-top:15px;
  color:#666;
}

/* FILTER */

.filter-box{
  padding:0 6% 40px;
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.filter-box input,
.filter-box select{
  padding:15px;
  border-radius:15px;
  border:1px solid #ddd;
  font-family:'Poppins';
}

/* PAGINATION */

/* ================================= */
/* PREMIUM PAGINATION */
/* ================================= */

.pagination{
  width:100%;
  padding:20px 5% 80px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.pagination button{
  min-width:46px;
  height:46px;
  border:none;
  border-radius:14px;
  background:white;
  color:#2453b3;
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  transition:0.3s;
  border:1px solid #dbe5ff;
  box-shadow:0 5px 15px rgba(0,0,0,0.04);
}

.pagination button:hover{
  background:#2453b3;
  color:white;
  transform:translateY(-4px);
  box-shadow:0 15px 30px rgba(36,83,179,0.25);
}

/* ACTIVE */

.pagination button.active-page{
  background:linear-gradient(
    135deg,
    #2453b3,
    #3f73df
  );

  color:white;

  border:none;

  box-shadow:0 15px 35px rgba(36,83,179,0.3);
}

/* MOBILE */

@media(max-width:768px){

  .pagination{
    gap:8px;
    padding:10px 4% 60px;
  }

  .pagination button{
    min-width:40px;
    height:40px;
    border-radius:12px;
    font-size:13px;
  }

}

/* CART */

/* ========================= */
/* CART SIDEBAR FIX */
/* ========================= */

.cart-sidebar{
  position:fixed;
  top:0;
  right:-100%;
  width:380px;
  max-width:100%;
  height:100vh;
  background:white;
  z-index:99999;
  transition:0.35s ease;
  box-shadow:-10px 0 40px rgba(0,0,0,0.12);
  padding:20px;
  overflow-y:auto;
}

.cart-sidebar.active{
  right:0;
}

.cart-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
}

.cart-header h2{
  font-size:24px;
  color:#2453b3;
}

.cart-header button{
  width:38px;
  height:38px;
  border:none;
  border-radius:12px;
  background:#2453b3;
  color:white;
  font-size:18px;
  cursor:pointer;
}

/* CART ITEM */

.cart-item{
  display:flex;
  gap:12px;
  margin-bottom:18px;
  background:#f8faff;
  padding:12px;
  border-radius:18px;
  align-items:center;
}

.cart-item img{
  width:75px;
  height:75px;
  object-fit:cover;
  border-radius:14px;
}

.cart-title{
  font-size:14px;
  font-weight:700;
  line-height:1.5;
}

.cart-brand{
  font-size:12px;
  color:#666;
  margin-top:6px;
}

/* MOBILE */

@media(max-width:768px){

  .cart-sidebar{
    width:100%;
    border-radius:25px 25px 0 0;
  }

}

/* FOOTER */

footer{
  background:#2453b3;
  padding:50px 6%;
  text-align:center;
  color:white;
}

.footer-logo{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:15px;
}

.footer-logo img{
  width:55px;
}

.footer-logo h2{
  font-size:28px;
}

footer p{
  margin-top:20px;
  color:#dbe5ff;
}

/* MOBILE */

@media(max-width:768px){

  nav{
    display:none;
  }

  .hero{
    grid-template-columns:1fr;
  }

  .hero h2{
    font-size:42px;
  }

  .feature-section{
    grid-template-columns:1fr;
  }

  .home-banner{
    grid-template-columns:1fr;
    padding:30px;
  }

  .products-grid,
  .featured-products{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
  }

  .product-title{
    font-size:14px;
  }

  .section-title h2{
    font-size:30px;
  }

  .page-header h2{
    font-size:36px;
  }

  .cart-sidebar{
    width:100%;
  }

}

/* ========================= */
/* SOCIAL */
/* ========================= */

.social-section{
  padding:90px 6%;
}

.social-title{
  text-align:center;
  margin-bottom:50px;
}

.social-title h2{
  font-size:45px;
  color:#2453b3;
}

.social-title p{
  margin-top:15px;
  color:#666;
}

.social-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
}

.social-card{
  background:white;
  border:1px solid #eee;
  padding:35px 20px;
  border-radius:30px;
  text-align:center;
  text-decoration:none;
  transition:0.4s;
  position:relative;
  overflow:hidden;
}

.social-card::before{
  content:'';
  position:absolute;
  width:120%;
  height:120%;
  background:linear-gradient(
    45deg,
    #2453b3,
    #f4b400
  );
  left:-120%;
  top:0;
  transition:0.5s;
  z-index:0;
}

.social-card:hover::before{
  left:0;
}

.social-card:hover{
  transform:translateY(-10px);
}

.social-card *{
  position:relative;
  z-index:2;
}

.social-card:hover h3,
.social-card:hover p{
  color:white;
}

.social-icon{
  font-size:45px;
}

.social-card h3{
  margin-top:20px;
  color:#2453b3;
}

.social-card p{
  margin-top:10px;
  color:#666;
  font-size:14px;
}

/* ========================= */
/* PRODUK ADVANCED */
/* ========================= */

.product-card{
  position:relative;
}

.product-card::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    transparent,
    rgba(36,83,179,0.03)
  );
  opacity:0;
  transition:0.4s;
}

.product-card:hover::before{
  opacity:1;
}

.product-gallery{
  padding:15px;
}

.main-product-image{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:20px;
  transition:0.4s;
}

.product-card:hover .main-product-image{
  transform:scale(1.03);
}

.thumbs{
  display:flex;
  gap:10px;
  margin-top:12px;
}

.thumbs img{
  width:60px;
  height:60px;
  object-fit:cover;
  border-radius:14px;
  cursor:pointer;
  border:2px solid transparent;
  transition:0.3s;
}

.thumbs img:hover{
  border-color:#2453b3;
  transform:translateY(-3px);
}

.product-meta{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:14px;
}

.product-meta span{
  background:#f7f9ff;
  padding:10px 14px;
  border-radius:12px;
  font-size:13px;
  color:#2453b3;
  font-weight:600;
}

/* ========================= */
/* PREMIUM ANIMATION */
/* ========================= */

.product-card{
  animation:fadeUp 0.6s ease;
}

@keyframes fadeUp{

  from{
    opacity:0;
    transform:translateY(40px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

.hero-card{
  animation:floatCard 4s ease-in-out infinite;
}

@keyframes floatCard{

  0%{
    transform:translateY(0);
  }

  50%{
    transform:translateY(-12px);
  }

  100%{
    transform:translateY(0);
  }

}

.primary-btn{
  transition:0.4s;
}

.primary-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 40px rgba(36,83,179,0.3);
}

.secondary-btn{
  transition:0.4s;
}

.secondary-btn:hover{
  transform:translateY(-4px);
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:768px){

  .social-grid{
    grid-template-columns:1fr 1fr;
  }

  .social-title h2{
    font-size:32px;
  }

  .thumbs img{
    width:50px;
    height:50px;
  }

}
/* ========================= */
/* MAPS */
/* ========================= */

.maps-section{
  padding:100px 6%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.maps-badge{
  background:#fff4cf;
  color:#d39a00;
  width:max-content;
  padding:10px 18px;
  border-radius:50px;
  font-weight:700;
}

.maps-left h2{
  margin-top:25px;
  font-size:50px;
  line-height:1.2;
  color:#2453b3;
}

.maps-left p{
  margin-top:20px;
  color:#666;
  line-height:1.9;
  font-size:16px;
}

.maps-button{
  margin-top:30px;
  border:none;
  background:#2453b3;
  color:white;
  padding:16px 30px;
  border-radius:18px;
  font-weight:700;
  cursor:pointer;
  transition:0.4s;
}

.maps-button:hover{
  transform:translateY(-5px);
  box-shadow:0 20px 40px rgba(36,83,179,0.25);
}

.maps-right{
  position:relative;
}

.maps-right iframe{
  width:100%;
  height:450px;
  border:none;
  border-radius:35px;
  box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

/* ========================= */
/* FLOATING WA */
/* ========================= */

.floating-whatsapp{
  position:fixed;
  right:25px;
  bottom:25px;
  z-index:99999;
}

.wa-float-button{
  width:70px;
  height:70px;
  border:none;
  border-radius:50%;
  background:linear-gradient(
    135deg,
    #25d366,
    #128c7e
  );
  color:white;
  font-size:30px;
  cursor:pointer;
  box-shadow:0 20px 40px rgba(37,211,102,0.35);
  animation:waFloat 2s infinite;
}

@keyframes waFloat{

  0%{
    transform:scale(1);
  }

  50%{
    transform:scale(1.08);
  }

  100%{
    transform:scale(1);
  }

}

.wa-box{
  position:absolute;
  right:0;
  bottom:90px;
  width:320px;
  background:white;
  border-radius:28px;
  box-shadow:0 20px 60px rgba(0,0,0,0.15);
  overflow:hidden;
  opacity:0;
  visibility:hidden;
  transform:translateY(20px);
  transition:0.4s;
}

.floating-whatsapp:hover .wa-box{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.wa-header{
  background:linear-gradient(
    135deg,
    #2453b3,
    #3f73df
  );
  padding:20px;
  display:flex;
  align-items:center;
  gap:14px;
}

.wa-dot{
  width:14px;
  height:14px;
  background:#25d366;
  border-radius:50%;
}

.wa-header h4{
  color:white;
  font-size:18px;
}

.wa-header p{
  color:#dbe5ff;
  font-size:13px;
}

.wa-admins{
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:15px;
}

.wa-admin{
  background:#f8faff;
  border-radius:18px;
  padding:16px;
  text-decoration:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  transition:0.3s;
}

.wa-admin:hover{
  transform:translateY(-3px);
  background:#eef4ff;
}

.wa-admin h5{
  color:#2453b3;
  font-size:15px;
}

.wa-admin span{
  color:#666;
  font-size:13px;
}

.wa-chat-btn{
  background:#25d366;
  color:white;
  padding:10px 15px;
  border-radius:12px;
  font-size:13px;
  font-weight:700;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:768px){

  .maps-section{
    grid-template-columns:1fr;
  }

  .maps-left h2{
    font-size:36px;
  }

  .maps-right iframe{
    height:320px;
  }

  .wa-box{
    width:290px;
  }

  .wa-float-button{
    width:65px;
    height:65px;
  }

}
/* ========================= */
/* LOGO SIZE FIX */
/* ========================= */

.logo img{
  width:42px;
  height:42px;
  object-fit:contain;
}

/* FOOTER LOGO */

.footer-logo img{
  width:42px;
  height:42px;
  object-fit:contain;
}

/* SOCIAL CARD ICON */

.social-icon{
  width:55px;
  height:55px;
  margin:auto;
  margin-bottom:18px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.social-icon img{
  width:100%;
  height:100%;
  object-fit:contain;
}

/* SOCIAL CARD */

.social-card{
  padding:28px 18px;
}

.social-card h3{
  font-size:16px;
}

.social-card p{
  font-size:13px;
  margin-top:8px;
}

/* MOBILE */

@media(max-width:768px){

  .logo img{
    width:36px;
    height:36px;
  }

  .footer-logo img{
    width:36px;
    height:36px;
  }

  .social-icon{
    width:45px;
    height:45px;
  }

}
/* ========================= */
/* THUMB ACTIVE */
/* ========================= */

.thumb{
  border:2px solid transparent;
}

.active-thumb{
  border-color:#2453b3 !important;
  transform:scale(1.05);
}

/* ========================= */
/* BUTTON EFFECT */
/* ========================= */

.cart-button{
  transition:0.3s;
}

.cart-button:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 30px rgba(36,83,179,0.25);
}

/* THUMB ACTIVE */

.active-thumb{
  border:2px solid #2453b3 !important;
}

/* THUMB */

.thumb{
  cursor:pointer;
  transition:0.3s;
}

.thumb:hover{
  transform:scale(1.05);
}

/* CART BUTTON */

.cart-button{
  transition:0.3s;
}

.cart-button:hover{
  transform:translateY(-3px);
}

/* SKU & VARIAN */

.product-meta{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:16px;
}

.product-meta span{
  background:#f8faff;
  border:1px solid #e5edff;
  padding:10px 14px;
  border-radius:12px;
  font-size:12px;
  color:#2453b3;
  font-weight:600;
  line-height:1.5;
}

/* ================================= */
/* FINAL MOBILE FIX */
/* ================================= */

@media(max-width:768px){

  body{
    overflow-x:hidden;
  }

  /* NAVBAR */

  .navbar{
    padding:14px 4%;
  }

  .logo{
    gap:10px;
  }

  .logo h1{
    font-size:18px;
  }

  .logo p{
    font-size:11px;
  }

  .nav-btn{
    padding:10px 14px;
    font-size:13px;
    border-radius:12px;
  }

  /* HERO */

  .hero{
    padding:40px 4%;
    gap:30px;
  }

  .hero h2{
    font-size:34px;
    line-height:1.2;
  }

  .hero p{
    font-size:14px;
    line-height:1.7;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .primary-btn,
  .secondary-btn{
    width:100%;
    padding:14px;
    font-size:14px;
  }

  .floating-box{
    display:none;
  }

  /* FEATURE */

  .feature-section{
    padding:10px 4% 50px;
    gap:18px;
  }

  .feature-card{
    padding:24px;
    border-radius:22px;
  }

  /* HOME BANNER */

  .home-banner{
    margin:0 4%;
    padding:25px;
    border-radius:25px;
    gap:20px;
  }

  .banner-left h2{
    font-size:28px;
  }

  .banner-left p{
    font-size:14px;
  }

  /* TITLE */

  .section-title{
    padding:50px 4% 20px;
  }

  .section-title h2{
    font-size:28px;
  }

  /* PRODUK GRID */

  .products-grid,
  .featured-products{
    padding:0 4% 50px;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
  }

  .product-card{
    border-radius:20px;
  }

  .product-gallery{
    padding:10px;
  }

  .main-product-image{
    border-radius:16px;
  }

  .thumbs{
    gap:6px;
    margin-top:8px;
  }

  .thumbs img{
    width:45px;
    height:45px;
    border-radius:10px;
  }

  .product-content{
    padding:14px;
  }

  .product-title{
    font-size:13px;
    line-height:1.5;
    margin-top:12px;
  }

  .product-meta{
    gap:6px;
    margin-bottom:10px;
  }

  .product-meta span{
    font-size:10px;
    padding:8px 10px;
    border-radius:10px;
  }

  .cart-button{
    padding:12px;
    font-size:12px;
    border-radius:12px;
  }

  /* FILTER */

  .filter-box{
    padding:0 4% 25px;
    flex-direction:column;
  }

  .filter-box input,
  .filter-box select{
    width:100%;
    font-size:14px;
    padding:13px;
  }

  /* PAGE HEADER */

  .page-header{
    padding:40px 4% 25px;
  }

  .page-header h2{
    font-size:32px;
  }

  .page-header p{
    font-size:14px;
  }

  /* SOCIAL */

  .social-section{
    padding:60px 4%;
  }

  .social-title h2{
    font-size:28px;
  }

  .social-title p{
    font-size:14px;
  }

  .social-grid{
    grid-template-columns:1fr 1fr;
    gap:14px;
  }

  .social-card{
    border-radius:22px;
    padding:20px 12px;
  }

  .social-icon{
    width:42px;
    height:42px;
  }

  .social-card h3{
    font-size:14px;
    margin-top:14px;
  }

  .social-card p{
    font-size:11px;
  }

  /* MAPS */

  .maps-section{
    padding:60px 4%;
    gap:25px;
  }

  .maps-left h2{
    font-size:30px;
  }

  .maps-left p{
    font-size:14px;
  }

  .maps-right iframe{
    height:260px;
    border-radius:22px;
  }

  /* CART */

  .cart-sidebar{
    width:100%;
    padding:16px;
  }

  .cart-item{
    padding:10px;
    border-radius:14px;
  }

  .cart-item img{
    width:60px;
    height:60px;
    border-radius:12px;
  }

  .cart-title{
    font-size:12px;
  }

  .cart-brand{
    font-size:11px;
  }

  /* FOOTER */

  footer{
    padding:40px 4%;
  }

  .footer-logo h2{
    font-size:22px;
  }

  footer p{
    font-size:13px;
  }

  /* FLOATING WA */

  .floating-whatsapp{
    right:15px;
    bottom:15px;
  }

  .wa-float-button{
    width:58px;
    height:58px;
    font-size:24px;
  }

  .wa-box{
    width:280px;
  }

}
/* ================================= */
/* NAVBAR RIGHT */
/* ================================= */

.navbar-right{
  display:flex;
  align-items:center;
  gap:15px;
}

/* HOME BUTTON */

.home-button{
  text-decoration:none;
  background:linear-gradient(
    135deg,
    #2453b3,
    #3f73df
  );

  color:white;

  padding:14px 22px;

  border-radius:16px;

  font-weight:700;

  transition:0.3s;

  box-shadow:0 10px 25px rgba(36,83,179,0.2);
}

.home-button:hover{
  transform:translateY(-4px);

  box-shadow:0 20px 40px rgba(36,83,179,0.3);
}

/* ================================= */
/* LOGO SIZE BIGGER */
/* ================================= */

.logo{
  display:flex;
  align-items:center;
  gap:18px;
}

.logo img{
  width:85px;
  height:85px;
  object-fit:contain;
}

.logo h1{
  font-size:42px;
  line-height:1.1;
  color:#2453b3;
  font-weight:800;
}

.logo p{
  margin-top:6px;
  font-size:18px;
  color:#f4b400;
  font-weight:600;
}

/* MOBILE */

@media(max-width:768px){

  .logo{
    gap:20px;
  }

  .logo img{
    width:62px;
    height:62px;
  }

  .logo h1{
    font-size:28px;
  }

  .logo p{
    font-size:13px;
  }

  .home-button{
    padding:11px 16px;
    font-size:13px;
    border-radius:13px;
  }

}
/* ================================= */
/* PROMO BANNER */
/* ================================= */

.promo-banner{
  position:relative;
  width:100%;
  padding:0 6%;
  margin-top:10px;
}

.promo-banner img{
  width:100%;
  border-radius:40px;
  object-fit:cover;
  min-height:380px;
  display:block;
  box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

.promo-overlay{
  position:absolute;
  inset:0;
  padding:0 6%;
  display:flex;
  align-items:center;
}

.promo-content{
  max-width:520px;
  color:white;
}

.promo-content span{
  display:inline-block;
  background:rgba(255,255,255,0.2);
  backdrop-filter:blur(10px);
  padding:10px 18px;
  border-radius:50px;
  font-weight:700;
  margin-bottom:22px;
}

.promo-content h2{
  font-size:56px;
  line-height:1.1;
  font-weight:800;
  text-shadow:0 10px 30px rgba(0,0,0,0.25);
}

.promo-content p{
  margin-top:18px;
  line-height:1.8;
  font-size:17px;
  color:#eef4ff;
}

.promo-content button{
  margin-top:28px;
  border:none;
  background:white;
  color:#2453b3;
  padding:16px 28px;
  border-radius:18px;
  font-weight:700;
  cursor:pointer;
  transition:0.3s;
}

.promo-content button:hover{
  transform:translateY(-5px);
  box-shadow:0 20px 40px rgba(255,255,255,0.2);
}

/* MOBILE */

@media(max-width:768px){

  .promo-banner{
    padding:0 4%;
  }

  .promo-banner img{
    min-height:260px;
    border-radius:25px;
  }

  .promo-overlay{
    padding:0 10%;
  }

  .promo-content{
    max-width:100%;
  }

  .promo-content span{
    font-size:11px;
    padding:8px 14px;
  }

  .promo-content h2{
    font-size:30px;
  }

  .promo-content p{
    font-size:13px;
    line-height:1.7;
  }

  .promo-content button{
    padding:13px 20px;
    border-radius:14px;
    font-size:13px;
  }

}
/* ================================= */
/* PROMO BANNER FINAL FIX */
/* ================================= */

.promo-banner{
  width:100%;
  padding:0 6%;
  margin-top:30px;
}

.promo-banner img{
  width:100%;
  height:auto;
  display:block;

  border-radius:35px;

  /* PENTING */
  object-fit:contain;

  background:#fff;

  box-shadow:
    0 20px 50px rgba(0,0,0,0.08);
}

/* HAPUS OVERLAY */
.promo-overlay{
  display:none;
}

/* MOBILE */

@media(max-width:768px){

  .promo-banner{
    padding:0 4%;
    margin-top:20px;
  }

  .promo-banner img{
    border-radius:22px;
  }

}
/* ================================= */
/* FULL IMAGE BANNER */
/* ================================= */

.promo-banner{
  width:100%;
  padding:0;
  margin-top:25px;
}

.promo-banner img{
  width:100%;
  display:block;

  /* FULL TANPA FRAME */
  border-radius:0;

  /* FULL IMAGE */
  object-fit:cover;

  /* HILANGKAN BACKGROUND */
  background:none;

  /* HILANGKAN SHADOW */
  box-shadow:none;
}

/* MOBILE */

@media(max-width:768px){

  .promo-banner{
    margin-top:15px;
  }

  .promo-banner img{
    width:100%;
    height:auto;
  }

}
.wa-float-button{
  width:70px;
  height:70px;

  border:none;

  background:none;

  box-shadow:none;

  cursor:pointer;

  padding:0;

  display:flex;
  align-items:center;
  justify-content:center;

  animation:waFloat 2s infinite;
}

.wa-float-button img{
  width:100%;
  height:100%;
  object-fit:contain;
}

/* MOBILE */

@media(max-width:768px){

  .wa-float-button{
    width:60px;
    height:60px;
  }

}

/* ================================= */
/* BRAND PARTNER */
/* ================================= */

.brand-partner{
  width:100%;
  padding:90px 0;
  overflow:hidden;
  background:#fff;
}

.brand-title{
  text-align:center;
  margin-bottom:50px;
}

.brand-title span{
  display:inline-block;
  background:#eef4ff;
  color:#2453b3;
  padding:10px 18px;
  border-radius:50px;
  font-size:13px;
  font-weight:700;
}

.brand-title h2{
  margin-top:18px;
  font-size:46px;
  color:#2453b3;
  line-height:1.2;
  font-weight:800;
}

.brand-slider{
  position:relative;
  width:100%;
  overflow:hidden;
}

.brand-track{
  display:flex;
  align-items:center;
  gap:35px;
  width:max-content;

  animation:
    brandScroll 30s linear infinite;
}

.brand-track img{
  width:180px;
  height:110px;

  object-fit:contain;

  background:white;

  padding:18px;

  border-radius:24px;

  border:1px solid #eef2ff;

  transition:0.3s;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.05);
}

.brand-track img:hover{
  transform:translateY(-6px);

  box-shadow:
    0 20px 40px rgba(36,83,179,0.12);
}

@keyframes brandScroll{

  0%{
    transform:translateX(0);
  }

  100%{
    transform:translateX(-50%);
  }

}

/* MOBILE */

@media(max-width:768px){

  .brand-partner{
    padding:60px 0;
  }

  .brand-title{
    margin-bottom:35px;
    padding:0 5%;
  }

  .brand-title h2{
    font-size:30px;
  }

  .brand-track{
    gap:18px;
  }

  .brand-track img{
    width:120px;
    height:75px;

    padding:12px;

    border-radius:18px;
  }

}

