@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
/*===========================
  COMMON css
===========================*/

    :root {
      /* Warna Primer Baru */
      --primary: #123C38;       
      --primary-light: #8EA499;  
      --primary-dark: #0A2C28;   
      
      /* Warna Sekunder & Aksen */
      --secondary: #FCB31E;      
      --secondary-light: #FFD98C; 
      --secondary-dark: #CB6F18;  
      
      /* Warna Netral */
      --dark: #414B0E;          
      --light: #F5F7F6;         
      --gray: #6B7A7F;          
      --light-gray: #D3D9D6;    
      
      /* Sistem Warna */
      --white: #FFFFFF;
      --black: #1A202C;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }
    
    body {
      color: var(--dark);
      line-height: 1.7;
    }
    
    a {
      text-decoration: none;
      color: var(--primary);
      transition: all 0.3s ease;
    }
    
    a:hover {
      color: var(--primary-dark);
    }
    
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }
    
    .btn {
      display: inline-block;
      padding: 12px 28px;
      border-radius: 50px;
      text-transform: uppercase;
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
    }
    
    .btn-primary {
      background-color: var(--secondary); 
      color: var(--dark);
    }

    .btn-primary:hover {
      background-color: var(--secondary-dark); 
    }
    
    .btn-secondary {
      background-color: var(--primary);
      color: var(--secondary);
    }
    
    .btn-secondary:hover {
      background-color: var(--primary-light);
    }
    
    .section {
      padding: 100px 0;
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 60px;
    }
    
    .section-title h6 {
      color: var(--primary);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 10px;
    }
    
    .section-title h2 {
      color: var(--dark);
    }

    p {
      color: var(--gray);
    }
    
    .section-title p {
      max-width: 700px;
      margin: 0 auto;
      color: var(--gray);
    }
    
    /* Header Styles */
    @media (max-width: 991px) {
    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background-color: var(--white);
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background-color: var(--white);
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
    }
  
  .header-inner {
    padding: 10px 0;
    height: 60px;
  }
  
  .logo img {
    height: 40px;
    transition: all 0.3s ease;
  }
  
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
  }
  
  .hamburger .bar {
    height: 3px;
    width: 100%;
    background-color: var(--dark);
    border-radius: 3px;
    transition: all 0.3s ease;
  }
  
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .nav-menu {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    padding: 20px 0;
    overflow-y: auto;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-item {
    margin: 15px 0;
    width: 80%;
    text-align: center;
  }
  
  .nav-link {
    padding: 10px 0;
    font-size: 18px;
    width: 100%;
    justify-content: center;
  }
  
  .dropdown-menu {
    position: static;
    display: none;
    width: 80%;
    margin: 10px auto 0;
    background-color: rgba(0,0,0,0.03);
    border-radius: 8px;
    padding: 10px;
    box-shadow: none;
  }
  
  .dropdown.active .dropdown-menu {
    display: block;
  }
  
  .dropdown-icon {
    transition: transform 0.3s ease;
  }
  
  .dropdown.active .dropdown-icon {
    transform: rotate(180deg);
  }
  
  body {
    padding-top: 60px;
    }
  }

  @media (max-width: 480px) {
  .logo img {
    height: 35px;
  }
  
  .header-inner {
    height: 55px;
  }
  
  .nav-menu {
    top: 55px;
    height: calc(100vh - 55px);
  }
  
  body {
    padding-top: 55px;
    }
  }

      
  main {
    margin-top: 60px; 
  }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 0;
    }
    
    .logo img {
      height: 50px;
    }
    
    .navbar {
      display: flex;
      align-items: center;
    }
    
    .nav-menu {
      display: flex;
      list-style: none;
    }
    
    .nav-item {
      margin: 0 15px;
    }
    
    .nav-link {
      color: var(--dark);
    }
    
    .nav-link::after {
      background-color: var(--secondary); /* Underline kuning */
    }
    
    .nav-link:hover, 
    .nav-link.active {
      color: var(--secondary); /* Warna aksen kuning */
    }
    
    .nav-cta {
      margin-left: 20px;
    }
    
    /* Hero Section */
    .hero {
      background: linear-gradient(rgba(18, 60, 56, 0.85), rgba(18, 60, 56, 0.85));
    }
    
    .hero-content {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .hero-content h1 {
      font-size: 48px;
      font-weight: 700;
      margin-bottom: 20px;
    }
    
    .hero-content p {
      font-size: 18px;
      margin-bottom: 30px;
    }
    
    .hero-btns {
      display: flex;
      justify-content: center;
      gap: 20px;
    }
    
    /* About Section */
    .about {
      background-color: var(--light);
    }
    
    .about-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 50px;
      align-items: center;
    }
    
    .about-img img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .about-content h3 {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 20px;
    }
    
    .about-content p {
      margin-bottom: 20px;
    }
    
    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 40px;
    }
    
    .value-item {
      text-align: center;
      padding: 20px;
      background-color: var(--white);
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }
    
    .value-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .value-icon {
      color: var(--primary); /* Kuning-hijau */
    }

    .about-actions {
      display: flex;
      gap: 18px;
      margin-top: 28px;
      flex-wrap: wrap;
    }

    .about-btn {
      display: inline-block;
      padding: 12px 32px;
      border-radius: 30px;
      font-weight: 600;
      font-size: 15px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      transition: all 0.3s;
      box-shadow: 0 4px 16px rgba(252, 179, 30, 0.08);
    }

    .about-btn.values {
      background: var(--secondary);
      color: var(--dark);
    }

    .about-btn.values:hover {
      background: var(--secondary-dark);
      color: var(--white);
      transform: translateY(-2px) scale(1.04);
    }

    .about-btn.visimisi {
      background: var(--primary);
      color: var(--white);
    }

    .about-btn.visimisi:hover {
      background: var(--primary-dark);
      color: var(--secondary);
      transform: translateY(-2px) scale(1.04);
    }

    .visimisi-grid {
      padding: 24px 0;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .visimisi-block {
      background: #faf9f6;
      border-radius: 12px;
      padding: 12px 18px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    }

    .visimisi-title {
      margin-top: 0;
      margin-bottom: 8px;
      color: var(--primary);
      font-size: 1.3em;
      font-weight: 600;
    }

    .visimisi-text {
      margin: 0;
      color: var(--dark);
      font-size: 1em;
      line-height: 1.6;
    }

    @media (max-width: 480px) {
      .about-actions {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
      }
      .about-btn {
        width: 100%;
        text-align: center;
      }
    }

    /* Grid Layout */
    .photo-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(2, 180px);
      gap: 12px;
      margin-bottom: 30px;
      border-radius: 8px;
      overflow: hidden;
    }

    .grid-item {
      position: relative;
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 3px 6px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
    }

    .grid-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 15px rgba(0,0,0,0.15);
    }

    .grid-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .grid-item:hover img {
      transform: scale(1.05);
    }

    .img-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(18, 60, 56, 0.8); /* Warna dark teal dengan transparansi */
      color: white;
      padding: 8px 12px;
      font-size: 14px;
      text-align: center;
      transform: translateY(100%);
      transition: transform 0.3s ease;
    }

    .grid-item:hover .img-caption {
      transform: translateY(0);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 150px);
      }
    }

    @media (max-width: 480px) {
      .photo-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 120px);
      }
    }
    
    /* Services Section */
    .services {
      background-color: var(--white);
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    
    .service-card, .product-card {
      background: var(--white);
      border: 1px solid var(--light-gray); /* Garis halus */
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); /* Shadow lebih lembut */
    }
    
    .service-card:hover,
    .product-card:hover,
    .value-item:hover {
      border-color: var(--secondary);
      box-shadow: 0 10px 25px rgba(252, 179, 30, 0.15); /* Shadow dengan warna aksen */
    }
    
    .service-img {
      height: 350px;
      overflow: hidden;
    }
    
    .service-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.5s ease;
    }

    .service-img-multi img {
      height: 100%;
      width: 100%;
      object-fit: cover;
    }
    
    .service-card:hover .service-img img {
      transform: scale(1.1);
    }

    .service-img-multi {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 350px;
    }
    .slider-img {
      display: none;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 6px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.07);
      position: absolute;
      left: 0; top: 0;
    }
    .slider-img.active {
      display: block;
      position: relative;
      z-index: 1;
    }
    
    .service-content {
      padding: 30px;
    }
    
    .service-content h4 {
      font-size: 22px;
      margin-bottom: 15px;
      font-weight: 600;
    }
    
    .service-content p {
      color: var(--gray);
      margin-bottom: 20px;
    }
    
    /* Products Section */
    .products {
      background-color: var(--light);
    }
    
    .product-menu {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }
    
    .product-filter {
      padding: 10px 25px;
      margin: 5px;
      border: none;
      background-color: var(--white);
      border-radius: 30px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .product-filter.active, .product-filter:hover {
      background-color: var(--primary);
      color: var(--white);
    }
    
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 30px;
    }
    
    .product-card {
      background-color: var(--white);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }

    .lighting-tower-card {
      min-height: 480px; /* atau sesuai kebutuhan */
      display: flex;
      flex-direction: column;
    }

    /* Membuat gambar di dalam card selalu memenuhi tinggi parent-nya */
    .lighting-tower-card .product-img {
      flex: 1 1 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 220px; /* atur sesuai kebutuhan */
    }

    .lighting-tower-card .product-img img {
      max-height: 100%;
      max-width: 100%;
      object-fit: contain;
      width: auto;
      height: 100%;
      display: block;
    }

    .lighting-tower-card {
      min-height: 550px; /* Atur sesuai kebutuhan */
    }
    
    .product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }
    
    .product-img {
      height: 250px;
      overflow: hidden;
      position: relative;
    }
    
    .product-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.5s ease;
    }
    
    .product-card:hover .product-img img {
      transform: scale(1.1);
    }
    
    .product-content {
      padding: 25px;
    }
    
    .product-content h4 {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }
    
    .product-content p {
      color: var(--gray);
      margin-bottom: 15px;
      font-size: 14px;
    }
    
    .product-specs {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 15px;
    }
    
    .product-spec {
      background-color: var(--light-gray);
      padding: 5px 12px;
      border-radius: 30px;
      font-size: 12px;
      font-weight: 500;
    }
    
    /* Clients Section */
    .clients {
      padding: 80px 0;
      background-color: #f9f9f9;
    }

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

    .client-logo {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 120px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      margin-bottom: 15px;
      padding: 15px;
    }

    .client-logo:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .client-logo img {
      max-width: 80%;
      max-height: 60%;
      filter: grayscale(100%) opacity(0.7);
      transition: filter 0.3s ease;
    }

    .client-logo:hover img {
      filter: grayscale(0%) opacity(1);
    }

    /* Additional CSS for clients section */
    .client-logos {
      margin: 4rem 0;
    }
    
    .client-logos h3 {
      text-align: center;
      margin-bottom: 2.5rem;
      font-size: 1.8rem;
      color: #333;
    }

    .client-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 32px 40px;
      justify-content: center;
      margin-top: 32px;
    }

    .client-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 140px;
      padding: 15px;
    }

    .client-item img {
      width: 80px;
      height: 80px;
      object-fit: contain;
      border-radius: 12px;
      background: #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
      margin-bottom: 12px;
    }

    .client-name {
      margin-top: 8px;
      font-size: 0.7em;
      font-weight: 500;
      color: var(--dark);
      text-align: center;
      word-break: break-word;
      line-height: 1.4;
      padding: 0.5px;
    }
    
    .logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 2rem;
      align-items: center;
      justify-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }
    
    .logo-item {
      background: white;
      padding: 1.5rem;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      height: 120px;
      width: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .logo-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    }
    
    .logo-item img {
      max-width: 100%;
      max-height: 80px;
      width: auto;
      height: auto;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.8;
      transition: all 0.3s ease;
    }
    
    .logo-item:hover img {
      filter: grayscale(0%);
      opacity: 1;
    }
    
    @media (max-width: 768px) {
      .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
      }
      
      .logo-item {
        height: 100px;
        width: 140px;
        padding: 1rem;
      }
    }
    
    @media (max-width: 480px) {
      .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
      }
      
      .logo-item {
        height: 80px;
        width: 120px;
        padding: 0.8rem;
      }
    }

    /* Testimonials */
    .testimonials {
      margin-top: 80px;
    }

    .testimonials h3 {
      text-align: center;
      margin-bottom: 40px;
      font-size: 24px;
      font-weight: 600;
    }

    .testimonial-slider {
      position: relative;
      max-width: 800px;
      margin: 0 auto;
      overflow: hidden;
      min-height: 200px;
    }

    .testimonial-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    .testimonial-slide.active {
      opacity: 1;
      visibility: visible;
    }

    .testimonial-content {
      background-color: #fff;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      position: relative;
    }

    .testimonial-content::before {
      color: rgba(18, 60, 56, 0.1); 
    }

    .testimonial-content p {
      font-style: italic;
      margin-bottom: 20px;
      color: #555;
      line-height: 1.7;
    }

    .testimonial-author h4 {
      margin: 0;
      font-size: 18px;
      font-weight: 600;
      color: #333;
    }

    .testimonial-author p {
      margin: 5px 0 0;
      font-style: normal;
      font-size: 14px;
      color: #777;
    }

    .testimonial-nav {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 30px;
      gap: 20px;
    }

    .testimonial-prev,
    .testimonial-next {
      background: none;
      border: none;
      cursor: pointer;
      font-size: 18px;
      color: #555;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: #fff;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

    .testimonial-prev:hover,
    .testimonial-next:hover {
      color: #333;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .testimonial-dots {
      display: flex;
      gap: 8px;
    }

    .testimonial-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: #ddd;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .testimonial-dot.active {
      background-color: #333;
    }

    /* Contact Section */
    .contact {
      padding: 80px 0;
      background-color: var(--light); /* Tambahkan background light */
    }

    .contact-grid {
      display: flex;
      justify-content: center; /* Pusatkan konten */
      margin-top: 50px;
    }

    .contact-info {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      max-width: 800px; /* Batasi lebar maksimum */
      width: 100%;
    }

    .contact-card {
      background-color: var(--white);
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }

    .contact-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .contact-icon {
      font-size: 28px;
      color: var(--secondary);
      margin-bottom: 20px;
    }

    .contact-card h4 {
      font-size: 20px;
      margin-bottom: 15px;
      color: var(--dark);
    }

    .contact-card p {
      color: var(--gray);
      line-height: 1.6;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .contact-card {
        padding: 25px;
      }
    }

    .email-link {
      color: var(--primary);
      text-decoration: none;
      transition: all 0.3s ease;
      word-break: break-all; /* Untuk memastikan email tidak overflow */
    }

    .email-link:hover {
      color: var(--secondary);
      text-decoration: underline;
    }

    /* Map Section */
    .map-section {
      margin-bottom: 2rem; /* Tambahkan margin bawah */
    }

    .map-container {
      height: 100%;
      width: 100%;
    }

    .map-placeholder {
      height: 100%;
      width: 100%;
      background-color: #f9f9f9;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .map-placeholder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Map Section Styling */
    .map-section {
      margin-bottom: 0; /* Pastikan tidak ada margin negatif */
      position: relative;
      z-index: 1; /* Pastikan z-index lebih rendah dari footer */
    }

    .map-container {
      width: 100%;
      overflow: hidden;
      padding-bottom: 0; /* Pastikan tidak ada padding bottom yang besar */
    }
    
    .map-container iframe {
      display: block; /* Hilangkan white space bawah */
      border: none;
      height: 500px;
      width: 100%;
    }

    /* Footer */
    footer {
      background-color: var(--primary);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 50px;
    }

    .footer-about p {
      margin: 20px 0;
      color: #aaa;
      line-height: 1.7;
    }

    .footer-logo img {
      height: 50px;
    }

    .social-icons {
      display: flex;
      gap: 15px;
    }

    .social-icon {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.1);
      color: #fff;
      font-size: 18px;
      transition: all 0.3s ease;
    }

    .social-icon:hover {
      background-color: #007bff;
      transform: translateY(-3px);
    }

    .footer h4 {
      margin: 0 0 25px;
      font-size: 20px;
      font-weight: 600;
      color: #fff;
    }

    .footer-links ul,
    .footer-services ul {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .footer-links li,
    .footer-services li {
      margin-bottom: 12px;
    }

    .footer-links a,
    .footer-services a {
      color: #aaa;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--secondary); /* Warna aksen kuning */
    }
    
    .footer-services a:hover {
      color: var(--secondary); /* Warna aksen kuning */
    }

    .footer-newsletter p {
      color: #aaa;
      margin-bottom: 20px;
    }

    .newsletter-form {
      display: flex;
      gap: 10px;
    }

    .newsletter-form input {
      flex: 1;
      padding: 10px 15px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background-color: rgba(255, 255, 255, 0.05);
      color: #fff;
      border-radius: 4px;
    }

    .newsletter-form input:focus {
      outline: none;
      border-color: #007bff;
    }

    .newsletter-form .btn {
      padding: 0 15px;
      white-space: nowrap;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: #aaa;
      font-size: 14px;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .contact-grid {
        grid-template-columns: 1fr;
      }
      
      .contact-info {
        margin-bottom: 30px;
      }
    }

    @media (max-width: 768px) {
      .contact-info {
        grid-template-columns: 1fr;
      }
      
      .newsletter-form {
        flex-direction: column;
      }
      
      .newsletter-form .btn {
        width: 100%;
      }
    }
    
    /* Footer */
    footer {
      background-color: var(--primary-dark);
      color: var(--white);
      padding: 80px 0 30px;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      margin-bottom: 50px;
    }
    
    .footer-widget h4 {
      font-size: 20px;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 10px;
    }
    
    .footer-widget h4:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 2px;
      background-color: var(--secondary);
    }
    
    .footer-widget p {
      margin-bottom: 20px;
      color: rgba(255, 255, 255, 0.7);
    }
    
    .footer-logo {
      margin-bottom: 20px;
    }
    
    .footer-logo img {
      height: 50px;
    }
    
    .footer-links {
      list-style: none;
    }
    
    .footer-links li {
      margin-bottom: 10px;
    }
    
    .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      transition: all 0.3s ease;
    }
    
    .footer-links a:hover {
      color: var(--primary); /* Kuning-hijau */
    }
    
    .footer-social {
      display: flex;
      gap: 15px;
    }
    
    .social-link {
      width: 40px;
      height: 40px;
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      transition: all 0.3s ease;
    }
    
    .social-link:hover {
      background-color: var(--secondary);
    }
    
    .footer-bottom {
      padding-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      text-align: center;
    }
    
    .footer-bottom p {
      color: rgba(255, 255, 255, 0.7);
    }
    
    .highlight {
      color: var(--secondary);
      border-left-color: var(--secondary);
    }

    /* Back to Top */
    .back-to-top {
      position: fixed;
      right: 30px;
      bottom: 30px;
      width: 50px;
      height: 50px;
      background-color: var(--primary);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      z-index: 99;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }
    
    .back-to-top.active {
      opacity: 1;
      visibility: visible;
    }
    
    .back-to-top:hover {
      background-color: var(--primary-dark);
    }
    
    /* Responsive Styles */
    @media (max-width: 992px) {
      .about-grid, .contact-grid {
        grid-template-columns: 1fr;
      }
      
      .service-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .testimonials {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .values-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    
    @media (max-width: 768px) {
      .header-inner {
        padding: 15px 0;
      }
      
      .service-grid, .testimonials {
        grid-template-columns: 1fr;
      }
      
      .values-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .hero-content h1 {
        font-size: 36px;
      }
      
      .section-title h2 {
        font-size: 30px;
      }
    }
    
    @media (max-width: 576px) {
      .values-grid {
        grid-template-columns: 1fr;
      }
      
      .hero-btns {
        flex-direction: column;
      }
      
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Hero carousel styles */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 600px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero-carousel {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .carousel-slides {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .carousel-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .carousel-slide::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.50); /* Increased overlay opacity from 0.6 to 0.75 */
    }

    .carousel-slide.active {
      opacity: 3; /* Reduced image opacity from 1 to 0.8 */
    }

    .carousel-indicators {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 2;
    }

    .carousel-indicators .indicator {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .carousel-indicators .indicator.active {
      background-color: var(--secondary); /* Warna aksen kuning */
    }

    .carousel-arrows {
      position: absolute;
      width: 100%;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      display: flex;
      justify-content: space-between;
      padding: 0 20px;
      z-index: 2;
    }

    .carousel-arrow {
      background: rgba(0,0,0,0.4);
      color: #fff;
      border: none;
      border-radius: 50%;
      width: 36px;
      height: 36px;
      font-size: 20px;
      cursor: pointer;
      z-index: 2;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      transition: background 0.2s;
    }

    .carousel-arrow:hover { background: var(--secondary, #fcb31e); color: #222; }
    .carousel-arrow.prev { left: 10px; }
    .carousel-arrow.next { right: 10px; }

    /* Hero content styling */
    .hero .container {
      position: relative;
      z-index: 3;
    }

    .hero-content {
      max-width: 700px;
      color: #fff;
      text-align: center;
      margin: 0 auto;
    }

    .hero-content h1 {
      font-size: 48px;
      margin-bottom: 20px;
      font-weight: 700;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Added text shadow for better readability */
    }

    .hero-content p {
      color: #fff;
    }

    .hero-btns {
      display: flex;
      gap: 15px;
      justify-content: center;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 36px;
      }
      
      .hero-content p {
        font-size: 16px;
      }
      
      .carousel-arrows {
        display: none; /* Hide arrows on mobile */
      }
    }


    /* Hero content styling */
    .hero .container {
      position: relative;
      z-index: 3;
    }

    .hero-content {
      max-width: 700px;
      color: #fff;
      text-align: center;
      margin: 0 auto;
    }

    .hero-content h1 {
      font-size: 48px;
      margin-bottom: 20px;
      font-weight: 700;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); 
    }

    .hero-content p {
      font-size: 18px;
      margin-bottom: 30px;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5); 
    }

    .hero-btns {
      display: flex;
      gap: 15px;
      justify-content: center;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 36px;
      }
      
      .hero-content p {
        font-size: 16px;
      }
      
      .carousel-arrows {
        display: none; /* Hide arrows on mobile */
      }
    }

   /* Navbar & Dropdown Menu Styles */
    .navbar {
      display: flex;
      align-items: center;
    }

    .nav-menu {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .nav-item {
      margin: 0 15px;
      position: relative;
      display: flex;
      align-items: center;
    }

    .nav-link {
      color: #333;
      text-decoration: none;
      font-weight: 500;
      font-size: 16px;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      padding: 10px 0 5px; 
      position: relative;
    }


    .nav-link.active::after,
    .nav-link:hover::after {
      content: "";
      position: absolute;
      width: 100%;
      height: 2px;
      background-color: #0066cc;
      bottom: 0; 
      left: 0;
      transition: all 0.3s ease;
    }


    .nav-link::after {
      content: "";
      position: absolute;
      width: 0;
      height: 2px;
      background-color: #0066cc;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      transition: all 0.3s ease;
    }

    .nav-link.active::after,
    .nav-link:hover::after {
      width: 100%;
      left: 0;
      transform: translateX(0);
    }

    .dropdown-icon {
      font-size: 12px;
      margin-left: 5px;
      display: inline-block;
      vertical-align: middle;
    }

    /* Dropdown Menu Styles */
    .dropdown {
      position: relative;
    }

    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      z-index: 1000;
      display: none;
      min-width: 220px;
      padding: 0.5rem 0;
      margin: 0;
      background-color: #fff;
      border: 1px solid rgba(0, 0, 0, 0.15);
      border-radius: 0.25rem;
      box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
    }

    .dropdown:hover .dropdown-menu {
      display: block;
    }

    .dropdown-menu li {
      display: block;
    }

    .dropdown-menu li a {
      display: block;
      padding: 0.5rem 1rem;
      color: #212529;
      text-decoration: none;
      white-space: nowrap;
    }

    .dropdown-menu li a:hover {
      background-color: #f8f9fa;
      color: #0066cc;
    }

    .dropdown-header {
      display: block;
      padding: 0.5rem 1rem;
      margin-bottom: 0;
      font-size: 0.875rem;
      color: #6c757d;
      white-space: nowrap;
      font-weight: 600;
    }

    .dropdown-divider {
      height: 0;
      margin: 0.5rem 0;
      overflow: hidden;
      border-top: 1px solid #e9ecef;
    }

    /* CTA SECTION */
    .cta-section {
      margin-bottom: 80px; /* Jarak antara CTA dan footer */
      padding: 60px 0; /* Padding atas bawah untuk CTA section */
      background-color: #f9f9f9; /* Warna background untuk membedakan section */
    }
    
    /* Untuk tampilan mobile */
    @media (max-width: 768px) {
      .cta-section {
        margin-bottom: 60px;
        padding: 40px 0;
      }
    }

    /* Mobile Responsive Styles */
    @media (max-width: 991px) {
      .hamburger {
        display: block;
        cursor: pointer;
      }
      
      .hamburger.active .bar:nth-child(2) {
        opacity: 0;
      }
      
      .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
      }
      
      .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
      }
      
      .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
      }
      
      .nav-menu.active {
        left: 0;
      }
      
      .nav-item {
        margin: 5px 0;
      }
      
      .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        background-color: #f8f9fa;
        border: none;
        box-shadow: none;
        padding-left: 1rem;
      }
      
      .dropdown.active .dropdown-menu {
        display: block;
      }
    }

    /* WhatsApp Float Button */
    .whatsapp-float {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 60px;
      height: 60px;
      background-color: #25D366;
      color: white;
      border-radius: 50%;
      text-align: center;
      font-size: 30px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .whatsapp-float:hover {
      background-color: #128C7E;
      transform: scale(1.1);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    }

    /* Untuk layar kecil */
    @media (max-width: 768px) {
      .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
      }
    }

    .whatsapp-float {
      animation: float 2s ease-in-out infinite;
    }
    
    @keyframes float {
      0% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
      100% { transform: translateY(0); }
    }

    #custom-cursor {
      position: fixed;
      top: 0; left: 0;
      width: 24px;
      height: 24px;
      border: 2px solid var(--secondary, #FCB31E);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: background 0.2s, border-color 0.2s, transform 0.08s;
      background: var(--secondary, #FCB31E); 
      mix-blend-mode: normal; 
    }

    