
    :root {
      --primary: #de292a;
      --secondary: #070707;
      --accent: #070707;
      --dark: #303030;
      --light: #f9f9f9;
      --transition: all 0.3s ease;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
      background-color: var(--light);
      color: var(--dark);
      overflow-x: hidden;
    }

    /* Language Selector */
   .language-selector {
  display: inline-flex;
  gap: 4px;
  background: #f5f5f5;
  padding: 4px;
  border-radius: 20px;
  align-items: center;
}

.language-selector button {
  border: none;
  background: transparent;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  color: #333;
}

.language-selector button.active {
  background: #d83737;
  color: #fff;
}


    /* Header */
    header {
      background-color: white;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 999;
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 5%;
      max-width: 1400px;
      margin: 0 auto;
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo-img {
      height: 50px;
      margin-right: 10px;
    }

    .logo-text h1 {
      font-size: 1.5rem;
      color: var(--primary);
      font-weight: 700;
    }

    .logo-text span {
      font-size: 0.8rem;
      color: var(--accent);
      display: block;
    }

    .nav-links {
      display: flex;
      list-style: none;
       justify-content: center;
    }

    .nav-links li {
      margin-left: 2rem;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--dark);
      font-weight: 500;
      transition: var(--transition);
      position: relative;
    }

    .nav-links a:hover {
      color: var(--primary);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -5px;
      left: 0;
      background-color: var(--primary);
      transition: var(--transition);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: var(--primary);
      cursor: pointer;
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(135deg, rgba(240, 60, 6, 0.76), rgba(247,143,179,0.8)),
                  url('https://image.jpnn.com/resize/1200x800-80/arsip/normal/2022/08/23/pt-neo-kosmetika-industri-terus-berinovasi-memberikan-layana-8x0h.jpg') center/cover no-repeat;
      height: 80vh;
      display: flex;
      align-items: center;
      padding: 0 5%;
      position: relative;
      overflow: hidden;
    }

    .hero-content {
      max-width: 600px;
      color: white;
      animation: fadeInUp 1s ease;
    }

    .hero h2 {
      font-size: 3rem;
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    .hero p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      line-height: 1.6;
    }

    .cta-button {
      display: inline-block;
      background-color: white;
      color: var(--primary);
      padding: 12px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      transition: var(--transition);
      border: 2px solid white;
    }

    .cta-button:hover {
      background-color: transparent;
      color: white;
    }

    /* About Section */
    .section {
      padding: 5rem 5%;
      max-width: 1400px;
      margin: 0 auto;
    }

    .section-title {
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-title h2 {
      font-size: 2.5rem;
      color: #2160bd;
      position: relative;
      display: inline-block;
    }

    .section-title h2::after {
      content: '';
      position: absolute;
      width: 50%;
      height: 3px;
      bottom: -10px;
      left: 25%;
      
    }

    .about-container {
      display: flex;
      align-items: center;
      gap: 3rem;
    }

    .about-img {
      flex: 1;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .about-img img {
      width: 100%;
      height: auto;
      display: block;
    }

    .about-content {
      flex: 1;
    }

    .about-content h3 {
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
      color:  white;
    }

    .about-content p {
      margin-bottom: 1rem;
      line-height: 1.8;
    }

    /* Services Section */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .service-card {
      background-color: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: var(--transition);
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

    .service-img {
      height: 200px;
      overflow: hidden;
    }

    .service-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .service-details {
      padding: 1.5rem;
    }

    .service-details h3 {
      font-size: 1.3rem;
      margin-bottom: 1rem;
      color: var(--primary);
    }

    .service-details p {
      color: #666;
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }

    /* Products Section */
    .products-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }

    .product-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: var(--transition);
    }

    .product-card:hover {
      transform: scale(1.03);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .product-img {
      height: 250px;
      overflow: hidden;
      position: relative;
    }

    .product-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .product-info {
      padding: 1.5rem;
    }

    .product-info h3 {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
      color: var(--dark);
    }

    .product-info p {
      color: #666;
      font-size: 0.9rem;
      margin-bottom: 1rem;
    }

    .product-category {
      display: inline-block;
      background-color: #de292a;
      color: white;
      padding: 3px 10px;
      border-radius: 20px;
      font-size: 0.7rem;
      margin-bottom: 1rem;
    }

    /* Contact Section */
    .contact-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 3rem;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .info-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }

    .info-icon {
      background-color: #de292a;
      color: white;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-form {
      background-color: white;
      padding: 2rem;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 500;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 1rem;
      transition: var(--transition);
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: var(--primary);
      outline: none;
    }

    .form-group textarea {
      min-height: 150px;
    }

    .submit-btn {
      background-color: var(--primary);
      color: white;
      border: none;
      padding: 12px 30px;
      border-radius: 30px;
      cursor: pointer;
      font-weight: 600;
      transition: var(--transition);
    }

    .submit-btn:hover {
      background-color: #1c1b1f;
    }

    /* Footer */
    footer {
      background-color: var(--dark);
      color: white;
      padding: 3rem 5% 1rem;
    }

    .footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      max-width: 1400px;
      margin: 0 auto 2rem;
    }

    .footer-logo {
      margin-bottom: 1.5rem;
    }

    .footer-logo h2 {
      font-size: 1.5rem;
      color: white;
      margin-bottom: 5px;
    }

    .footer-logo span {
      font-size: 0.8rem;
      color: #f5f5f5;
    }

    .footer-links h3 {
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
      color: #f5f5f5;
      position: relative;
    }

    .footer-links h3::after {
      content: '';
      position: absolute;
      width: 40px;
      height: 2px;
      bottom: -8px;
      left: 0;
    
    }

    .footer-links ul {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 0.8rem;
    }

    .footer-links a {
      color: #ccc;
      text-decoration: none;
      transition: var(--transition);
    }

    .footer-links a:hover {
      color: white;
      padding-left: 5px;
    }

    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }

    .social-icon {
      background-color: #444;
      color: white;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }

    .social-icon:hover {
      background-color: var(--accent);
    }

    .copyright {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid #444;
      font-size: 0.9rem;
      color: #999;
    }

    /* Animation */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Mobile Responsive */
    @media (max-width: 992px) {
      .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding-top: 3rem;
        transition: var(--transition);
      }

      .nav-links.active {
        left: 0;
      }

      .nav-links li {
        margin: 1rem 0;
      }

      .mobile-menu-btn {
        display: block;
      }

      .hero h2 {
        font-size: 2.5rem;
      }

      .hero p {
        font-size: 1.1rem;
      }

      .about-container {
        flex-direction: column;
      }

      .about-img {
        order: -1;
        width: 100%;
      }
    }

    @media (max-width: 768px) {
      .hero h2 {
        font-size: 2rem;
      }

      .section {
        padding: 3rem 5%;
      }

      .section-title h2 {
        font-size: 2rem;
      }
    }

    .procedure-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.step-number {
  font-size: 2rem;
  font-weight: bold;
  color: #d83737;
  background: #ddb4b3;
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.why-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.why-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
}

