:root {
  --primary: #0a0a0a;
  --secondary: #ffffff;
  --accent1: #0077FF;
  --accent2: #E6E6E6;
  --highlight: #7ED957;
  --dark: #1A1A1A;
  --light: #f8f9fa;
  --gray: #6c757d;
  --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-2: linear-gradient(135deg, #7ED957 0%, #5ba935 100%);
  --gradient-3: linear-gradient(135deg, #0077FF 0%, #005cc8 100%);
  --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-heavy: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--secondary);
  background-color: var(--primary);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

header.scrolled {
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  transition: padding 0.4s ease;
}

header.scrolled .header-container {
  padding: 15px 0;
}

.logo {
  font-size: 32px;
  font-weight: 900;
  color: var(--secondary);
  letter-spacing: -0.02em;
  position: relative;
  transition: all 0.3s ease;
}

.logo-img {
  height: 50px; 
  width: auto;  
  display: block;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-2);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover::after {
  width: 100%;
}

.logo span {
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-2);
  border-radius: 50px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.nav-menu a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.nav-menu a:hover {
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(126, 217, 87, 0.25);
}

.hamburger {
  display: none;
  cursor: pointer;
  color: var(--secondary);
  font-size: 24px;
  padding: 12px;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0);
}

.hamburger:hover {
  background-color: rgba(255, 255, 255, 0);
  transform: scale(1.05);
}

/* Hero Section with Single Photo */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
      135deg, 
      rgba(0, 0, 0, 0.7) 0%, 
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0.8) 100%
  ), 
  url('../img/hero-image.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      ellipse at center top,
      rgba(126, 217, 87, 0.05) 0%,
      transparent 60%
  );
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(10, 10, 10, 0.4) 50%,
      rgba(10, 10, 10, 0.8) 100%
  );
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 2rem 0;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 1.1;
  opacity: 0;
  animation: fadeInUp 1.2s ease 0.3s forwards;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero h1 .highlight {
  background: linear-gradient(135deg, #7ED957 0%, #90E96B 50%, #7ED957 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #7ED957 0%, #90E96B 50%, #7ED957 100%);
  border-radius: 2px;
  animation: underlineExpand 1.5s ease 1.8s forwards;
  transform: scaleX(0);
  transform-origin: left;
  box-shadow: 0 0 20px rgba(126, 217, 87, 0.5);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 50px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeInUp 1.2s ease 0.6s forwards;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1.2s ease 0.9s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  gap: 8px;
}

.btn-primary {
  background: var(--gradient-2);
  color: var(--primary);
  box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
}

.btn-secondary {
  background: transparent;
  color: var(--secondary);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* Features Section */
.features {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--primary) 0%, #111 100%);
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 20px;
  position: relative;
}

.section-title p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-2);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-heavy);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--gradient-2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--secondary);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Products Section */
.products {
  padding: 120px 0;
  background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.product-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
  border-color: rgba(126, 217, 87, 0.3);
}

.product-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(126, 217, 87, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-img::after {
  opacity: 1;
}

.product-content {
  padding: 2rem;
}

.product-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--secondary);
}

.product-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  line-height: 1.6;
}

.product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  background: var(--gradient-2);
  color: var(--primary);
  width: 100%;
}

.product-btn:hover {
  background: linear-gradient(135deg, #5ba935 0%, #7ED957 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(126, 217, 87, 0.3);
}

.product-btn i {
  margin-right: 8px;
}

/* Animasi fade-in untuk product cards */
.products-grid .product-card:nth-child(1) { animation-delay: 0.1s; }
.products-grid .product-card:nth-child(2) { animation-delay: 0.2s; }
.products-grid .product-card:nth-child(3) { animation-delay: 0.3s; }
.products-grid .product-card:nth-child(4) { animation-delay: 0.4s; }
.products-grid .product-card:nth-child(5) { animation-delay: 0.5s; }
.products-grid .product-card:nth-child(6) { animation-delay: 0.6s; }
.products-grid .product-card:nth-child(7) { animation-delay: 0.7s; }
.products-grid .product-card:nth-child(8) { animation-delay: 0.8s; }
.products-grid .product-card:nth-child(9) { animation-delay: 0.9s; }

/* Responsive Design untuk Produk */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .product-img {
    height: 200px;
  }
  
  .product-content {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .products {
    padding: 80px 0;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .product-img {
    height: auto; 
    max-height: 250px; 
  }
}
.product-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img img {
  width: 100%;
  height: auto; 
  object-fit: contain;
}

/* Clients Section */
.clients {
  padding: 100px 0;
  background: var(--primary);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.customer-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 15px;
  height: 120px;
}

.customer-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.customer-logo {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* Brands Section - Diubah dari carousel ke grid */
.brands {
  padding: 100px 0;
  background: #0f0f0f;
  border-radius: 20px;
  margin: 20px 0;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.brand-item {  
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    height: 70px;
}

.brand-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(126, 217, 87, 0.3);
}

.brand-item img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.brand-item:hover img {
  filter: grayscale(0%) brightness(100%);
  transform: scale(1.05);
}

/* Locations Section - Perbaikan layout */
.location-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.location-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.location-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.location-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}

.location-info {
  flex: 1;
}

.location-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.location-address {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Responsive Design untuk mobile */
@media (max-width: 768px) {
  .container, header.scrolled .header-container {
    padding: 0 25px; /* Menambah padding pada mobile */
  }
  
  .clients-grid,
  .brands-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
  }
  
  .customer-item,
  .brand-item {
    height: 110px;
    padding: 12px;
  }
  
  .location-content {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .location-info {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px; /* Menambah padding pada mobile kecil */
  }
  
  .clients-grid,
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .customer-item,
  .brand-item {
    height: 100px;
  }
}

/* E-Katalog LKPP Section */
.ekatalog {
  padding: 120px 0;
  background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
}
.section-title {
  margin-bottom: 40px;}

.ekatalog-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  text-align: center;
}

.ekatalog-image {
  max-width: 800px;
  margin: 0 auto;
}

.ekatalog-image img {
  width: 100%;
  height: auto;
  display: block;
}

.ekatalog-text h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--secondary);
}

