/* Base Styles */
:root {
    --primary-color: #2ecc71; /* Hijau */
    --secondary-color: #95a5a6; /* Abu-abu */
    --light-color: #ecf0f1; /* Abu muda */
    --dark-color: #2c3e50; /* Dark blue */
    --white-color: #ffffff;
    --black-color: #333333;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--black-color);
    background-color: var(--white-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: #27ae60;
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
#header {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.header-content {
    position: relative;
    z-index: 2;
    color: var(--white-color);
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--white-color);
}

.logo h1 span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--white-color);
    font-weight: 500;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-links a:hover:after {
    width: 100%;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #27ae60;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    color: var(--white-color);
}

.cta-button.primary {
    background: var(--primary-color);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--white-color);
    margin-left: 15px;
}

.cta-button.secondary:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

.burger {
    display: none;
    padding: 15px; 
    margin-left: 15px; 
    cursor: pointer;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0;
}

.hero-text {
    flex: 1;
    padding-right: 50px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text h1 span {
    color: var(--primary-color);
}

.subheadline {
    font-size: 18px;
    margin-bottom: 30px;
    padding: 10px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
}

.hero-image {
    flex: 1;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Benefit Section */
.benefits {
    padding: 80px 0;
    background-color: var(--light-color);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-title h2 span {
    color: var(--primary-color);
}

.section-title p {
    color: var(--secondary-color);
    font-size: 18px;
}

.benefit-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Portfolio Section */
.portfolio {
    padding: 50px 0;
}

.portfolio-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 0px;
}

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.portfolio-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(46, 204, 113, 0.9);
    color: var(--white-color);
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    bottom: 0;
}

.portfolio-overlay h3 {
    margin-bottom: 10px;
}

.view-button {
    display: inline-block;
    padding: 5px 15px;
    background: var(--white-color);
    color: var(--primary-color);
    border-radius: 5px;
    font-weight: 500;
    transition: var(--transition);
}

.view-button:hover {
    background: var(--dark-color);
    color: var(--white-color);
}

.center-button {
    text-align: center;
}

/* Pricing Section */
.pricing {
    padding: 50px 0;
    background-color: var(--light-color);
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
}

.popular-tag {
    position: absolute;
    top: 0PX;
    right: 10px;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 5px 15px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    font-weight: 600;
}

.pricing-header {
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
    color: var(--white-color);
}

.pricing-header h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.price {
    text-decoration: line-through;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 10px;
}

.price-new {
    
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 10px;
}


.price-disc{
   background: red;
            padding: 3px 8px;
            border-radius: 5px;
            display: inline-block;
            font-weight: bold;
}

.pricing-features {
    padding: 30px;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.pricing-features i {
    margin-right: 10px;
    color: var(--primary-color);
}

.pricing-features .fa-check {
    color: var(--primary-color);
}

.pricing-features .fa-times {
    color: var(--secondary-color);
}

.pricing-card .cta-button {
    display: block;
    text-align: center;
    margin: 0 30px 30px;
}

.pricing-note {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: var(--secondary-color);
}

/* Process Section */
.process {
    padding: 80px 0;
}

.process-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 50px;
    right: -30px;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    margin-bottom: 15px;
}

/* Testimonial Section */
.testimonial {
    padding: 80px 0;
    background-color: var(--light-color);
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content p:before {
    content: '"';
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.rating {
    color: #f1c40f;
}

/* Trust Section */
.trust {
    padding: 80px 0;
}

.trust-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.trust-item {
    display: flex;
    padding-left: 10px;
    align-items: center; 
}

.trust-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-right: 10px;
    flex-shrink: 0;
}

.trust-content h3 {
    margin-bottom: 10px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: var(--light-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: var(--white-color);
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:after {
    content: '+';
    font-size: 24px;
    color: var(--primary-color);
}

.faq-question.active:after {
    content: '-';
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--white-color);
}

.faq-answer p {
    padding: 20px 0;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
    color: var(--white-color);
    text-align: center;
}

.cta-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-container p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button.big {
    padding: 15px 30px;
    font-size: 20px;
}

.cta-button.big i {
    margin-right: 15px;
}

.cta-note {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.7;
}

/* Footer */
#footer {
    position: relative;
    background: var(--dark-color);
    color: var(--white-color);
    padding: 80px 0 0;
}

#footer-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.footer-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section.about .logo h2 {
    color: var(--white-color);
   padding-left: 10px;
    margin-bottom: 20px;
}

.footer-section.about p {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
}
.footer-section.about .misi-list {
  list-style-type: disc;
  padding-left: 30px;
}

.footer-section.about .misi-list li {
    padding-left: 10px;
    padding-right: 10px;
  color: white;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}




.socials a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: var(--transition);
}

