/* Reset Default Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: #f4f4f4;
    color: #333;
    text-align: center;
    line-height: 1.6;
    padding-top: 60px;
    padding-bottom: 60px; /* space for bottom nav */
}

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #FFD93D;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 20px;
    font-weight: bold;
    font-size: 16px;
    z-index: 1000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid red;
}
.top-bar img {
    height: 60px; /* Sesuaikan ukuran logo */
    margin-right:10px;
}
.promo-text {
    background: #fff;
    color: #ff6600;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    animation: blinkColor 1s infinite alternate;
}
@keyframes blinkColor {
    0% { background: #fff; color: #ff6600; }
    25% { background: #ff6600; color: #fff; }
    50% { background: #000; color: #ff0; }
    75% { background: #008000; color: #fff; }
    100% { background: #fff; color: #ff6600; }
}

/* General Section Styling */
.section {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;  /* Jarak antar section */
    padding: 50px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Header */
.header {
    background: #229954;/* Orange #ff8c00 */
    color: #ffffff;
  	padding-top:80px;
  	padding-bottom:50px;
}

.header h1 {
    font-size: 3rem;
    font-weight: bold;
}

.header p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Call-To-Action */
.cta {
    background: #ffd700; /* Gold */
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.5rem;
    font-weight: bold;
    background: #e91e63; /* Pink */
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.4s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin-top: 15px;
}

.btn:hover {
    background: #ff5722; /* Deep Orange */
    transform: scale(1.1);
}

.why {
    background: #e8f5e9;
  	padding-top:70px;
  	padding-bottom:50px;
}
.buy {
    background: #ffffff;
  	padding-top:80px;
  	padding-bottom:70px;
}
.price {
    font-size: 1.5em;
    color: #007bff;
}
.access {
    font-size: 1.1em;
    color: #000000;
}

/* Features Section */
.features {
    background: #ffffff;
  	padding-top:50px;
  	padding-bottom:50px;
}

.features h2 {
    color: #333;
    /*margin-bottom: 20px;*/
}

.features .feature {
    padding: 20px;
    background: #ffcc80; /* Light Orange */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    margin: 15px 0;
}

.features .feature:hover {
    transform: translateY(-5px);
    background: #ffb74d; /* Darker Orange */
}

.features .feature h3 {
    margin-bottom: 10px;
    color: #e91e63; /* Pink */
}

.product-list, .bonus-list {
    list-style: none;
    padding: 0;
}

.product-list li, .bonus-list li {
    background: #eeeeee;
    margin: 7px auto;
    padding: 5px 10px 5px 10px;
    border-radius: 5px;
    font-size: 1.1em;
  	width: 90%;
  	max-width: 700px;
  	text-align: left;
}


/* FAQ Section */
.faq {
    background: #2196f3; /* Blue */
    color: #ffffff;
  	display: block;
  	padding-top:30px;
  	padding-bottom:50px;
}

.faq h2 {
    margin-bottom: 20px;
}

.faq-item {
    background: #1976d2; /* Darker Blue */
    padding: 15px;
    border-radius: 5px;
    margin: 0 auto 15px;
    text-align: left;
  	width: 90%;
  	max-width: 900px;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #ffeb3b; /* Yellow */
}

.faq-item p {
    font-size: 1rem;
    color: #eeeeee;
}

/* Footer */
.footer {
    background: #333333;
    color: #ffffff;
    padding-top:20px;
  	padding-bottom:20px;
}

/*  */
.container {
    max-width: 95%;
    margin: auto;
    padding: 15px;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 10px;
    justify-content: center;
    margin:30px auto 30px;
}
.theme-box {
    background-color: #fff3e0;
    border: 1px solid #bbb;
    padding: 10px;
    text-align: center;
    transition: background-color 0.3s;
}
.theme-box:hover {
    background-color: yellow;
}
        .bg-light-blue { background-color: #e3f2fd; }
        .bg-light-green { background-color: #e8f5e9; }
        .bg-light-yellow { background-color: #fffde7; }
        .bg-light-pink { background-color: #fce4ec; }
        .bg-light-cyan { background-color: #e0f7fa; }
        .bg-light-purple { background-color: #f3e5f5; }
        .bg-light-orange { background-color: #fff3e0; }
        .bg-light-grey { background-color: #f5f5f5; }
        .bg-light-lime { background-color: #f9fbe7; }
        .bg-light-teal { background-color: #e0f2f1; }

/* Alur */
    .containera {
      max-width: 800px;
      margin: auto;
      background: #ffffff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 0 12px rgba(0,0,0,0.1);
    }

    h2 {
      text-align: center;
      color: #1e3a8a;
      margin-bottom: 20px;
    }

    .steps {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .step {
      background: #e0f2fe;
      padding: 15px;
      border-left: 6px solid #0284c7;
      border-radius: 8px;
    }

    .step span {
      font-weight: bold;
      color: #0369a1;
    }

    .note {
      margin-top: 25px;
      background: #fff8e1;
      padding: 15px;
      border-left: 6px solid #f59e0b;
      border-radius: 8px;
      color: #92400e;
    }

    .contacts {
      margin-top: 20px;
    }

    .contact-boxes {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
    }

    .contact-box {
      background: #ecfdf5;
      border-left: 6px solid #10b981;
      border-radius: 8px;
      padding: 15px;
      flex: 1 1 220px;
      min-width: 200px;
      color: #065f46;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    }

    .contact-box h4 {
      margin: 0 0 8px;
      font-size: 1.1em;
    }

    .contact-box a {
      display: inline-block;
      margin-top: 8px;
      background-color: #10b981;
      color: #fff;
      padding: 6px 12px;
      text-decoration: none;
      border-radius: 5px;
      font-size: 0.9em;
    }

    .contact-box a:hover {
      background-color: #059669;
    }

/* bottom nav */
    .bottom-nav {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 60px;
      background: #ffffff;
      box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
      display: flex;
      justify-content: space-around;
      align-items: center;
      z-index: 999;
      border-top: 1px solid #ddd;
    }

    .bottom-nav a {
      flex: 1;
      text-align: center;
      font-size: 12px;
      text-decoration: none;
      color: #444;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 6px 0;
      transition: all 0.2s ease;
    }

    .bottom-nav a:hover {
      color: #007bff;
    }

    .bottom-nav a.active {
      color: #007bff;
    }

    .bottom-nav i {
      font-size: 20px;
      margin-bottom: 2px;
    }

    .wa-btn {
      color: #25D366 !important;
      font-weight: bold;
    }

/* Responsive */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2.2rem;
    }

    .cta .btn {
        font-size: 1.2rem;
        padding: 12px 20px;
    }

    .features .feature {
        padding: 15px;
    }
    .top-bar img {
    height: 40px; /* Sesuaikan ukuran logo */
    margin-right:10px;
    }
    .promo-text {
        background: #fff;
        color: #ff6600;
        padding: 5px 15px;
        border-radius: 5px;
        font-size: 12px;
        font-weight: bold;
        animation: blinkColor 1s infinite alternate;
    }
    .contact-boxes {
      flex-direction: column;
      align-items: center;
    }
    .bottom-nav a {
      font-size: 14px;
    }

    .bottom-nav i {
      font-size: 22px;
    }
}