.ekatalog-text p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  line-height: 1.7;
  font-size: 1.1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ekatalog-features {
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ekatalog-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.ekatalog-feature:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.ekatalog-feature i {
  color: var(--highlight);
  margin-right: 12px;
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .ekatalog {
      padding: 80px 0;
  }
  
  .ekatalog-text h3 {
      font-size: 1.8rem;
  }
  
  .ekatalog-features {
      grid-template-columns: 1fr;
  }
  
  .ekatalog-feature {
      justify-content: flex-start;
      text-align: left;
  }
}
/* FAQ Section */
.faq {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #111 100%);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(126, 217, 87, 0.3);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--secondary);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: rgba(255, 255, 255, 0.8);
}

.faq-answer.active {
  max-height: 300px;
  padding: 0 1.5rem 1.5rem;
}

.cta {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-3);
}

/* Overlay untuk membuat teks lebih terbaca */
.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6); /* Overlay gelap untuk kontras */
  z-index: 1;
}

/* Background image dengan efek parallax */
.cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/cta-img.png') center/cover no-repeat;
  z-index: 0;
}

.cta .container {
  position: relative;
  z-index: 2; /* Pastikan konten di atas overlay dan background */
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 24px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
/* Animasi */
@keyframes float {
  0%, 100% {
      transform: scale(1) translateY(0);
  }
  50% {
      transform: scale(1.05) translateY(-10px);
  }
}

.fade-in {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Responsivitas */
@media (max-width: 768px) {
  .cta {
      padding: 80px 0;
  }
}

  /* Locations Section - PERBAIKAN UTAMA */
  .locations-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
}

.locations-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.location-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.location-card:hover::before {
    transform: scaleX(1);
}

.location-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(126, 217, 87, 0.2);
}

/* PERBAIKAN UTAMA: Mengatur layout konten lokasi */
.location-content {
    display: flex;
    align-items: flex-start;
}

.location-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 4px; /* Penyesuaian untuk perataan vertikal */
}

.location-info {
    flex: 1;
}

.location-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.location-address {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Menghapus dekorasi garis sebelumnya */
.location-address::before {
    display: none;
}

/* Animasi untuk location cards */
.locations-container .location-card {
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

.locations-container .location-card:nth-child(1) { animation-delay: 0.1s; }
.locations-container .location-card:nth-child(2) { animation-delay: 0.2s; }
.locations-container .location-card:nth-child(3) { animation-delay: 0.3s; }
.locations-container .location-card:nth-child(4) { animation-delay: 0.4s; }
.locations-container .location-card:nth-child(5) { animation-delay: 0.5s; }
.locations-container .location-card:nth-child(6) { animation-delay: 0.6s; }
.locations-container .location-card:nth-child(7) { animation-delay: 0.7s; }
.locations-container .location-card:nth-child(8) { animation-delay: 0.8s; }
.locations-container .location-card:nth-child(9) { animation-delay: 0.9s; }

/* Responsive Design - PERBAIKAN KHUSUS UNTUK MOBILE */
@media (max-width: 768px) {
    .locations-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .location-card {
        padding: 1.25rem;
    }
    
    .location-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
        margin-right: 12px;
        margin-top: 2px; /* Penyesuaian untuk mobile */
    }
    
    .location-content {
        align-items: flex-start; /* Memastikan konten sejajar di bagian atas */
    }
}

@media (max-width: 480px) {
    .locations-section {
        padding: 40px 0;
    }
    
    .locations-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .location-content {
        flex-direction: row; /* Tetap horizontal bahkan di mobile */
        align-items: flex-start;
    }
    
    .location-icon {
        margin-bottom: 0;
        margin-right: 12px;
    }
    
    .location-info {
        flex: 1;
    }
    
    .location-name {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .location-address {
        font-size: 0.95rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .section-title p {
        font-size: 1rem;
    }
}

/* Style untuk preview hasil perbaikan */
.improvement-notice {
    background: rgba(126, 217, 87, 0.1);
    border-left: 4px solid #7ed957;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
}

.improvement-notice h3 {
    color: #7ed957;
    margin-bottom: 10px;
}

.instructions {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.instructions h3 {
    color: #7ed957;
    margin-bottom: 15px;
}

.instructions ul {
    padding-left: 20px;
}

.instructions li {
    margin-bottom: 8px;
    line-height: 1.5;
}

@media (max-width: 480px) {
  .locations-section {
    padding: 80px 0;
  }
  
  .locations-container {
    grid-template-columns: 1fr;
  }
  
  .location-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .location-address {
    padding-left: 0;
    margin-top: 0.5rem;
  }
  
  .location-address::before {
    display: none;
  }
}
 /* Footer */
 footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--secondary);
  position: relative;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-2);
  border-radius: 2px;
}

.footer-column p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--secondary);
}

