* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}

/* HEADER */
header {
  position: relative;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25)),
    url("assets/bd399434426ee892c10a8a074210332b_1761046194234.png") center/cover no-repeat;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 22px 50px;
}
nav a {
  color: #fff;
  margin-left: 25px;
  font-weight: 600;
  font-size: 14px;
}
nav a.active {
  text-decoration: underline;
}
.hero-text {
  padding: 0 8%;
  max-width: 900px;
}
.hero-text h1 {
  font-family: "Oswald", sans-serif;
  font-size: 60px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.hero-text p {
  font-size: 16px;
  letter-spacing: 2px;
  color: #eee;
}

/* ABOUT */
section.about {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 40px;
  padding: 100px 8%;
  align-items: start;
}
.about-left img {
  width: 100%;
  max-width: 350px;
  margin: auto;
  display: block;
}
.about-center h2 {
  font-family: "Oswald", sans-serif;
  font-size: 44px;
  margin-bottom: 10px;
}
.about-center h4 {
  font-size: 16px;
  color: #555;
  margin-bottom: 24px;
}
.about-center p {
  font-size: 15px;
  margin-bottom: 16px;
  color: #333;
}
.about-right {
  text-align: center;
}
.about-right img {
  width: 100%;
  max-width: 280px;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.about-right .name {
  font-weight: 600;
  margin-top: 12px;
}
.about-right .role {
  font-size: 13px;
  color: #555;
}

/* PRAKATA */
section.detail {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 60px;
  align-items: start;
  padding: 100px 8%;
  background: #0b0b0b;
  color: #fff;
}
.detail-left img {
  width: 100%;
  border-radius: 6px;
  max-width: 560px;
  display: block;
  margin: auto;
}
.detail-right h2 {
  font-family: "Oswald", sans-serif;
  font-size: 40px;
  margin-bottom: 20px;
}
.detail-right h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #f4c842;
  text-transform: uppercase;
}
.detail-right p {
  font-size: 15px;
  margin-bottom: 16px;
  color: #ddd;
  line-height: 1.7;
}
.detail-right strong {
  color: #fff;
}
.detail-right em {
  color: #f4c842;
  font-style: normal;
}

/* CONTACT */
section.contact {
  background: #f8f8f8;
  padding: 100px 8%;
  text-align: center;
}
.contact h2 {
  font-family: "Oswald", sans-serif;
  font-size: 48px;
  color: #222;
  margin-bottom: 10px;
}
.contact p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}
.contact button {
  background: #111;
  color: #fff;
  border: none;
  padding: 14px 38px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}
.contact button:hover {
  background: #333;
  transform: translateY(-2px);
}