.socials a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.footer-section.links h3,
.footer-section.contact h3 {
    font-size: 22px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    padding-left: 10px;
}

.footer-section.links h3:after,
.footer-section.contact h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-section.links li {
    margin-bottom: 10px;
    padding-left: 10px;
}

.footer-section.links a {
    color: #bdc3c7;
    transition: var(--transition);
}

.footer-section.links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-section.contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.footer-section.contact i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    font-size: 14px;
}

.footer-bottom a {
    color: #bdc3c7;
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-text {
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    .burger {
        display: none;
    }
    
    .nav-links {
         border-radius: 10%;
     position: fixed;
    top: 80px; /* Sesuaikan dengan tinggi header */
    left: -100%;
    width: 10px; /* Lebar menu sidebar */
    height: fit-content; /* Ganti dari full height ke auto */
    max-height: calc(100vh - 100px); /* Batasi tinggi maksimum */
    background:  rgba(0,0,0,0.5);
    flex-direction: column;
    align-items: flex-start; /* Rata kiri */
    padding: 20px;
    transition: var(--transition);
    z-index: 9999;
    overflow-y: auto; /* Scroll jika konten panjang */
   
    }
    

    
    .nav-links.active {
    top: 80px;
    left: 0; /* Muncul dari kiri */
    width: 40%;

    }
    
    .nav-links li {
        margin: 15px ;
      
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 0;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
        padding: 15px; 
    }
    
    .process-step:not(:last-child):after {
        display: none;
    }
    
    .process-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 28px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .cta-button.secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .pricing-container {
        grid-template-columns: 1fr;
    }
}
#wa-popup {
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 1000;
  font-family: sans-serif;
  text-align: center; /* Pusatkan teks */
}

#wa-popup a {
  text-decoration: none;
  color: #444;
  display: flex;
  flex-direction: column; /* Susun vertikal (ikon di atas, teks di bawah) */
  align-items: center; /* Rata tengah horizontal */
  gap: 4px; /* Jarak antara ikon dan teks */
}

.wa-icon {
  background-color: #25D366;
  width: 50px; /* Ukuran tetap persegi */
  height: 50px;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.wa-icon:hover {
  transform: scale(1.1);
}

.wa-icon img {
  width: 30px;
  height: 30px;
}

#wa-popup span {
  font-size: 13px;
  color: white;
  background: rgba(0, 0, 0, 0.7);
  padding: 4px 8px;
  border-radius: 12px;
  white-space: nowrap; /* Pastikan teks tetap 1 baris */
}

/* Countdown Styles */
.countdown-container {
  background: linear-gradient(135deg, #25d366, #128C7E);
  color: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  margin: 30px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.countdown-container h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-weight: 500;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.countdown-number {
  font-size: 2rem;
  font-weight: 700;
  background: rgba(255,255,255,0.2);
  padding: 10px 15px;
  border-radius: 8px;
  min-width: 50px;
  display: inline-block;
  text-align: center;
}

.countdown-label {
  font-size: 0.8rem;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.countdown-separator {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 5px;
  align-self: flex-end;
  padding-bottom: 10px;
}

.countdown-note {
  font-size: 0.8rem;
  font-style: italic;
  margin-top: 10px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 600px) {
  .countdown-number {
    font-size: 1.5rem;
    padding: 8px 12px;
  }
  
  .countdown-label {
    font-size: 0.7rem;
  }
  
  .countdown-separator {
    font-size: 1.2rem;
    padding-bottom: 8px;
  }
}


