/* ========================
   AJTN Modern Clean UI CSS
   Style seperti desain referensi
=========================*/
.nav .logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: 0.3s ease;
}
@media (max-width: 768px) {
  .nav .logo img {
    width: 42px;
    height: 42px;
  }
}
@media (max-width: 480px) {
  .nav .logo img {
    width: 36px;
    height: 36px;
  }
}
:root {
  --primary: #0a3d62;
  --accent: #1e6fa8;
  --bg-light: #eef5f7;
  --text-dark: #1a1a1a;
  --text-soft: #4d4d4d;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

/* NAVIGATION */
.nav {
  width: 100%;
  padding: 8px 20px;
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav a {
  margin-left: 25px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: 0.3s;
}

.nav a:hover {
  color: var(--accent);
}

/* HERO */
.hero {
  position: relative;
  padding: 100px 80px;
  background: #cfe5ef;
  display: flex;
  justify-content: center;
}

.hero-inner {
  width: 100%;
  max-width: 1400px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-text h1 {
  font-size: 45px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  color: var(--text-soft);
}

.btn-primary {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 32px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: var(--accent);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-decor {
  width: 350px;
  height: 350px;
  background: url("https://images.unsplash.com/photo-1525182008055-f88b95ff7980?w=600")
    center/cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* SECTIONS */
section {
  padding: 80px 60px;
}

h2 {
  font-size: 34px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary);
}

/* VALUES */
.value-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.value-box {
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.value-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 15px;
}

.value-box h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: var(--primary);
}

/* SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.card {
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 15px;
}

.card h3 {
  margin-bottom: 10px;
  color: var(--primary);
}

/* PROJECTS */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.project-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ABOUT */
.about p {
  max-width: 900px;
  margin: auto;
  text-align: center;
  font-size: 18px;
  color: var(--text-soft);
}

/* CONTACT */
.contact p {
  text-align: center;
  margin-bottom: 10px;
  font-size: 18px;
}

/* FOOTER */
footer {
  padding: 40px;
  text-align: center;
  background: #dce9ef;
  margin-top: 60px;
  font-size: 14px;
  color: var(--text-soft);
}
.pamphlet {
  padding: 80px 20px;
  background: #f6f7fb;
  display: flex;
  justify-content: center;
}
.pamphlet-wrapper {
  background: #fff;
  max-width: 800px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden; /* penting */
}
.pamphlet-image {
  display: flex;
  justify-content: center;
  padding: 30px 20px;
  background: #0b0f2f; /* optional, biar kontras */
}

.pamphlet-image img {
  max-width: 600px; /* 🔥 gambar tidak full layar */
  width: 100%;
  height: auto;
  object-fit: contain; /* FULL IMAGE */
  border-radius: 12px;
}
.pamphlet-body {
  text-align: center;
  padding: 40px 30px 50px;
}

.pamphlet-body h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.pamphlet-body p {
  font-size: 15px;
  color: #666;
  max-width: 600px;
  margin: 0 auto 30px;
}
@media (max-width: 768px) {
  .pamphlet-image img {
    max-width: 320px;
  }

  .pamphlet-body h3 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {

  /* GLOBAL */
  section {
    padding: 60px 20px;
  }

  h2 {
    font-size: 26px;
  }

  /* NAV */
  .nav {
    flex-direction: column;
    gap: 10px;
  }

  .nav nav a {
    margin-left: 12px;
    font-size: 14px;
  }

  /* HERO */
  .hero {
    padding: 60px 20px;
  }

  .hero-inner {
    grid-template-columns: 1fr; /* STACK */
    text-align: center;
  }

  .hero-text h1 {
    font-size: 30px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-decor {
    width: 260px;
    height: 260px;
    margin: 0 auto;
  }

  /* VALUES */
  .value-container {
    grid-template-columns: 1fr;
  }

  /* SERVICES */
  .service-grid {
    grid-template-columns: 1fr;
  }

  /* PROJECTS */
  .project-grid {
    grid-template-columns: 1fr;
  }

  /* PAMFLET */
  .pamphlet {
    padding: 60px 15px;
  }

  .pamphlet-wrapper {
    border-radius: 14px;
  }

  .pamphlet-image img {
    max-width: 100%;
  }

  .pamphlet-body h3 {
    font-size: 20px;
  }

  .pamphlet-body p {
    font-size: 14px;
  }
}


