:root {
      --primary: #48665f;
      --secondary: #1b272d;
      --accent: #7AAA9F;
      --bg: #f5f7f6;
      --dark: #1b272d;
      --light: #FFFFFF;
      --text: #3a3a3a;
      --orange: #f69144;
      --gradient: linear-gradient(135deg, var(--primary), var(--accent));
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.7;
      overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      color: var(--dark);
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
      padding: 0 20px;
    }

    section {
      padding: 80px 0;
      position: relative;
    }

    /* Hero Section */
    .hero {
      background: var(--bg);
      position: relative;
      overflow: hidden;
      padding: 100px 0;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 100%;
      height: 200%;
      background: radial-gradient(circle, rgba(72, 102, 95, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
      z-index: 0;
    }

    .hero-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      z-index: 2;
      gap: 40px;
    }

    .hero-text {
      flex: 1;
      max-width: 600px;
    }

    .hero h1 {
      font-size: 3rem;
      margin-bottom: 20px;
      line-height: 1.2;
      background: var(--gradient);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
      display: inline-block;
    }

    .hero h1 .orange-text {
      background: none;
      -webkit-text-fill-color: var(--orange);
      color: var(--orange);
      text-shadow: 0 2px 4px rgba(246, 145, 68, 0.3);
      font-weight: 600;
    }

    .hero p {
      font-size: 1.1rem;
      margin-bottom: 30px;
      color: var(--text);
      opacity: 0.9;
    }

    .hero-image {
      flex: 1;
      position: relative;
      max-width: 500px;
    }

    .hero-image img {
      width: 100%;
      border-radius: 16px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      transform: perspective(1000px) rotateY(-10deg);
      transition: transform 0.5s ease;
    }

    .hero-image:hover img {
      transform: perspective(1000px) rotateY(0deg);
    }

    .hero-image::after {
      content: '';
      position: absolute;
      top: -20px;
      left: -20px;
      right: 20px;
      bottom: 20px;
      border: 2px solid var(--primary);
      border-radius: 16px;
      z-index: -1;
      opacity: 0.5;
    }

    .cta-group {
      display: flex;
      gap: 15px;
      margin-top: 30px;
      flex-wrap: wrap;
    }

    .cta {
      padding: 14px 32px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .cta-primary {
      background: var(--gradient);
      color: white;
    }

    .cta-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(72, 102, 95, 0.3);
    }

    .cta-secondary {
      background: white;
      color: var(--primary);
      border: 1px solid var(--primary);
    }

    .cta-secondary:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-3px);
    }

    /* Features Section */
    .features {
      background: white;
      position: relative;
      text-align: center;
    }

    .features::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100px;
      background: var(--bg);
      clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-header h2 {
      font-size: 2.5rem;
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }

    .section-header h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--gradient);
      border-radius: 2px;
    }

    .section-header p {
      max-width: 700px;
      margin: 0 auto;
      color: var(--text);
      opacity: 0.8;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .feature {
      background: white;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
      z-index: 1;
      border: 1px solid rgba(122, 170, 159, 0.2);
    }

    .feature::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--gradient);
      opacity: 0;
      z-index: -1;
      transition: opacity 0.3s ease;
    }

    .feature:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

    .feature:hover::before {
      opacity: 0.05;
    }

    .feature i {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: var(--primary);
      transition: all 0.3s ease;
    }

    .feature:hover i {
      color: var(--accent);
      transform: scale(1.1);
    }

    .feature h3 {
      font-size: 1.4rem;
      margin-bottom: 15px;
      color: var(--secondary);
    }

    .feature p {
      color: var(--text);
      opacity: 0.8;
    }

    /* Template Section */
.templates {
  background: var(--bg);
  padding: 100px 0;
  position: relative;
  text-align: center;
}

.templates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.template-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
}

.template-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.template-image {
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
}

.template-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
  background: #f5f5f5;
}

.template-card:hover .template-image img {
  transform: scale(1.05);
}

.coming-soon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 39, 45, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.coming-soon-overlay.show {
  opacity: 1;
}

.coming-soon-overlay i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--orange);
}

.coming-soon-overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: white;
}

.template-content {
  padding: 20px;
  text-align: center;
}

.template-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--secondary);
}

.template-content p {
  color: var(--text);
  opacity: 0.8;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.template-btn {
  display: inline-block;
  padding: 8px 20px;
  background: var(--gradient);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.template-btn:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.template-btn.disabled {
  background: #ccc !important;
  cursor: not-allowed;
}

.view-all-templates {
  margin-top: 50px;
  text-align: center;
}

.view-all-btn {
  display: inline-block;
  padding: 14px 40px;
  background: var(--gradient);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(72, 102, 95, 0.3);
}

.view-all-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(72, 102, 95, 0.4);
}

.view-all-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.view-all-btn:hover i {
  transform: translateX(5px);
}

/* Dark Overlay untuk template coming soon */
.dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.63);
  z-index: 1;
}