.why-card i {
  font-size: 2.5rem;
  color: #de292a;
  margin-bottom: 1rem;
}


.how-work-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.how-box {
  width: 300px;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.how-box::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

.how-content {
  position: relative;
  z-index: 2;
}

.how-content h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  color: #fff;
}

/* Active Ingredients Claims Section */
.claims-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  padding: 30px 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.claim-item {
  padding: 20px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.claim-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.claim-item.red {
  background-color: #D32F2F;
}

.claim-item.dark {
  background-color: #000;
}
.claim-item i {
  margin-right: 8px;
}
.claims-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 30px 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.claim-item {
  padding: 25px 15px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
}

.claim-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.claim-item i {
  font-size: 28px;
  margin-bottom: 10px;
}

.claim-item.red {
  background-color: #D32F2F;
}

.claim-item.dark {
  background-color: #000;
}

@media (max-width: 992px) {
  .claims-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .claims-grid {
    grid-template-columns: 1fr;
  }
}

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loader img {
  width: 100px; /* Ubah ukuran sesuai kebutuhan */
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

/* Tambahkan efek shadow untuk header saat scroll */
header.scrolled {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

header.scrolled .nav-links li a {
  color: #333;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-links a {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  animation: slideIn 0.4s ease forwards;
}

.nav-links li:nth-child(1) a { animation-delay: 0.1s; }
.nav-links li:nth-child(2) a { animation-delay: 0.2s; }
.nav-links li:nth-child(3) a { animation-delay: 0.3s; }
/* Tambah sesuai jumlah menu */

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-links a:hover {
  color: var(--primary);
  transform: scale(1.05);
  transition: all 0.3s ease;
}
header {
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 0.5rem 5%;
}
.about-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.about-container.reverse {
    flex-direction: row-reverse;
}

.about-img img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Responsive Breakpoint */
@media (max-width: 768px) {
    .about-container,
    .about-container.reverse {
        flex-direction: column !important;
        text-align: center;
    }

    .about-img img {
        max-width: 100%;
    }
}



