    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html,     body {
      font-family: Arial, sans-serif;
      overflow-x: hidden;
    }

    body {
      font-family: Arial, sans-serif;
      overflow: hidden;
    }

    /* Background blur */
    .background {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-image: url('../image/bg.JPG');
      background-size: cover;
      background-position: center;
      filter: blur(12px); /* ~75% blur */
      transform: scale(1.1);
      z-index: -1;
    }

    /* Container utama */
    .container {
      position: relative;
      width: 100vw;
      height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding-top: 40px;
    }

    /* Gambar atas */
        .top-images {
      margin-top: 150px; /* dorong gambar ke bawah agar tidak menumpuk teks */
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      width: 90%;
      max-width: 1200px;
      margin-bottom: 40px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      width: 90%;
      max-width: 1200px;
      margin-bottom: 40px;
    }

    .top-images img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    }

    @media (max-width: 768px) {
      .top-images {
        grid-template-columns: repeat(2, 1fr);
      }

      .top-images img {
        height: 140px;
      }
    }
      /* Navbar */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      background: rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(6px);
      z-index: 10;
    }

    .logo {
      color: #fff;
      font-size: 1.5rem;
      font-weight: bold;
    }

    .nav-menu {
      list-style: none;
      display: flex;
      gap: 30px;
    }

    .nav-menu li a {
      color: #fff;
      text-decoration: none;
      font-size: 1rem;
      position: relative;
      padding-bottom: 5px;
      transition: color 0.3s;
    }

    .nav-menu li a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: #ffd700;
      transition: width 0.3s;
    }

    .nav-menu li a.active::after,
    .nav-menu li a:hover::after {
      width: 100%;
    }

    .nav-menu li a.active {
      color: #ffd700;
    }

    .nav-menu li a:hover {
      color: #ffd700;
    }

    .container {
      padding-top: 120px; /* space for navbar */
    }
      /* About Section */
        .about-section {
      width: 100%;
      min-height: 100vh; /* satu view penuh */
      padding: 80px 40px;
      display: flex;
      align-items: left;
      justify-content: center;
      background: #ffffff;
    }

    .about-content {
      max-width: 1200px;
      padding: 20px;
      text-align: left;
    }

    .about-content h2 {
      font-size: 2.2rem;
      margin-bottom: 20px;
      color: #333;
    }

    .about-content p {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #555;
      margin-bottom: 15px;
    }

    .about-content ul {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #555;
      padding-left: 20px;
      margin-bottom: 15px;
    }
      /* Hero Section */
        .hero-section {
      min-height: 100vh;
      padding-top: 180px; /* ruang untuk navbar + teks */
      display: flex;
      justify-content: center;
      align-items: flex-start;
    }

    @media (max-width: 768px) {
      .about-section {
        padding: 80px 30px;
      }
    }

    .about-content {
      max-width: 1200px;
      padding: 10px;
      text-align: left;
    }
      /* Hero Text */
    .hero-text {
      position: absolute;
      top: 150px;
      text-align: center;
      max-width: 900px;
      padding: 0 20px;
      font-size: 1.8rem;
      font-weight: 600;
      color: black;
      text-shadow: 0 4px 15px rgb(252, 252, 252);
      z-index: 2;
    }

    @media (max-width: 768px) {
      .hero-text {
        font-size: 1.3rem;
      }
    }
    /* Image Card */

    .image-card p {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #ffffff;
    text-shadow: 0 3px 10px rgb(0, 0, 0);
    }

    .image-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    }

    .image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    }

    /* Hover Effect */
    .image-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    }

    .image-card:hover img {
    transform: scale(1.1);
    }


    /* About Layout */
    .about-wrapper {
    width: 100%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr 1fr; /* teks kiri, gambar kanan */
    gap: 60px;
    align-items: center;
    }


    .about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    }


    @media (max-width: 768px) {
    .about-wrapper {
    grid-template-columns: 1fr; /* stack di mobile */
    text-align: center;
    }
    }

    /* Carousel */

        .carousel-track {
      display: flex;
      transition: transform 0.6s ease;
    }

    .carousel-slide {
      min-width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 40px;
      padding: 40px;
      box-sizing: border-box;
    }

    .carousel-slide img {
      width: 100%;
      border-radius: 16px;
    }

    .slide-text h2 {
      font-size: 2rem;
      margin-bottom: 16px;
    }

    .slide-text p {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #444;
    }

    .carousel-track img {
      width: 100%;
      flex-shrink: 0;
    }

    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.5);
      border: none;
      color: #fff;
      font-size: 2rem;
      padding: 8px 14px;
      cursor: pointer;
      border-radius: 50%;
    }

    .carousel-btn.prev { left: 10px; }
    .carousel-btn.next { right: 10px; }

    @media (max-width: 768px) {
      .gallery-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
      }
    }

    .gallery-section {
    min-height: 100vh;
    padding: 60px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    }

    .gallery-carousel {
    width: 100%;
    max-width: 1800px;   /* sebelumnya 1200px */
    min-height: 520px;   /* tinggi minimum box */
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    /*box-shadow: 0 20px 40px rgba(0,0,0,0.2);*/
    }

    .carousel-track {
    display: flex;
    transition: transform 0.6s ease;
    }

    .carousel-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 20px;
    padding: 60px;
    box-sizing: border-box;
    }

    .carousel-slide img {
    width: 100%;
    border-radius: 10px;
    }

    .slide-text h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    }

    .slide-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    }

    /* Navigation Button */
    .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    color: #fff;
    font-size: 2rem;
    padding: 10px 10px;
    cursor: pointer;
    border-radius: 20%;
    }

    .carousel-btn.prev { left: 10px; }
    .carousel-btn.next { right: 10px; }

    /* Responsive */
    @media (max-width: 768px) {
    .carousel-slide {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 20px;
    }
    }

    /* Contact */
    .contact-section {
      min-height: 100vh;
      padding: 100px 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #ffffff;
    }

    .contact-wrapper {
      width: 100%;
      max-width: 1800px;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 80px;
      align-items: center;
    }

    /* Map */
    .contact-map img {
      width: 100%;
      max-height: 500px;
      object-fit: contain;
    }

    /* Content */
    .contact-content h2 {
      font-size: 2.6rem;
      margin-bottom: 20px;
    }

    .contact-content p {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #444;
      margin-bottom: 24px;
    }

    .contact-info p {
      margin-bottom: 8px;
      font-size: 1.1rem;
    }

    .contact-info a {
      margin-bottom: 8px;
      font-size: 1.1rem;
      color: #444;
      text-decoration: none;
      
    }

    /* Form */
    .contact-form {
      margin-top: 30px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .contact-form input,
    .contact-form textarea {
      padding: 14px 16px;
      font-size: 1rem;
      border-radius: 10px;
      border: 1px solid #ccc;
    }

    .contact-form button {
      margin-top: 10px;
      padding: 14px;
      border: none;
      border-radius: 12px;
      background: #000;
      color: #fff;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .contact-form button:hover {
      background: #333;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .contact-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
      }
    }

    /* Footer */
    .footer {
      background: #0f0f0f;
      color: #fff;
      padding: 50px 30px;
    }

    .footer-wrapper {
      max-width: 1400px;
      margin: auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 60px;
    }

    .footer-col h3 {
      font-size: 1.6rem;
      margin-bottom: 16px;
    }

    .footer-col h4 {
      font-size: 1.2rem;
      margin-bottom: 14px;
    }

    .footer-col p {
      font-size: 0.95rem;
      line-height: 1.6;
      color: #ccc;
    }

    .footer-col ul {
      list-style: none;
      padding: 0;
    }

    .footer-col ul li {
      margin-bottom: 10px;
    }

    .footer-col ul li a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-col a {
      color: #ccc;
    }

    .footer-col a:hover {
      color: #ffd700;
    }

        /* Bottom */
    .footer-bottom {
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid #333;
      text-align: center;
      font-size: 0.85rem;
      color: #aaa;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .footer-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
      }
    }

    .contact-map {
      width: 100%;
      height: 450px;
      overflow: hidden;
      position: relative;
    }

    .world-map {
      width: 150%;           /* 🔥 perbesar */
      height: auto;
      max-width: none;       /* penting supaya bisa >100% */
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .map-pin {
      position: absolute;
      transform: translate(-50%, -100%);
      cursor: pointer;
    }



    .map-pin svg {
      width: 32px;
      height: 32px;
      fill: #ea4335; /* Google red */
    }

    /* Tooltip */
    .map-pin span {
      position: absolute;
      bottom: 120%;
      left: 50%;
      transform: translateX(-50%);
      background: #202124;
      color: #fff;
      padding: 6px 10px;
      border-radius: 6px;
      font-size: 0.75rem;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .map-pin:hover span {
      opacity: 1;
    }

    /* Position */
    .map-pin.usa {
      top: 29%;
      left: 15%;
    }

    .map-pin.indonesia {
      top: 60.5%;
      left: 79%;
    }

    .map-pin.batam {
      top: 56%;
      left: 78.5%;
    }

    .brand-carousel {
    margin-top: 5px;
    overflow: hidden;
    width: 100%;
    }

    .brand-track {
    display: flex;
    gap: 10px;
    animation: scrollBrand 5s linear infinite;
    }

    .brand-track img {
    height: 45px;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .brand-track img:hover {
    opacity: 1;
    transform: scale(1.1);
    }

    /* Auto scroll animation */
    @keyframes scrollBrand {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
    }

.contact-map-title {
  margin-bottom: 20px;
  line-height: 30px;
}

.contact-map-title h2 {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 60px;
}

.contact-map-title h3 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 40px;
}

.contact-map-title p {
  margin-top: 10px;
  color: black;
  font-size: 25px;
}

.contact-map-title a {
  text-decoration: none;
  color: #ea4335;
  font-weight: bold;
}


/* Responsive */
@media (max-width: 768px) {
  .contact-map-title h2 {
    font-size: 28px;
  }
}