.template-image {
  position: relative;
}

.template-image img {
  position: relative;
  z-index: 0;
}

.coming-soon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 39, 45, 0.7); /* Dipergelap */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 20px;
  z-index: 2; /* Lebih tinggi dari dark-overlay */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .templates-grid {
    grid-template-columns: 1fr;
  }
  
  .template-image {
    height: 200px;
  }
}

    /* Testimonials */
    .testimonials {
      background: white;
      padding: 100px 0;
    }

    .testimonial-slider {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
    }

    .testimonial {
      background: white;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
      text-align: center;
      margin: 20px;
      border: 1px solid rgba(122, 170, 159, 0.2);
    }

    .testimonial-avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0 auto 20px;
      border: 3px solid var(--primary);
    }

    .testimonial-content {
      font-style: italic;
      margin-bottom: 20px;
      color: var(--text);
    }

    .testimonial-author {
      font-weight: 600;
      color: var(--secondary);
    }

    /* FAQ Section */
    .faq {
      background: var(--bg);
      padding: 100px 0;
    }

    .accordion {
      max-width: 800px;
      margin: 0 auto;
    }

    .accordion-item {
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(122, 170, 159, 0.2);
    }

    .accordion-header {
      background: white;
      padding: 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      transition: all 0.3s ease;
      color: var(--secondary);
    }

    .accordion-header:hover {
      color: var(--primary);
    }

    .accordion-header i {
      transition: transform 0.3s ease;
      color: var(--primary);
    }

    .accordion-header.active i {
      transform: rotate(180deg);
    }

    .accordion-content {
      background: white;
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .accordion-content.show {
      padding: 20px;
      max-height: 500px;
    }

    /* CTA Section */
    .cta-section {
      background: var(--gradient);
      color: white;
      text-align: center;
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
      z-index: 1;
    }

    .cta-content {
      position: relative;
      z-index: 2;
    }

    .cta-section h2 {
      color: white;
      margin-bottom: 20px;
      font-size: 2.5rem;
    }

    .cta-section p {
      max-width: 700px;
      margin: 0 auto 30px;
      opacity: 0.9;
    }

    .cta-section .cta {
      background: white;
      color: var(--primary);
      font-weight: 700;
      padding: 16px 40px;
    }

    .cta-section .cta:hover {
      background: rgba(255, 255, 255, 0.9);
      transform: translateY(-3px);
    }

    /* Footer */
    footer {
      background: var(--secondary);
      color: white;
      padding: 60px 0 20px;
      text-align: center;
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-column {
      flex: 1;
      min-width: 200px;
      text-align: left;
    }

    .footer-column h3 {
      color: white;
      margin-bottom: 20px;
      font-size: 1.2rem;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--accent);
    }

    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }

    .social-links a {
      color: white;
      background: rgba(255, 255, 255, 0.1);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .social-links a:hover {
      background: var(--accent);
      transform: translateY(-3px);
    }

    .copyright {
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.9rem;
    }

    /* Animations */
    @keyframes float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-15px);
      }
    }

    .floating {
      animation: float 6s ease-in-out infinite;
    }

    /* Responsive */
    @media (max-width: 1200px) {
      .template-card {
        width: calc(33.33% - 30px);
      }
    }
    
    @media (max-width: 992px) {
      .hero-content {
        flex-direction: column;
        text-align: center;
      }

      .hero-text {
        max-width: 100%;
      }

      .hero-image {
        margin-top: 40px;
      }

      .hero h1 {
        font-size: 2.5rem;
      }

      .section-header h2 {
        font-size: 2rem;
      }
      
      .template-card {
        width: calc(50% - 30px);
      }
    }

    @media (max-width: 768px) {
      section {
        padding: 60px 0;
      }

      .hero {
        padding: 80px 0;
      }

      .hero h1 {
        font-size: 2rem;
      }

      .cta-group {
        justify-content: center;
      }

      .footer-column {
        min-width: 100%;
        text-align: center;
        margin-bottom: 30px;
      }

      .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .social-links {
        justify-content: center;
      }
      
      .template-card {
        width: 100%;
        max-width: 400px;
      }
    }

    @media (max-width: 576px) {
      .hero h1 {
        font-size: 1.8rem;
      }

      .hero p {
        font-size: 1rem;
      }

      .cta {
        width: 100%;
        justify-content: center;
      }

      .section-header h2 {
        font-size: 1.8rem;
      }
    }