    @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;500;600&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@200;300&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Raleway:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Raleway:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Smooch+Sans:wght@100..900&display=swap');
    
    /* Reset */
    * { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Lexend Deca', sans-serif; }

    /* Header & Navigasi */
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 30px;
      background-color: #ffffff;
      /*box-shadow: 0 2px 5px rgba(0,0,0,0.1);*/
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .logo { font-weight: bold; font-size: 1.5rem; color: #1e3a8a; text-decoration: none; cursor: pointer; }

    .nav-links { display: flex; list-style: none; gap: 20px; align-items: center; }
    .nav-links li { position: relative; }
    .nav-links a { text-decoration: none; color: #333; font-weight: 500; padding: 10px 0; display: block; cursor: pointer; }
    
    /* Dropdown Menu */
    .dropdown-menu {
      display: none; position: absolute; top: 100%; left: 0;
      background-color: #dddddd; min-width: 180px; box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      list-style: none; padding: 10px 0; border-radius: 5px;
    }
    .dropdown:hover .dropdown-menu { display: block; }
    .dropdown-menu li a { padding: 8px 20px; font-size: 0.9rem; }
    .dropdown-menu li a:hover { background-color: #f1f5f9; color: #2563eb; }

    /* Pengatur Tampilan Halaman (SPA) */
    .page { display: none; }
    .page.active { display: block; }

    /* Component: Slider (Beranda) */
    .slider-container { position: relative; max-width: 100%; height: 400px; overflow: hidden; }
    .slide { display: none; width: 100%; height: 100%; }
    .slide img { width: 100%; height: 100%; object-fit: cover; }
    .dots-container { position: absolute; bottom: 20px; width: 100%; text-align: center; }
    .textbanner-container { position: absolute; top: 20px;right:20px; bottom:20px; width: 70%; text-align: right; }
    .dot { height: 12px; width: 12px; margin: 0 5px; background-color: #bbb; border-radius: 50%; display: inline-block; cursor: pointer; }
    .dot.active { background-color: #1e3a8a; }

    /* Common Page Layout */
    .container { max-width: 1200px; margin: 40px auto; padding: 0 20px; }
    .section-title { text-align: center; color: #1e3a8a; margin-bottom: 10px; font-size: 2rem; }
    .section-subtitle { text-align: center; color: #64748b; margin-bottom: 40px; }
    .banner-title { text-align: right; color: #020202; margin-bottom: 10px; font-size: 2rem; }

    /* Layout Cards (Direksi & Operation Team) */
    .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
    .card { background: #ffffff; border-radius: 10px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); overflow: hidden; text-align: center; transition: transform 0.3s; }
    .card:hover { transform: translateY(-5px); }
    .card img { width: 50%; height: 280px; object-fit: cover; }
    .card-info { padding: 20px; }
    .card-info h3 { color: #0f172a; margin-bottom: 5px; font-size: 1.1rem; }
    .card-info p.title { color: #2563eb; font-weight: 600; font-size: 0.85rem; margin-bottom: 10px; }
    .card-info p.desc { color: #64748b; font-size: 0.85rem; line-height: 1.5; }

    .card2 { background: #ffffff; border-radius: 10px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); overflow: hidden; text-align: center; transition: transform 0.3s; }
    .card2:hover { transform: translateY(-5px); }
    .card2 img { width: 100%; height: 280px; object-fit: cover; }
    .card2-info { padding: 20px; }
    .card2-info h3 { color: #0f172a; margin-bottom: 5px; font-size: 1.1rem; }
    .card2-info p.title { color: #2563eb; font-weight: 600; font-size: 0.85rem; margin-bottom: 10px; }
    .card2-info p.desc { color: #64748b; font-size: 0.85rem; line-height: 1.5; }

    /* Layout Layanan */
    .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
    .service-card { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px; padding: 30px; text-align: center; transition: all 0.3s; }
    .service-card:hover { border-color: #2563eb; background: #ffffff; box-shadow: 0 6px 16px rgba(37, 99, 235, 0.1); }
    .service-icon { font-size: 2.5rem; color: #2563eb; margin-bottom: 20px; }

    /* Layout Kontak & Google Map */
    .contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
    .contact-info { background: #f8fafc; padding: 30px; border-radius: 10px; border: 1px solid #e2e8f0; }
    .contact-item { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; }
    .contact-item i { font-size: 1.2rem; color: #2563eb; margin-top: 3px; }
    .map-container { width: 100%; height: 350px; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
    .map-container iframe { width: 100%; height: 100%; border: 0; }

    /* Footer */
    footer { background-color: #0f172a; color: #f8fafc; padding: 40px 20px; margin-top: 60px; }
    .footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
    .footer-col h3 { color: #38bdf8; margin-bottom: 15px; }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 8px; font-size: 0.9rem; }
    .footer-col a { color: #cbd5e1; text-decoration: none; transition: color 0.2s; cursor: pointer; }
    .footer-col a:hover { color: #38bdf8; }

    /* Hamburger Mobile */
    .hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
    .hamburger span { width: 25px; height: 3px; background-color: #333; }

    /* Tombol WhatsApp Floating */
    .wa-float {
      position: fixed; bottom: 25px; right: 25px; background-color: #25d366; color: #fff;
      border-radius: 50px; text-align: center; font-size: 28px; box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
      z-index: 1000; display: flex; align-items: center; justify-content: center; width: 55px; height: 55px;
      text-decoration: none; transition: all 0.3s ease;
    }
    .wa-float:hover { background-color: #128c7e; transform: scale(1.1); }

    .local-whatsapp-icon {
    width: 16px;   /* Match your text size or desired width */
    height: 16px;  /* Match height */
    vertical-align: middle; /* Aligns nicely with surrounding text */
    }
    
    /* Responsif Mobile */
    @media (max-width: 768px) {
      .hamburger { display: flex; }
      .nav-links {
        display: none; flex-direction: column; position: absolute; top: 60px; right: 0;
        background-color: #ffffff; width: 100%; text-align: center; box-shadow: 0 4px 6px rgba(0,0,0,0.1); padding: 20px 0;
      }
      .nav-links.active { display: flex; }
      .dropdown-menu { position: static; box-shadow: none; background: #f8fafc; }
      .dropdown.active-dropdown .dropdown-menu { display: block; }
      .slider-container { height: 250px; }
      .contact-wrapper { grid-template-columns: 1fr; }
    }