:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --secondary: #f8fafc;
    --accent: #ffc107;
    --accent-blue: #dbeafe;
    --gray-light: #f3f4f6;
    --gray-medium: #94a3b8;
    --gray-dark: #475569;
    --white: #ffffff;
    --black: #000000;
    --transition: all 0.3s ease;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--primary);
    line-height: 1.6;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  @media (min-width: 768px) {
    h1 {
      font-size: 3.5rem;
    }
    
    h2 {
      font-size: 2.5rem;
    }
  }
  
  section {
    padding: 5rem 0;
  }
  
  .section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--gray-dark);
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideInFromLeft {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInFromRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Hero Section */
  .hero-section {
    height: 100vh;
    min-height: 600px;
    background-image: url('https://ik.imagekit.io/LKS08011968/Image%20LKS/image/Cityview.png');
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
    display: flex;
    flex-direction: column;
    padding-bottom: 2rem;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  /* Navbar scroll effect */
  .navbar.scrolled {
    background-color: var(--primary) !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
}

  .navbar-dark .navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    transition: all 0.3s ease;
  }
    
    
  .navbar-dark .navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .navbar.scrolled .navbar-nav .nav-link {
    color: var(--white) !important;
  }

  .navbar-dark .navbar-nav .nav-link.active {
    color: var(--accent) !important;
    font-weight: bold;
    position: relative;
}

  .navbar.scrolled .navbar-nav .nav-link.active {
    color: var(--accent) !important;
  }

  .navbar.scrolled .navbar-nav .nav-link:hover {
      color: var(--accent) !important;
  }
  

  .navbar-dark .navbar-nav .nav-link.active::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: var(--accent);
  }

  .navbar.scrolled .contact-btn:hover{
    background-color: var(--accent) !important;
    border: 2px solid var(--accent) !important;
  }
  
  .contact-btn {
    border-radius: 4px;
  }
  
  .hero-content {
    position: relative;
    z-index: 10;
    padding-top: 6rem;
    max-width: 800px;
  }
  
  .hero-content h1 {
    margin-bottom: 1.5rem;
    animation: fadeIn 0.8s ease forwards;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    opacity: 0.9;
    animation: fadeIn 0.8s ease 0.2s forwards;
    opacity: 0;
  }
  
  .hero-content .btn {
    animation: fadeIn 0.8s ease 0.4s forwards;
    opacity: 0;
  }
  
  /* Stats Section */
  .stats-section {
    background-color: var(--gray-light);
  }
  
  .stats-grid {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .stat-item p {
    color: var(--gray-dark);
  }
  
  .achievement-grid {
    margin-top: 2rem;
  }
  
  .achievement-item {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  
  .achievement-item:hover {
    transform: translateY(-5px);
  }
  
  .check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--black);
    color: var(--white);
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
  }
  
  /* Choose Us Section */
  .choose-card {
    padding: 2rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
  }
  
  .choose-card:hover {
    transform: scale(1.05);
  }
  
  .yellow-bg {
    background-color: #fff9db;
  }
  
  .blue-bg {
    background-color: var(--accent-blue);
  }
  
  .icon-circle {
    width: 2rem;
    height: 2rem;
    background-color: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1.5rem;
  }
  
  /* Services Section */
  .service-card {
    background-color: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    min-height: 400px; /* Menggunakan min-height daripada height tetap */
    display: flex;
    flex-direction: column;
    transition: var(--transition);
  }
  
  .service-card:hover {
    transform: translateY(-10px);
  }
  
  .service-card img {
    width: 100%;
    height: 200px; /* Tinggi gambar tetap */
    object-fit: cover;
  }
  
  .service-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .service-content h3 {
    margin-bottom: 1rem;
  }
  
  .service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
  }
  
  .service-link i {
    margin-left: 0.5rem;
    transition: var(--transition);
  }
  
  .service-link:hover i {
    transform: translateX(5px);
  }
  
  /* Products Section */
  .filters-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 0.5rem;
  }
  
  .filter-btn {
    border: 1px solid var(--gray-dark);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    background-color: transparent;
    transition: var(--transition);
    cursor: pointer;
  }
  
  .filter-btn:hover, .filter-btn.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
  }
  
  .product-card {
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    min-height: 450px; /* Menggunakan min-height daripada height tetap */
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    overflow: hidden;
  }
  
  .product-card:hover {
    transform: translateY(-10px);
  }
  
  .product-card img {
    width: 100%;
    height: 180px; /* Tinggi gambar tetap */
    object-fit: cover;
    border-radius: 0.25rem;
    margin-bottom: 1rem;
  }
  
  .product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    min-height: 2.8rem; /* Tinggi tetap untuk judul */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    max-height: 2.4em;
  }
  
  .product-card .price {
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-bottom: 1rem;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    line-clamp: 4;
  }
  
  .product-desc {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    line-clamp: 4;
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-bottom: 1rem;
    flex-grow: 1;
  }
  
  .product-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    margin-top: auto;
  }

  .brand {
    font-size: 0.875rem;
    color: var(--gray-dark);
  }
  
  .status {
    font-size: 0.875rem;
  }
  
  .pre-order {
    color: #f59e0b;
  }
  
  .ready {
    color: #10b981;
  }
  
  /* Portfolio Section */
  .portfolio-card {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: var(--transition);
    min-height: 450px; /* min-height instead of fixed height */
    display: flex;
    flex-direction: column;
    position: relative;
  }
  
  .portfolio-card:hover {
    transform: translateY(-10px);
  }
  
  .portfolio-card img {
    width: 100%;
    height: 250px; /* Fixed height for images */
    object-fit: cover;
    cursor: pointer; /* Add pointer cursor to indicate clickable image */
    transition: var(--transition);
  }

  /* Image overlay with magnifying glass */
  .portfolio-card .image-container {
    position: relative;
    overflow: hidden;
  }

  .portfolio-card .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
  }

  .portfolio-card .image-overlay i {
    color: var(--white);
    font-size: 2rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
  }

  .portfolio-card:hover .image-overlay {
    opacity: 1;
  }

  .portfolio-card:hover .image-overlay i {
    transform: scale(1);
  }
  
  .portfolio-content {
    padding: 1.5rem;
    flex-grow: 1; /* Allow content to expand to fill the card */
    display: flex;
    flex-direction: column;
  }
  
  .portfolio-content h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
  }
  
  .portfolio-content p {
    margin-bottom: 0;
    flex-grow: 1;
  }
  
  /* Image Modal */
  .modal-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
  }
  
  .modal-dialog.modal-xl {
    max-width: 90vw;
  }

  .image-modal .modal-content {
    background-color: rgba(0, 0, 0, 0.9);
    border: none;
  }

  .image-modal .modal-header {
    border-bottom: none;
    padding: 1rem;
  }

  .image-modal .btn-close {
    color: white;
    background-color: white;
    opacity: 0.8;
  }

  .image-modal .btn-close:hover {
    opacity: 1;
  }
  
  /* Testimonials Section */
  .testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    position: relative;
  }
  
  .quote {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 4rem;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.1;
  }
  
  .testimonial-card h3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  
  .testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
  }
  
  .author-name {
    font-weight: 600;
    margin-bottom: 0;
  }
  
  .author-position {
    color: var(--gray-dark);
    margin: 0;
  }
  
  .testimonial-controls {
    display: flex;
    gap: 0.5rem;
  }
  
  .testimonial-image {
    border-radius: 0.5rem;
    height: 350px;
    width: 100%;
    object-fit: cover;
  }
  
  /* CTA Section */
  .cta-section {
    background-color: var(--gray-light);
    border-radius: 0.5rem;
    padding: 4rem 0;
  }
  
  .social-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--white);
    transition: all 0.3s ease;
    margin: 0 0.25rem;
}

.social-icon:hover {
    background-color: var(--white);
    color: var(--primary);
}

footer {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 5rem;
    padding-bottom: 1.5rem;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

footer a:hover {
    color: var(--white);
}

.footer-title {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}
  
  /* @media (min-width: 768px) {
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
    }
  }
  
  .copyright {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
  }
  
  @media (min-width: 768px) {
    .copyright {
      margin-bottom: 0;
    }
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
  }
  
  .social-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
  }
  
  .social-links a:hover {
    color: var(--white);
  } */
  
  /* Custom Tailwind-like Utilities */
  .btn {
    transition: var(--transition);
  }
  
  .btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
  }
  
  .btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
  }
  
  .rounded-pill {
    border-radius: 50rem;
  }

  #tombol a {
    text-decoration: none !important;
    color: inherit;
    display: inline-block;
    width: 100%;
    height: 100%;
}
  
  /* Responsive Adjustments */
  @media (max-width: 767px) {
    section {
      padding: 3rem 0;
    }
    
    .hero-content {
      padding-top: 4rem;
    }
    
    h1 {
      font-size: 2rem;
    }
    
    h2 {
      font-size: 1.8rem;
    }
    
    h3 {
      font-size: 1.3rem;
    }
    
    .hero-content p {
      font-size: 1rem;
    }
    
    .stat-item h3 {
      font-size: 1.8rem;
    }
    
    .achievement-item {
      margin-bottom: 0.75rem;
      padding: 0.5rem 1rem;
    }
    
    .testimonial-image {
      height: 250px;
      margin-top: 2rem;
    }
    
    .service-card, .product-card, .portfolio-card {
      height: auto;
      margin-bottom: 1.5rem;
    }
    
    .choose-card {
      padding: 1.5rem;
    }
    
    .service-card img {
      height: 180px;
    }
    
    .portfolio-card img {
      height: 200px;
    }
    
    .testimonial-card {
      padding: 1.5rem;
    }
    
    .cta-section {
      padding: 3rem 0;
    }
  }
  
  /* Tablet Adjustments */
  @media (min-width: 768px) and (max-width: 991px) {
    .hero-content h1 {
      font-size: 2.8rem;
    }
    
    .service-card, .product-card, .portfolio-card {
      height: auto;
    }
    
    .service-card img {
      height: 180px;
    }
    
    .portfolio-card img {
      height: 220px;
    }
  }