
    body {
      background: #f5f5f5;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    .hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/images/hero/toyotakl.webp') center center no-repeat;
      background-size: cover;
      color: white;
      padding: 100px 20px;
      text-align: center;
    }
    
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 30px;
      background-color: white;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    
    footer {
      background-color: #0c1bc4;
      color: white;
      padding: 2rem 1rem;
      margin-top: 4rem;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .menu-container {
      position: relative;
      display: inline-block;
    }

    .menu-button {
      font-weight: bold;
      cursor: pointer;
      padding: 10px;
      background-color: white;
      border: none;
      font-size: 16px;
    }

    .submenu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: white;
      border: 1px solid #ddd;
      border-radius: 6px;
      min-width: 150px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      z-index: 1000;
    }

    .submenu div {
      padding: 10px;
      cursor: pointer;
    }

    .submenu div:hover {
      background-color: #f0f0f0;
    }

    .logo img {
      height: 25px;
    }
    
    .tunasfriend img {
      height: 75px;
    }

    nav {
      display: flex;
      align-items: center;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 30px;
    }

    nav ul li a {
      text-decoration: none;
      color: #333;
      font-weight: bold;
      transition: color 0.3s;
      position: relative;
    }

    nav ul li a.active {
      color: red;
    }

    nav ul li a:hover {
      color: #e60000;
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }

    .menu-toggle span {
      width: 25px;
      height: 3px;
      background-color: #333;
      transition: all 0.3s;
    }

    .menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Social Bar */
    .social-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: white;
      border-top: 1px solid #ddd;
      display: flex;
      justify-content: space-around;
      align-items: center;
      padding: 10px 0;
      z-index: 9999;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    }
    
    .social-bar a {
      text-align: center;
      font-size: 12px;
      color: #333;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .social-bar i {
      font-size: 20px;
      margin-bottom: 5px;
    }
    
    .social-media a {
      display: inline-block;
      margin-right: 15px;
    }

    .social-media img {
      width: 38px;
      height: 38px;
      filter: invert(1);
      transition: filter 0.3s ease;
    }

    .social-media img:hover {
      filter: invert(0.5);
    }
    
    .kontak-icon:hover {
      background-color: #1ebea5;
    }
    
    .whatsapp-button {
      position: fixed;
      bottom: 80px;
      right: 20px;
      background-color: #25D366;
      border-radius: 50%;
      padding: 15px;
      z-index: 1000;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      transition: transform 0.3s;
    }
    
    .whatsapp-button:hover {
      transform: scale(1.1);
    }
    
    .whatsapp-button img {
      width: 30px;
      height: 30px;
    }
    
    /* Trade-In Specific Styles */
    .tradein-benefits {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin: 40px 0;
    }
    
    .benefit-card {
      background: white;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: transform 0.3s;
    }
    
    .benefit-card:hover {
      transform: translateY(-5px);
    }
    
    .benefit-icon {
      font-size: 40px;
      color: #e60000;
      margin-bottom: 15px;
    }
    
    .tradein-form {
      background: white;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      margin: 40px 0;
    }
    
    .form-group {
      margin-bottom: 20px;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: bold;
    }
    
    .form-group input, .form-group select, .form-group textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 16px;
    }
    
    .submit-btn {
      background: #e60000;
      color: white;
      border: none;
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 18px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s;
      width: 100%;
    }
    
    .submit-btn:hover {
      background: #b30000;
    }
    
    .process-steps {
      display: flex;
      justify-content: space-between;
      margin: 40px 0;
      flex-wrap: wrap;
    }
    
    .step {
      text-align: center;
      flex: 1;
      min-width: 200px;
      margin: 10px;
      position: relative;
    }
    
    .step-number {
      width: 50px;
      height: 50px;
      background: #e60000;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      font-weight: bold;
      margin: 0 auto 15px;
    }
    
    .step:not(:last-child):after {
      content: "";
      position: absolute;
      top: 25px;
      right: -10%;
      width: 20%;
      height: 2px;
      background: #e60000;
    }
    
    /* Gallery Styles */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 15px;
      margin: 40px 0;
    }
    
    .grid-item {
      overflow: hidden;
      border-radius: 8px;
      cursor: pointer;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }
    
    .grid-item:hover {
      transform: scale(1.03);
    }
    
    .grid-item img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }
    
    .slideshow-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.9);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 2000;
    }
    
    .slideshow-container.active {
      display: flex;
    }
    
    .close-btn {
      position: absolute;
      top: 20px;
      right: 20px;
      background: none;
      border: none;
      color: white;
      font-size: 30px;
      cursor: pointer;
      z-index: 2001;
    }
    
    .slideshow-nav {
      position: absolute;
      width: 100%;
      display: flex;
      justify-content: space-between;
      padding: 0 20px;
      z-index: 2001;
    }
    
    .nav-btn {
      background: rgba(255,255,255,0.2);
      border: none;
      color: white;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      font-size: 20px;
      cursor: pointer;
      transition: background 0.3s;
    }
    
    .nav-btn:hover {
      background: rgba(255,255,255,0.4);
    }
    
    .slide-content {
      width: 80%;
      max-width: 800px;
      position: relative;
    }
    
    .slide {
      display: none;
    }
    
    .slide.active {
      display: block;
      animation: fade 0.5s;
    }
    
    .slide img {
      width: 100%;
      max-height: 80vh;
      object-fit: contain;
    }
    
    .slide-caption {
      color: white;
      text-align: center;
      margin-top: 15px;
      font-size: 18px;
    }
    
    .indicators {
      position: absolute;
      bottom: 20px;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      gap: 10px;
    }
    
    .indicator {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255,255,255,0.5);
      cursor: pointer;
      transition: background 0.3s;
    }
    
    .indicator.active {
      background: white;
    }
    
    @keyframes fade {
      from {opacity: 0.4}
      to {opacity: 1}
    }
   
    /* Responsive Styles */
    @media (max-width: 768px) {
      header {
        padding: 10px 15px;
      }
      
      nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: white;
        width: 100%;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 20px;
        z-index: 1000;
      }
      
      nav ul.show {
        display: flex;
      }
      
      .menu-toggle {
        display: flex;
      }
      
      .hero-section {
        padding: 60px 15px;
      }
      
      .process-steps {
        flex-direction: column;
      }
      
      .step:not(:last-child):after {
        display: none;
      }
      
      .tradein-benefits {
        grid-template-columns: 1fr;
      }
      
      .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      }
      
      .social-bar {
        padding: 8px 0;
      }
      
      .social-bar a {
        font-size: 10px;
      }
      
      .social-bar i {
        font-size: 18px;
      }
      
      footer > div {
        flex-direction: column;
        text-align: center;
        gap: 20px;
      }
      
      .social-media {
        margin-top: 15px;
      }
    }
    
    @media (min-width: 769px) and (max-width: 1024px) {
      .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
  