body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #fff;
    scroll-behavior: smooth;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .hero {
    height: 100vh;
    background: url('image/tkti.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
  }
  
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    position: relative;
    z-index: 2;
  }
  
  .navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .navbar ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .navbar a {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .navbar a:hover {
    color: #ffd700;
  }
  
  .hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    padding-bottom: 4rem;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    background: #ffd700;
    color: #000;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.3s;
  }
  
  .btn:hover {
    background: #ffcc00;
  }
  
  .section {
    padding: 4rem 2rem;
  }
  
  .bg-light {
    background: #f9f9f9;
  }
  
  .container {
    max-width: 1100px;
    margin: auto;
  }
  
  h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #4a00e0;
  }
  
  
  .cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  
  .card {
    flex: 1 1 250px;       
    max-width: 300px;
    min-height: 380px;     
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    padding: 15px;
    text-align: center;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  .card img {
    width: 100%;
    height: 180px;          
    object-fit: cover;      
    border-radius: 8px;
  }
  
  .card h3 {
    margin: 10px 0 5px;
    font-size: 18px;
  }
  
  .card p {
    margin: 5px 0;
    font-size: 14px;
    color: #555;
  }
  
  .featured-img {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 2rem auto;
    border-radius: 12px;
  }
  
  footer {
    text-align: center;
    padding: 2rem;
    background: #222;
    color: #fff;
  }
  
  .btn-wa {
    display: inline-block;
    background-color: #25d366;
    color: white;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .btn-wa:hover {
    background-color: #1ebe5b;
  }
  
  .modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
  }
  
  .modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  }
  
  .close {
    float: right;
    font-size: 24px;
    cursor: pointer;
  }
  
  .btn-sewa {
    margin-top: 10px;
    padding: 10px 15px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }
  
  .btn-sewa:hover {
    background: #0056b3;
  }
  
  .navbar .logo,
  .navbar a,
  .title {
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
  }
  
  .hero-content h1,
  .hero-content p{
    text-shadow: 
      3px 3px 8px rgba(0,0,0,0.9),   
      0px 0px 4px rgba(0,0,0,0.7);   
  }
  
  .modal-content .btn-sewa {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
  
  /* 📱 RESPONSIVE DESIGN UNTUK HP */
  @media (max-width: 768px) {
    /* Navbar */
    .navbar {
      flex-direction: column;
      text-align: center;
    }
  
    .navbar ul {
      flex-direction: column;
      gap: 1rem;
      padding: 0;
    }
  
    /* Hero Section */
    .hero-content h1 {
      font-size: 2rem;
    }
  
    .hero-content p {
      font-size: 1rem;
    }
  
    .btn {
      font-size: 0.9rem;
      padding: 0.6rem 1.2rem;
    }
  
    /* Cards (Unit Motor) */
    .cards {
      flex-direction: column;
      align-items: center;
    }
  
    .card {
      max-width: 90%;
    }
  
    /* Maps */
    .maps iframe {
      height: 250px;
    }
  
    /* Modal (Popup Sewa) */
    .modal-content {
      width: 90%;
      padding: 15px;
    }
  
    /* Kontak */
    .container {
      text-align: center;
    }
  
    .btn-wa {
      display: inline-block;
      margin-top: 10px;
      width: 80%;
    }
  }
  
  /* Fix khusus iPhone Safari */
  html, body {
    -webkit-text-size-adjust: 100%; /* Cegah Safari memperbesar font */
    overscroll-behavior: none;
  }