/* Reset & base */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
      background: #fff;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }
    a {
      color: #007bff;
      text-decoration: none;
    }
    a:hover,
    a:focus {
      text-decoration: underline;
      outline: none;
    }
    h1,
    h2,
    h3,
    h4 {
      margin-bottom: 0.5em;
      color: #222;
    }
    p {
      margin-bottom: 1em;
    }
    .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
    }

    nav {
      background: linear-gradient(135deg, #ffffff, #f1f1f1);
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
      padding: 0.5rem 0;
      min-height: 60px;
    }
    
    nav .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 15px;
      position: relative;
      height: 100%;
    }
    
    nav .logo {
      max-width: 150px;
      max-height: 40px;
      display: flex;
      align-items: center;
      z-index: 1001;
    }
    
    nav .logo img {
      max-height: 40px;
      width: auto;
      margin-top: 5%;
    }
    
    nav ul {
      list-style: none;
      display: flex;
      gap: 1.2rem;
    }
    
    nav ul li {
      position: relative;
    }
    
    nav ul li a {
      color: black;
      font-weight: 600;
      padding: 0.8rem 0.5rem;
      display: inline-block;
      transition: all 0.3s ease;
      border-radius: 4px;
      font-size: 1rem;
    }
    
    nav ul li a:hover,
    nav ul li a:focus {
      color: #dd3333;
      background: rgba(255, 255, 255, 0.1);
      outline: none;
    }
    
    nav ul li a.active {
      background: rgba(255, 255, 255, 0.15);
      color: #ffffff;
    }

    /* Dropdown menu */
    nav ul li.has-dropdown > a::after {
      content: '\f107';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      margin-left: 5px;
      font-size: 0.8rem;
    }
    
    nav ul li .dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      background: #ffffff;
      min-width: 200px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      border-radius: 5px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s ease;
      z-index: 1000;
    }
    
    nav ul li:hover .dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    
    nav ul li .dropdown a {
      color: #dd3333;
      padding: 0.8rem 1rem;
      display: block;
      border-bottom: 1px solid #f0f0f0;
    }
    
    nav ul li .dropdown a:hover {
      background: #f5f5f5;
      color: #dd3333;
    }

    /* Hamburger menu for mobile */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      width: 30px;
      height: 24px;
      justify-content: space-between;
      background: transparent;
      border: none;
      padding: 0;
      z-index: 1002;
    }
    
    .hamburger span {
      display: block;
      height: 3px;
      background: black;
      border-radius: 2px;
      transition: all 0.3s ease;
      transform-origin: center;
    }
    
    .hamburger.active span:nth-child(1) {
      transform: translateY(10.5px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
      transform: translateY(-10.5px) rotate(-45deg);
    }

    /* Mobile menu - PERBAIKAN UTAMA */
    @media (max-width: 992px) {
      nav .container {
        padding: 0 15px;
      }
      
      nav .logo {
        position: relative;
        left: 0;
        transform: none;
        max-width: 120px;
        max-height: 35px;
      }
      
      nav .logo img {
        max-height: 60px;
        width: auto;
        padding: 0.5rem;
      }
      
      .hamburger {
        display: flex;
        position: relative;
        right: 0;
        transform: none;
      }
      
      nav ul {
        position: fixed;
        top: 60px;
        left: -100%;
        background: #dd3333;
        flex-direction: column;
        width: 80%;
        height: calc(100vh - 60px);
        padding: 2rem 1rem;
        overflow-y: auto;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: left 0.3s ease;
        z-index: 999;
      }
      
      nav ul.show {
        left: 0;
        display: flex;
      }
      
      nav ul li {
        margin: 0.5rem 0;
        width: 100%;
      }
      
      nav ul li a {
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        width: 100%;
        color: white;
      }

      nav ul li .dropdown a {
        color: #fff;
      }
      
      nav ul li a:hover,
      nav ul li a:focus {
        color: #fff;
        background: rgba(0, 0, 0, 0.2);
      }
      
      nav ul li .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        width: 100%;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.1);
        margin-top: 0.5rem;
        border-radius: 4px;
      }
      
      nav ul li .dropdown.show {
        display: block;
      }
      
      nav ul li.has-dropdown > a::after {
        content: '\f107';
        float: right;
        transition: transform 0.3s ease;
      }
      
      nav ul li.has-dropdown > a.rotate::after {
        transform: rotate(180deg);
      }
    }

    @media (max-width: 480px) {
      nav .logo {
        max-width: 100px;
        max-height: 50px;
      }
      
      nav .logo img {
        max-height: 50px;
        width: auto;
        padding: 0.2rem;
      }
      
      nav ul {
        top: 55px;
        height: calc(100vh - 55px);
        width: 85%;
      }

      nav ul li .dropdown a {
        color: #fff;
      }
    }

    /* Header */
    header {
      background: linear-gradient(rgb(255 255 255 / 10%), #000), url(../../asset/gigantaraphoto.png) center / cover no-repeat;
      color: #ffffff;
      padding: 6rem 0 8rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    header .container {
      position: relative;
      z-index: 1;
    }
    header h1 {
      font-weight: 800;
      font-size: 3.5rem;
      margin-bottom: 1rem;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
      animation: fadeInDown 1s ease;
      color: #ffffff;
    }
    header p {
      font-size: 1.5rem;
      font-weight: 400;
      max-width: 700px;
      margin: 0 auto 2rem;
      text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
      animation: fadeInUp 1s ease;
    }
    .header-cta {
      display: inline-block;
      background: #ffffff;
      color: black;
      padding: 1rem 2rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      animation: fadeIn 1.5s ease;
    }
    .header-cta:hover {
      background: #ff5252;
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
      text-decoration: none;
    }

    /* Section Titles */
    .section-title {
      text-align: center;
      margin: 4rem 0 2rem;
      font-weight: 700;
      font-size: 2.5rem;
      color: #dd3333;
      position: relative;
      padding-bottom: 0.5rem;
    }
    .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: #dd3333;
      border-radius: 2px;
    }

    /* Swiper Testimonial Slider */
    #testimonials {
      padding: 4rem 0;
      background: linear-gradient(to bottom, #f8fbff, #e8f2ff);
      margin: 0 auto 3rem;
      position: relative;
    }
    #testimonials h2 {
      margin-bottom: 3rem;
    }
    .swiper {
      padding: 2rem 0 4rem;
      max-width: 1000px;
    }
    .swiper-slide {
      background: linear-gradient(135deg, #ffffff, #e6f0ff);
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 64, 128, 0.1);
      padding: 2.5rem;
      font-style: italic;
      font-size: 1.2rem;
      color: #003366;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 250px;
      transition: transform 0.3s ease;
      border: 1px solid rgba(0, 64, 128, 0.1);
    }
    .swiper-slide:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 64, 128, 0.15);
    }
    .testimonial-text {
      margin-bottom: 1.5rem;
      position: relative;
      padding-left: 2rem;
    }
    .testimonial-text::before {
      content: '"';
      font-size: 4rem;
      color: #dd3333;
      opacity: 0.2;
      position: absolute;
      left: 0;
      top: -1rem;
      font-family: Georgia, serif;
    }
    .client-info {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .client-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #dd3333;
      display: flex;
      align-items: center;
      justify-content: center;
      color: black;
      font-size: 1.5rem;
      font-weight: bold;
    }
    .client-details {
      display: flex;
      flex-direction: column;
    }
    .client-name {
      font-weight: 700;
      color: #002244;
      font-size: 1.15rem;
      font-style: normal;
    }
    .client-position {
      font-size: 1rem;
      color: #dd3333;
      font-style: normal;
    }
    /* Swiper navigation buttons */
    .swiper-button-next,
    .swiper-button-prev {
      color: #dd3333;
      top: 50%;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.9);
      box-shadow: 0 5px 15px rgba(0, 64, 128, 0.2);
      transition: all 0.3s ease;
    }
    .swiper-button-next::after,
    .swiper-button-prev::after {
      font-size: 1.5rem;
      font-weight: bold;
    }
    .swiper-button-next:hover,
    .swiper-button-prev:hover,
    .swiper-button-next:focus,
    .swiper-button-prev:focus {
      background: #dd3333;
      color: black;
      outline: none;
      transform: scale(1.1);
    }
    .swiper-pagination-bullet {
      background: #dd3333;
      opacity: 0.6;
      width: 12px;
      height: 12px;
    }
    .swiper-pagination-bullet-active {
      opacity: 1;
      background: #0066cc;
      transform: scale(1.2);
    }

    /* Clients Section */
    #clients {
      background: #f0f8ff;
      padding: 4rem 0;
      text-align: center;
    }
    #clients h2 {
      margin-bottom: 3rem;
    }
    #clients .client-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 3rem;
      max-width: 1000px;
      margin: 0 auto;
      align-items: center;
    }
    #clients .client-logos img {
      max-height: 70px;
      object-fit: contain;
      filter: grayscale(100%) opacity(0.7);
      transition: all 0.3s ease;
      cursor: pointer;
      padding: 0.8rem;
      border-radius: 8px;
      background: #ffffff;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    }
    #clients .client-logos img:hover,
    #clients .client-logos img:focus {
      filter: none;
      transform: scale(1.1);
      outline: none;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    /* Latest News Section */
    #latest-news {
      padding: 4rem 0 5rem;
      max-width: 900px;
      margin: 0 auto;
    }
    #latest-news h2 {
      text-align: center;
      margin-bottom: 3rem;
      color: #dd3333;
    }
    #latest-news ul {
      list-style: none;
      padding-left: 0;
    }
    #latest-news ul li {
      margin-bottom: 1.2rem;
      font-size: 1.1rem;
      border-left: 4px solid #dd3333;
      padding: 0.8rem 1rem;
      color: #222;
      cursor: pointer;
      transition: all 0.3s ease;
      background: #f8fbff;
      border-radius: 0 8px 8px 0;
    }
    #latest-news ul li:hover,
    #latest-news ul li:focus {
      color: #0066cc;
      background: #e8f2ff;
      outline: none;
      transform: translateX(5px);
    }

    /* Footer */
    footer {
      background: linear-gradient(to right, #ffffff, #f1f1f1);
      color: black;
      text-align: center;
      font-size: 0.95rem;
      margin-top: auto;
      box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
    }
    footer .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 2rem;
    }
    footer .footer-section {
      flex: 1 1 250px;
      min-width: 200px;
      text-align: left;
    }
    footer h4 {
      margin-bottom: 1.2rem;
      font-weight: 700;
      color: #dd3333;
      font-size: 1.3rem;
      position: relative;
      padding-bottom: 0.5rem;
    }
    footer h4::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 3px;
      background: #dd3333;
      border-radius: 2px;
    }
    footer ul {
      list-style: none;
      padding-left: 0;
    }
    footer ul li {
      margin-bottom: 0.8rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    footer ul li i {
      width: 20px;
      color: #dd3333;
    }
    footer ul li a {
      color: #cbd5e1;
      font-size: 0.95rem;
      transition: all 0.3s ease;
    }
    footer ul li a:hover,
    footer ul li a:focus {
      color: black;
      outline: none;
      transform: translateX(5px);
    }
    .social-icons {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }
    .social-icons a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      color: black;
      transition: all 0.3s ease;
    }
    .social-icons a:hover {
      background: #dd3333;
      transform: translateY(-3px);
    }
    footer p.copy {
      text-align: center;
      margin-top: 0rem;
      font-size: 0.9rem;
      color: #000000;
      width: 100%;
      padding-top: 1rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-weight: 600;
    }

    /* Responsive */
    @media (max-width: 992px) {
      header {
        padding: 4rem 0 6rem;
      }
      header h1 {
        font-size: 2.5rem;
      }
      header p {
        font-size: 1.2rem;
      }
      .section-title {
        font-size: 2rem;
      }
      .swiper-slide {
        padding: 2rem;
      }
    }

    @media (max-width: 768px) {
      #clients .client-logos {
        gap: 1.5rem;
      }
      #clients .client-logos img {
        max-height: 50px;
      }
      header h1 {
        font-size: 2rem;
      }
      header p {
        font-size: 1.1rem;
      }
      #latest-news ul li {
        font-size: 1rem;
      }
      footer .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      footer .footer-section {
        min-width: 100%;
        text-align: center;
      }
      footer h4::after {
        left: 50%;
        transform: translateX(-50%);
      }
      .social-icons {
        justify-content: center;
      }
      .swiper-button-next,
      .swiper-button-prev {
        display: none;
      }
    }

    @media (max-width: 480px) {
      nav .logo {
        font-size: 1.5rem;
      }
      header {
        padding: 3rem 0 4rem;
      }
      header h1 {
        font-size: 1.8rem;
      }
      .header-cta {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
      }
      .section-title {
        font-size: 1.8rem;
      }
      .swiper-slide {
        padding: 1.5rem;
        min-height: 220px;
      }
      .testimonial-text {
        font-size: 1rem;
      }
    }

    #internet-tools {
      max-width: 1200px;
      margin: 0 auto;
    }
    #internet-tools h2 {
      text-align: center;
      margin-bottom: 3rem;
      color: #dd3333;
      font-weight: 700;
      font-size: 2.5rem;
      position: relative;
      padding-bottom: 0.5rem;
    }
    #internet-tools h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: #dd3333;
      border-radius: 2px;
    }
    .category {
      margin-bottom: 4rem;
    }
    .category h3 {
      font-size: 1.8rem;
      color: #003366;
      margin-bottom: 2rem;
      border-left: 6px solid #dd3333;
      padding-left: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .category h3 i {
      color: #dd3333;
    }
    
    /* Container produk */
    .product-slider {
      padding: 1.5rem 0 3.5rem;
      position: relative;
    }

    .product-slider .swiper-wrapper {
      padding: 0.5rem 0;
    }

    /* Kartu produk yang lebih menarik */
    .product-slider .swiper-slide {
      background: #ffffff;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      padding: 1.5rem;
      text-align: center;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      cursor: pointer;
      user-select: none;
      border: 1px solid rgba(221, 51, 51, 0.1);
      height: auto;
      min-height: 320px;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
    }

    /* Efek hover */
    .product-slider .swiper-slide:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 16px 30px rgba(221, 51, 51, 0.15);
      border-color: rgba(221, 51, 51, 0.3);
    }

    /* Efek glow hover */
    .product-slider .swiper-slide::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 16px;
      background: linear-gradient(120deg, rgba(221, 51, 51, 0.05) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }

    .product-slider .swiper-slide:hover::after {
      opacity: 1;
    }

    /* Container gambar */
    .product-slider .swiper-slide .image-container {
      height: 160px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.2rem;
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      background: #f8f9fa;
    }

    .product-slider .swiper-slide img {
      max-width: 85%;
      max-height: 140px;
      object-fit: contain;
      transition: all 0.4s ease;
    }

    /* Efek zoom */
    .product-slider .swiper-slide:hover img {
      transform: scale(1.08);
    }

    /* Indikator loading */
    .product-slider .swiper-slide .image-container::before {
      content: '';
      position: absolute;
      width: 30px;
      height: 30px;
      border: 3px solid rgba(221, 51, 51, 0.1);
      border-top: 3px solid #dd3333;
      border-radius: 50%;
      animation: spin 1s linear infinite;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .product-slider .swiper-slide .image-container.loading::before {
      opacity: 1;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .product-slider .swiper-slide h5 {
      font-size: 1.1rem;
      color: #032b67;
      margin: 0.8rem 0;
      font-weight: 600;
      line-height: 1.4;
      transition: color 0.3s ease;
      flex-grow: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .product-slider .swiper-slide:hover h5 {
      color: #dd3333;
    }

    /* Badge untuk produk */
    .featured-badge {
      position: absolute;
      top: -5px;
      right: -5px;
      background: linear-gradient(45deg, #dd3333, #ff6b6b);
      color: white;
      font-size: 0.7rem;
      font-weight: bold;
      padding: 0.3rem 0.8rem;
      border-radius: 20px;
      box-shadow: 0 3px 10px rgba(221, 51, 51, 0.3);
      z-index: 2;
      transform: rotate(5deg);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% { transform: rotate(5deg) scale(1); }
      50% { transform: rotate(5deg) scale(1.05); }
      100% { transform: rotate(5deg) scale(1); }
    }

    /* Tombol navigasi */
    .product-slider .swiper-button-next,
    .product-slider .swiper-button-prev {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: white;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
      transition: all 0.3s ease;
      top: 40%;
      color: #dd3333;
    }

    .product-slider .swiper-button-next::after,
    .product-slider .swiper-button-prev::after {
      font-size: 1.2rem;
      font-weight: bold;
    }

    .product-slider .swiper-button-next:hover,
    .product-slider .swiper-button-prev:hover {
      background: #dd3333;
      color: white;
      transform: scale(1.1);
    }

    /* Pagination */
    .product-slider .swiper-pagination {
      bottom: 0;
    }

    .product-slider .swiper-pagination-bullet {
      width: 12px;
      height: 12px;
      background: #ddd;
      opacity: 0.8;
      transition: all 0.3s ease;
    }

    .product-slider .swiper-pagination-bullet-active {
      background: #dd3333;
      opacity: 1;
      transform: scale(1.2);
    }

    /* Animasi slide */
    .swiper-slide {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .swiper-slide-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsivitas */
    @media (max-width: 768px) {
      .product-slider .swiper-slide {
        min-height: 280px;
        padding: 1.2rem;
      }
      
      .product-slider .swiper-slide .image-container {
        height: 140px;
      }
      
      .product-slider .swiper-slide h5 {
        font-size: 1rem;
      }
      
      .product-slider .swiper-button-next,
      .product-slider .swiper-button-prev {
        display: none;
      }
    }

    /* Efek kategori */
    .category h3 {
      overflow: hidden;
      border-right: 3px solid #dd3333;
      white-space: nowrap;
      animation: typing 1.5s steps(30, end), blink-caret 0.75s step-end infinite;
    }

    @keyframes typing {
      from { width: 0 }
      to { width: 100% }
    }

    @keyframes blink-caret {
      from, to { border-color: transparent }
      50% { border-color: #dd3333 }
    }

    section.solutions-section {
            max-width: 1100px;
            margin: 3rem auto 5rem auto;
            padding: 0 1rem;
            text-align: center;
    }
    
    section.solutions-section p.intro-text {
            font-size: 1.125rem;
            font-weight: 500;
            margin-bottom: 2.5rem;
            color: #032b67;
    }

    .cards-container {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
    }

    article.card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(3, 43, 103, 0.1);
            overflow: hidden;
            width: 320px;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
    }

    article.card:hover,
    article.card:focus-within {
            transform: translateY(-6px);
            box-shadow: 0 14px 28px rgba(3, 43, 103, 0.2);
    }

    article.card img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-bottom: 4px solid #032b67;
            transition: filter 0.3s ease;
    }

    article.card:hover img,
    article.card:focus-within img {
            filter: brightness(0.85);
    }

    article.card h3 {
            font-size: 1.125rem;
            margin: 1rem 1.25rem 1.5rem 1.25rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            color: #032b67;
            user-select: none;
            flex-grow: 1;
            text-align: left;
    }

    /* Responsive */
    @media (max-width: 1024px) {
            .cards-container {
                justify-content: space-evenly;
            }
    }

    @media (max-width: 720px) {
            .cards-container {
                flex-direction: column;
                max-width: 320px;
                margin: 0 auto;
            }
            article.card {
                width: 100%;
            }
    }

    /* Tombol */
        .contact-floating-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 999;
            background: #dd3333;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 4px 15px rgba(221, 51, 51, 0.4);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            overflow: hidden;
        }

        .contact-floating-button:hover {
            transform: scale(1.1);
            background: #c12a2a;
            width: 180px;
            border-radius: 30px;
        }

        .contact-floating-button i {
            font-size: 1.5rem;
            transition: all 0.3s ease;
            position: absolute;
        }

        .contact-floating-button .click-text {
            opacity: 0;
            white-space: nowrap;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            transform: translateX(20px);
        }

        .contact-floating-button:hover i {
            opacity: 0;
            transform: translateX(-20px);
        }

        .contact-floating-button:hover .click-text {
            opacity: 1;
            transform: translateX(0);
            animation: pulse 1s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* Animasi tambahan untuk perhatian */
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
            40% {transform: translateY(-15px);}
            60% {transform: translateY(-7px);}
        }

        .contact-floating-button {
            animation: bounce 2s infinite 5s;
        }

        /* MODAL HUBUNGI KAMI */
        .contact-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 10000;
            justify-content: center;
            align-items: center;
        }

        .contact-modal.show {
            display: flex;
        }

        .modal-content {
            background-color: white;
            border-radius: 10px;
            width: 90%;
            max-width: 500px;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
            animation: modalFadeIn 0.3s;
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem;
            border-bottom: 1px solid #eee;
            background: #f8f9fa;
            border-radius: 10px 10px 0 0;
        }

        .modal-header h3 {
            margin: 0;
            color: #dd3333;
            font-size: 1.4rem;
        }

        .close-modal {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #777;
        }

        .close-modal:hover {
            color: #dd3333;
        }

        .modal-body {
            padding: 1.5rem;
        }

        .contact-info {
            margin-bottom: 1.5rem;
        }

        .contact-info p {
            display: flex;
            align-items: center;
            margin-bottom: 0.8rem;
            font-size: 1rem;
        }

        .contact-info i {
            width: 25px;
            color: #dd3333;
            margin-right: 10px;
        }

        .map-container {
            height: 200px;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 1.5rem;
            background: #f1f1f1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .map-placeholder {
            text-align: center;
            color: #777;
        }

        .map-placeholder i {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            color: #dd3333;
        }

        .contact-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        .contact-actions a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1.2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .contact-actions a.whatsapp {
            background: #25D366;
            color: white;
        }

        .contact-actions a.whatsapp:hover {
            background: #128C7E;
        }

        .contact-actions a.call {
            background: #dd3333;
            color: white;
        }

        .contact-actions a.call:hover {
            background: #c12a2a;
        }

        /* Responsive modal */
        @media (max-width: 576px) {
            .modal-content {
                width: 95%;
            }
            
            .contact-actions {
                flex-direction: column;
            }
        }


        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideUp {
            from { 
                opacity: 0;
                transform: translateY(50px) scale(0.95);
            }
            to { 
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        @keyframes shimmer {
            0% { background-position: -1000px 0; }
            100% { background-position: 1000px 0; }
        }
        
        /* Modal Produk */
        .product-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.85);
            z-index: 10001;
            justify-content: center;
            align-items: center;
            padding: 20px;
            overflow-y: auto;
            opacity: 0;
            transition: opacity 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .product-modal.show {
            display: flex;
            opacity: 1;
            animation: fadeIn 0.4s ease-out;
        }

        .product-modal-content {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 16px;
            width: 90%;
            max-width: 900px;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
            animation: slideUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            transform: translateY(0);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .product-modal-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.15);
        }

        .product-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem;
            border-bottom: 1px solid rgba(0,0,0,0.1);
            background: linear-gradient(to right, #f8f9fa, #ffffff);
            border-radius: 16px 16px 0 0;
            position: sticky;
            top: 0;
            z-index: 10;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .product-modal-header h3 {
            margin: 0;
            background: linear-gradient(45deg, #dd3333, #ff6b6b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .close-product-modal {
            background: none;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #777;
            transition: all 0.3s ease;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0,0,0,0.05);
        }

        .close-product-modal:hover {
            color: #dd3333;
            background: rgba(221, 51, 51, 0.1);
            transform: rotate(90deg);
        }

        .product-modal-body {
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .product-image-container {
            text-align: center;
            margin-bottom: 1rem;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .product-image-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .product-image-container img {
            max-width: 100%;
            max-height: 300px;
            border-radius: 8px;
            transition: transform 0.5s ease;
        }
        
        .product-image-container:hover img {
            transform: scale(1.03);
        }
        
        .image-placeholder {
            width: 100%;
            height: 300px;
            background: linear-gradient(90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
            background-size: 1000px 100%;
            animation: shimmer 2s infinite linear;
            border-radius: 8px;
        }

        .product-details {
            flex: 1;
        }

        .product-title {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #333;
            font-weight: 700;
            position: relative;
            padding-bottom: 10px;
        }
        
        .product-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(45deg, #dd3333, #ff6b6b);
            border-radius: 3px;
        }

        .product-description {
            color: #555;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .product-features {
            margin-bottom: 1.5rem;
        }

        .product-features h4 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: #333;
            font-weight: 600;
        }

        .product-features ul {
            padding-left: 1.5rem;
            color: #555;
        }

        .product-features li {
            margin-bottom: 0.8rem;
            position: relative;
            transition: transform 0.3s ease;
            padding-left: 5px;
        }
        
        .product-features li:hover {
            transform: translateX(5px);
        }
        
        .product-features li::before {
            content: '✓';
            color: #dd3333;
            font-weight: bold;
            position: absolute;
            left: -2.5rem;
        }

        .product-price {
            font-size: 1.8rem;
            font-weight: 800;
            color: #dd3333;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(221, 51, 51, 0.1);
            border-radius: 8px;
            animation: pulse 2s infinite;
        }

        .product-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .product-actions a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 1.8rem;
            border-radius: 50px;
            font-weight: 700;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-decoration: none;
            flex: 1;
            justify-content: center;
            text-align: center;
            min-width: 160px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .product-actions a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.7s ease;
        }
        
        .product-actions a:hover::before {
            left: 100%;
        }

        .product-actions a.whatsapp {
            background: linear-gradient(45deg, #25D366, #128C7E);
            color: white;
        }

        .product-actions a.whatsapp:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
        }

        .product-actions a.call {
            background: linear-gradient(45deg, #dd3333, #ff6b6b);
            color: white;
        }

        .product-actions a.call:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(221, 51, 51, 0.3);
        }

        .product-actions a.email {
            background: linear-gradient(45deg, #555, #333);
            color: white;
        }

        .product-actions a.email:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(85, 85, 85, 0.3);
        }
        
        .product-actions a i {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }
        
        .product-actions a:hover i {
            transform: scale(1.2);
        }

        /* Responsive */
        @media (min-width: 768px) {
            .product-modal-body {
                flex-direction: row;
            }
            
            .product-image-container {
                flex: 0 0 45%;
            }
            
            .product-details {
                flex: 0 0 55%;
                padding-left: 2rem;
            }
        }

        @media (max-width: 767px) {
            .product-modal-body {
                padding: 1.5rem;
            }
            
            .product-actions {
                flex-direction: column;
            }
            
            .product-actions a {
                width: 100%;
            }
            
            .product-title {
                font-size: 1.5rem;
            }
            
            .product-price {
                font-size: 1.5rem;
            }
        }

        /* Scrollbar kustom */
        .product-modal-content::-webkit-scrollbar {
            width: 8px;
        }

        .product-modal-content::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 0 0 10px 0;
        }

        .product-modal-content::-webkit-scrollbar-thumb {
            background: linear-gradient(to bottom, #dd3333, #ff6b6b);
            border-radius: 10px;
        }

        .product-modal-content::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(to bottom, #c12a2a, #e05e5e);
        }

    /* Efek hover produk */
    .swiper-slide {
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .swiper-slide:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }