* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    background-color: #f7f7f7;
    color: #333;
  }
  
  header {
    background: #222;
    color: white;
    padding: 15px 0;
  }
  
  nav {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  nav a {
    color: white;
    text-decoration: none;
  }
  
  nav a.active, nav a:hover {
    text-decoration: underline;
  }
  
  .hero {
    text-align: center;
    padding: 120px 20px;  /* tambah ruang vertikal */
    background: linear-gradient(135deg, #4b6cb7, #182848); /* warna gradasi lebih kalem */
    color: white;
    font-size: 1.2rem;
    line-height: 1.6;
  }
  
  .hero h2 {
    font-size: 2.5rem;  /* bikin judul lebih besar */
    margin-bottom: 15px;
    font-weight: 700;
  }
  
  .hero p {
    max-width: 600px;
    margin: 0 auto 25px;
    font-size: 1.1rem;
  }
  
  .btn {
    background: white;
    color: #182848;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: inline-block;
  }
  
  .btn:hover {
    background-color: #182848;
    color: white;
    cursor: pointer;
  }
  
  .about, .works, .process, .contact {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
  }
  
  .about {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .about img {
    border-radius: 100%;
  }
  
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  footer {
    text-align: center;
    padding: 20px 10px;  /* tambah padding */
    background: #222;
    color: #ddd;
    font-size: 0.9rem;
    margin-top: 50px;
  }

  /* Style tambahan untuk works preview di beranda */
.works-preview {
    padding: 60px 20px;
    max-width: 900px;
    margin: 40px auto;
    text-align: center;
  }
  
  .works-preview h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
  }
  
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  
  .work-item {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
    transition: transform 0.3s ease;
  }
  
  .work-item:hover {
    transform: translateY(-10px);
  }
  
  .work-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 12px;
  }
  
  .work-item h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
    color: #182848;
  }
  
  .work-item p {
    color: #555;
    font-size: 1rem;
    line-height: 1.4;
  }
  
  /* Gaya untuk halaman karya detail */
.works-page {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px 60px;
  }
  
  .works-page h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 700;
    color: #182848;
  }
  
  .work-detail {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgb(0 0 0 / 0.1);
    padding: 20px;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .work-detail img {
    width: 280px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
  }
  
  .work-info {
    flex: 1;
    color: #333;
  }
  
  .work-info h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: #182848;
  }
  
  .work-info p {
    margin: 6px 0;
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .work-info .btn {
    display: inline-block;
    margin-top: 15px;
    background-color: #182848;
    color: white;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .work-info .btn:hover {
    background-color: #4b6cb7;
  }
  
  .btn.disabled {
    background-color: #aaa;
    cursor: not-allowed;
    pointer-events: none;
  }
  
  /* Hero Section */
.hero {
    text-align: center;
    padding: 140px 20px 100px;
    background: linear-gradient(135deg, #4b6cb7, #182848);
    color: white;
  }
  
  .hero h2 {
    font-size: 3rem;
    margin-bottom: 18px;
    font-weight: 700;
  }
  
  .hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }
  
  .btn {
    background: white;
    color: #182848;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: inline-block;
  }
  
  .btn:hover {
    background-color: #182848;
    color: white;
    cursor: pointer;
  }
  
  /* Intro Section */
  .intro {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 900px;
    margin: 60px auto 120px;
    gap: 40px;
    padding: 0 20px;
  }
  
  .intro-content {
    flex: 1 1 350px;
  }
  
  .intro-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #182848;
    font-weight: 700;
  }
  
  .intro-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
  }
  
  .intro-image {
    flex: 1 1 350px;
    text-align: center;
  }
  
  .intro-image img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 22px 10px;
    background: #222;
    color: #ddd;
    font-size: 0.9rem;
    margin-top: 50px;
  }
  
  /* Responsive */
  @media (max-width: 720px) {
    .intro {
      flex-direction: column;
    }
  }

  .process-page {
    max-width: 900px;
    margin: 40px auto 80px;
    padding: 0 20px;
  }
  
  .process-page h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #182848;
    font-weight: 700;
  }
  
  .process-entry {
    margin-bottom: 50px;
    background: white;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  }
  
  .process-entry h3 {
    font-size: 1.8rem;
    color: #182848;
    margin-bottom: 8px;
  }
  
  .process-entry p em {
    display: block;
    font-style: normal;
    color: #666;
    margin-bottom: 12px;
  }
  
  .process-entry p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
  }
  
  .process-entry img {
    width: 100%;
    border-radius: 12px;
    margin-top: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }

  /* --- HEADER --- */
header {
    background-color: #182848;
    padding: 18px 30px;
  }
  
  header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .logo {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
  }
  
  nav ul li a:hover,
  nav ul li a.active {
    background-color: #f39c12;
    color: #182848;
  }
  
  /* --- PROCESS PAGE --- */
  .process-page {
    max-width: 900px;
    margin: 40px auto 80px;
    padding: 0 20px;
  }
  
  .process-page h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #182848;
    font-weight: 700;
  }
  
  .process-entry {
    margin-bottom: 50px;
    background: white;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  }
  
  .process-entry h3 {
    font-size: 1.8rem;
    color: #182848;
    margin-bottom: 8px;
  }
  
  .process-entry p em {
    display: block;
    font-style: normal;
    color: #666;
    margin-bottom: 12px;
  }
  
  .process-entry p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
  }
  
  .process-entry img {
    width: 100%;
    border-radius: 12px;
    margin-top: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }
  
  /* --- FOOTER --- */
  footer {
    text-align: center;
    padding: 22px 10px;
    background: #222;
    color: #ddd;
    font-size: 0.9rem;
    margin-top: 50px;
  }
  
  /* Responsive */
  @media (max-width: 720px) {
    .process-page {
      padding: 0 10px;
    }
  }
  
  .gallery {
    max-width: 1000px;
    margin: 40px auto 80px;
    padding: 0 20px;
  }
  
  .gallery h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 40px;
    color: #182848;
    font-weight: 700;
  }
  
  .work-item {
    margin-bottom: 40px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 7px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 15px;
  }
  
  .work-item img {
    width: 320px;
    border-radius: 14px;
    object-fit: cover;
  }
  
  .work-info {
    flex: 1;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .work-info h3 {
    font-size: 1.7rem;
    margin-bottom: 10px;
    color: #182848;
  }
  
  .work-info p {
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 6px;
    color: #444;
  }
  
  @media (max-width: 720px) {
    .work-item {
      flex-direction: column;
      align-items: center;
    }
    .work-item img {
      width: 100%;
      max-width: 400px;
    }
    .work-info {
      padding: 15px 0;
    }
  }

  .about-page {
    max-width: 900px;
    margin: 40px auto 80px;
    padding: 0 20px;
  }
  
  .about-page h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #182848;
    font-weight: 700;
  }
  
  .profile {
    display: flex;
    gap: 30px;
    align-items: center;
    background: white;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.1);
    flex-wrap: wrap;
  }
  
  .profile img {
    width: 280px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }
  
  .profile-info {
    flex: 1;
    font-size: 1.1rem;
    color: #333;
  }
  
  .profile-info h3 {
    font-size: 1.9rem;
    color: #182848;
    margin-bottom: 15px;
  }
  
  .profile-info p {
    margin-bottom: 15px;
    line-height: 1.6;
  }
  
  @media (max-width: 720px) {
    .profile {
      flex-direction: column;
      align-items: center;
    }
  
    .profile img {
      width: 90%;
      max-width: 300px;
    }
  
    .profile-info {
      padding-top: 20px;
      text-align: center;
    }
  }

  /* CONTACT PAGE */
.contact-page {
    max-width: 1000px;
    margin: 40px auto 80px;
    padding: 0 20px;
  }
  
  .contact-page h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #182848;
    font-weight: 700;
  }
  
  .contact-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 50px;
    line-height: 1.6;
  }
  
  .contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.1);
  }
  
  /* Formulir */
  .contact-form {
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-form label {
    font-weight: 600;
    color: #182848;
  }
  
  .contact-form input,
  .contact-form textarea {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #182848;
    outline: none;
  }
  
  .contact-form .btn {
    background: #182848;
    color: white;
    border: none;
    cursor: pointer;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }
  
  .contact-form .btn:hover {
    background: #f39c12;
    color: #182848;
  }
  
  /* Info Kontak */
  .contact-info {
    flex: 1 1 350px;
  }
  
  .contact-info h3 {
    font-size: 1.7rem;
    margin-bottom: 15px;
    color: #182848;
  }
  
  .contact-info p {
    margin-bottom: 10px;
    color: #333;
  }
  
  .contact-info a {
    color: #f39c12;
    text-decoration: none;
  }
  
  .contact-info a:hover {
    text-decoration: underline;
  }
  
  .contact-info img {
    width: 100%;
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.1);
  }
  
  /* Responsive */
  @media (max-width: 720px) {
    
  }
    .contact-container {
      flex-direction: column;
    }
  
    .contact-info {
      text-align: center;
    }