/* JASA & LAYANAN */
section.services {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 100px 8%;
  background: #fff;
  color: #111;
}
.services-left img {
  width: 100%;
  max-width: 460px;
  margin: auto;
  display: block;
}
.services-right h2 {
  font-family: "Oswald", sans-serif;
  font-size: 42px;
  margin-bottom: 16px;
  color: #222;
}
.services-right p {
  font-size: 15px;
  color: #444;
  margin-bottom: 16px;
}
.services-list {
  margin: 20px 0;
  padding-left: 20px;
}
.services-list li {
  margin-bottom: 8px;
  color: #222;
  font-size: 15px;
}
.services-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 30px;
}
.services-gallery img {
  width: 100%;
  border-radius: 6px;
  height: 130px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.services-gallery img:hover {
  transform: scale(1.05);
}

/* WHY CHOOSE AGN */
section.why-agn {
  background: #fafafa;
  padding: 100px 8%;
}
.why-agn h2 {
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 46px;
  color: #111;
  margin-bottom: 60px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.why-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 30px 24px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.why-card h4 {
  color: #c99700;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.why-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}
.why-summary {
  text-align: center;
  max-width: 800px;
  margin: 60px auto 0;
  font-size: 15px;
  color: #333;
  line-height: 1.8;
}
.why-summary strong {
  color: #c99700;
}

/* OUR TEAM & ORGANIZATION */
.team-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  padding: 100px 8%;
  background: #111;
  color: #fff;
}
.team-left h2 {
  font-family: "Oswald", sans-serif;
  font-size: 48px;
  margin-bottom: 40px;
}
.team-block {
  margin-bottom: 30px;
}
.team-block .label {
  display: inline-block;
  background: #b3812c;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 12px;
  border-radius: 2px;
}
.team-block p {
  font-size: 15px;
  color: #ddd;
  line-height: 1.7;
}

.app-promo {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #e7e7e7;
  color: #111;
  padding: 18px 22px;
  border-radius: 6px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.app-promo img {
  width: 500px;
  height: auto;
  border-radius: 6px;
}
.app-promo h3 {
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  margin-bottom: 4px;
}
.app-promo p {
  font-size: 14px;
  color: #444;
  line-height: 1.4;
}

.team-right h3 {
  font-family: "Oswald", sans-serif;
  font-size: 36px;
  color: #f4c842;
  margin-bottom: 40px;
}
.org-chart {
  text-align: center;
}
.org-top,
.org-mid {
  display: flex;
  justify-content: center;
}
.org-mid {
  margin-top: 24px;
}
.org-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin: 20px 0;
  width: 100%;
}

/* Specific style for 4-column grid */
.org-grid[data-columns="4"] {
  grid-template-columns: repeat(4, 1fr);
  max-width: calc(4 * (100% / 5 + 15px) - 15px);
  margin-left: auto;
  margin-right: auto;
}

.org-grid--duo {
  grid-template-columns: repeat(2, 1fr);
  max-width: 60%;
  margin: 20px auto;
}

@media (max-width: 1200px) {
  .org-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .org-grid,
  .org-grid[data-columns="4"] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .org-grid--duo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .team-section {
    padding: 70px 6%;
  }
  .team-left h2 {
    font-size: 36px;
  }
  .team-block p {
    font-size: 14px;
  }
  .team-right h3 {
    font-size: 28px;
  }
  .app-promo {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  .app-promo img {
    width: 64px;
  }
  .org-grid,
  .org-grid[data-columns="4"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .org-grid--duo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }
  .org-node {
    min-height: 180px;
  }
}

@media (max-width: 576px) {
  .team-section {
    padding: 60px 5%;
    gap: 32px;
    text-align: left;
  }
  .team-left,
  .team-right {
    text-align: left;
  }
  .app-promo {
    align-items: stretch;
    text-align: left;
    gap: 14px;
  }
  .org-chart {
    max-width: 100%;
  }
  .org-grid,
  .org-grid[data-columns="4"] {
    justify-items: center;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .org-node {
    padding: 18px 12px;
    min-height: 0;
  }
  .org-node img,
  .org-node .org-avatar {
    width: 70px;
    height: 70px;
  }
  .org-role {
    min-height: auto;
    font-size: 12px;
  }
  .org-name {
    font-size: 12px;
  }
  .org-grid[data-columns="4"],
  .org-grid.org-grid--duo {
    max-width: 100%;
  }
  .org-btn {
    width: 100%;
    max-width: 260px;
  }
}

@media (max-width: 480px) {
  .team-section {
    padding: 50px 5%;
  }
  .team-left h2 {
    font-size: 30px;
  }
  .team-right h3 {
    font-size: 24px;
  }
  .org-grid,
  .org-grid[data-columns="4"] {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .org-grid.org-grid--duo {
    grid-template-columns: 1fr;
  }
  .org-node {
    width: 100%;
  }
}
.org-grid.org-grid--duo {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.org-node {
  background: #1a1a1a;
  border-radius: 8px;
  padding: 15px 10px;
  text-align: center;
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 200px;
  justify-content: center;
}

.org-node:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.org-node img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
  border: 3px solid #a64b1a;
}
.org-node .org-avatar {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #a64b1a, #d17a3d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 28px;
  font-weight: bold;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.org-role {
  font-weight: 600;
  margin: 5px 0;
  color: #d17a3d;
  font-size: 13px;
  line-height: 1.3;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.org-name {
  font-size: 13px;
  color: #e0e0e0;
  margin-top: 4px;
  font-weight: 500;
  line-height: 1.3;
}
.org-bottom {
  margin-top: 32px;
}
.org-btn {
  background: linear-gradient(135deg, #a64b1a, #d17a3d);
  color: white;
  border: none;
  padding: 12px 40px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  margin: 30px auto 10px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  display: block;
  box-shadow: 0 4px 12px rgba(166, 75, 26, 0.3);
}

.org-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(166, 75, 26, 0.4);
}

@media (max-width: 992px) {
  .team-section {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
    padding: 80px 6%;
  }
  .team-left h2 {
    font-size: 42px;
  }
  .team-right h3 {
    font-size: 32px;
  }
  .team-left,
  .team-right {
    max-width: 620px;
    margin: 0 auto;
  }
  .org-chart {
    max-width: 560px;
    margin: 0 auto;
  }
  .app-promo {
    justify-content: center;
  }
}

/* VISIT & CLIENTS */
.visit-clients {
  background: #fafafa;
  padding: 100px 8%;
  color: #111;
}
.visit-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}
.visit-left h2 {
  font-family: "Oswald", sans-serif;
  font-size: 42px;
  color: #111;
  margin-bottom: 10px;
}
.visit-left h4 {
  font-size: 20px;
  color: #444;
  font-style: italic;
  margin-bottom: 20px;
}
.visit-left p {
  font-size: 15px;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.8;
}
.visit-left button {
  background: #111;
  color: #fff;
  border: none;
  padding: 12px 34px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}
.visit-left button:hover {
  background: #333;
  transform: translateY(-2px);
}
.mockup img {
  width: 100%;
  max-width: 340px;
  display: block;
  margin: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.clients-section {
  text-align: center;
  margin-bottom: 80px;
}
.clients-section h3 {
  font-family: "Oswald", sans-serif;
  font-size: 34px;
  color: #111;
  margin-bottom: 40px;
}
.clients-section img {
  max-width: 320px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.client-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  align-items: center;
  justify-items: center;
}
.client-logos img {
  width: 120px;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: 0.3s;
}
.client-logos img:hover {
  filter: none;
  transform: scale(1.05);
}

.office-info {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  background: #111;
  color: #fff;
  padding: 80px 8%;
  border-radius: 8px;
}
.office-left {
  text-align: center;
}
.office-left img {
  max-width: 100%;
  height: auto;
  margin-bottom: 14px;
}
.office-left .office-logo {
  width: 120px;
  margin: 0 auto 14px;
}
.office-left .office-banner {
  width: 100%;
  max-width: 500px;
  margin: 20px auto 0;
  display: block;
}
.office-left h4 {
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  color: #f4c842;
}
.office-left p {
  font-size: 15px;
  color: #eee;
  margin-top: 6px;
}
.office-right h5 {
  font-size: 15px;
  color: #f4c842;
  margin-bottom: 8px;
}
.office-right p {
  font-size: 14px;
  color: #ddd;
  line-height: 1.8;
}
.office-right a {
  color: #f4c842;
  text-decoration: none;
}
.office-right a:hover {
  text-decoration: underline;
}
.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}
.social-icons img {
  width: 28px;
  height: 28px;
  /* filter: invert(100%); */
  transition: 0.3s;
}
.social-icons img:hover {
  /* filter: invert(72%) sepia(88%) saturate(642%) hue-rotate(16deg); */
}

@media (max-width: 992px) {
  .visit-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .office-info {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .visit-clients {
    padding: 60px 6%;
  }
  .visit-container {
    gap: 30px;
  }
  .visit-left h2 {
    font-size: 32px;
  }
  .visit-left p {
    font-size: 14px;
  }
  .mockup img {
    max-width: 260px;
  }
  .office-info {
    padding: 60px 6%;
  }
  .clients-section img {
    max-width: 220px;
  }
  .office-left .office-banner {
    max-width: 360px;
  }
}

/* FOOTER */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 25px 20px;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  header {
    height: 80vh;
  }
  .hero-text h1 {
    font-size: 42px;
  }
  section.about {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-right img {
    margin: 40px auto 0;
  }
  section.detail {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .detail-left img {
    margin-bottom: 40px;
  }
  section.services {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