.footer-column ul li i {
  margin-right: 10px;
  color: var(--secondary);
  width: 20px;
}
/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: linear-gradient(135deg, var(--primary) 0%, rgb(51, 49, 49) 100%);
  padding: 2.5rem;
  border-radius: 24px;
  width: 100%;
  max-width: 500px;
  position: relative;
  animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-heavy);
}
.modal-content h2 {
  margin-bottom: 0.5rem; 
}
.modal-content p {
  margin-bottom: 1.5rem; 
  color: var(--secondary);
  line-height: 1.5;
}

#consultationForm {
  margin-top: 1rem; 
}
.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  color: var(--secondary);
  transition: all 0.3s ease;
}

.close-modal:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--secondary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-family: inherit;
  color: var(--secondary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--highlight);
  box-shadow: 0 0 0 3px rgba(126, 217, 87, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* WA Float */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #25D366 0%, #20b858 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  box-shadow: var(--shadow-heavy);
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: pulse 2s infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
}

/* Animations */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes underlineExpand {
  to {
      transform: scaleX(1);
  }
}

@keyframes float {
  0%, 100% {
      transform: translateY(0px);
  }
  50% {
      transform: translateY(-20px);
  }
}

@keyframes scroll {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-100%);
  }
}

@keyframes modalSlideIn {
  from {
      opacity: 0;
      transform: translateY(-50px) scale(0.95);
  }
  to {
      opacity: 1;
      transform: translateY(0) scale(1);
  }
}

@keyframes pulse {
  0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
      box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
  100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
      display: block;
  }
  
  .nav-menu {
      position: fixed;
      top: 62px;
      right: -100%;
      width: 80%;
      height: calc(100vh - 62px);
      background: rgba(10, 10, 10, 0.95);
      backdrop-filter: blur(20px);
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding-top: 3rem;
      transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border-left: 1px solid rgba(255, 255, 255, 0.1);
	  gap:0px;
  }
  
  .nav-menu.active {
      right: 0;
  }
  
  .nav-menu li {
      margin: 0.5rem 0;
      width: 100%;
      text-align: center;
  }

  .nav-menu a {
      display: block;
      padding: 1rem 2rem;
      width: 100%;
      border-radius: 12px;
      margin: 0 1rem;
  }

  .hero-buttons {
      flex-direction: column;
      align-items: center;
  }

  .btn {
      width: 100%;
      max-width: 280px;
  }
  
  .wa-float {
      bottom: 20px;
      right: 20px;
      width: 60px;
      height: 60px;
      font-size: 28px;
  }
  
  .footer-content {
      grid-template-columns: 1fr;
      gap: 2rem;
  }

  .locations-grid {
      grid-template-columns: 1fr;
  }

  .modal-content {
      margin: 1rem;
      padding: 2rem;
  }
}

/* Loading States */
.loading {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

/* Intersection Observer Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width:480px){
	
	.hero {
		min-height: 70vh; padding-top:60px;
	}
	.section-title {
		margin-bottom:20px;
	}
	.features, .products, .clients, .ekatalog, .faq, .locations-section {
		padding: 40px 0;
	}
	.brands {
		padding: 40px 0 50px;
	}
	.product-card {
		text-align: center;
	}
	.location-name, .location-address {
		margin:0;
	}
	.location-address {
		font-size:13px;
	}
	.location-card {
        padding: 5px 20px;
    }
	.location-icon {
		margin-top:5px;
	}
	.locations-container, .brands-grid {
		margin-top:20px;
	}
	.clients-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 0.5rem;
	}
	.customer-item {
        padding: 7px;
        height: 60px;		
	}
	.customer-logo {
		max-height: 60px;
		border-radius: 15px;
	}
	.brand-item {
        height: 60px;
    }
	
}