/* Reset default */
.html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #fff;
  background: white
}

.img {
  width: 100%;
  height: auto;
  display: block;
}
 

/* Navbar */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: #fff;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
}

header .logo img {
  height: 50px;
  width: 180px; 
}

header nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.navbar {
  list-style: none;
  display: flex;
  gap: 30px;
  z-index: 1000;
}

.navbar li a {
  text-decoration: none;
  color: black;
  padding: 10px 20px;
  border-radius: 8px;
  transition: 0.3s;
}

/* Hover effect */
.navbar li a:hover {
  background: rgba(0, 30, 255, 0.1); /* ungu muda transparan */
}

/* Aktif (menu yang dipilih) */
.navbar li a.active {
  background: #073e88;
  color: white;
}

header nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

header nav ul li a.active,
header nav ul li a:hover {
  color: #5f9ae8; /* warna biru ungu seperti di desain */
}

/* === HAMBURGER === */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #073e88;
  z-index: 110;
}

/* RESPONSIVE (tampilan HP / tablet) */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  /* Navbar default disembunyikan */
  .navbar {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    width: 200px;
    transition: all 0.3s ease;
  }

  /* Navbar muncul saat aktif */
  .navbar.active {
    display: block;
  }

  .navbar ul {
    flex-direction: column;
    text-align: center;
    padding: 10px 0;
  }

  .navbar ul li {
    margin: 8px 0;
  }

  .navbar ul li a {
    color: #073e88;
  }
}

/* TENTANG PERUSAHAAN IMAGE ONLY */
.hero {
  position: relative;
  height: 250px;
  background: url("tentang-hero.png") center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  color: black;
  padding-top: 90px;
  background-attachment: scroll;
  overflow:hidden;
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: transparent;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-left: 50px;     /* Jarak dari sisi kiri */
  padding-bottom: 40px;   /* Jarak dari bawah agar tidak menempel */
  text-align: center;
}

.hero h1 {
  position: relative;
  z-index: 2;
  font-size: 40px;
  font-weight: 700;
  font-family: 'Times New Roman', Times, serif
}

/* ==== RESPONSIVE DESIGN ==== */

/* Laptop / Tablet */
@media (max-width: 1024px) {
  .hero {
    min-height: 50vh;
    background-position: center center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }
}

/* HP sedang (lebar < 768px) */
@media (max-width: 768px) {
  .hero {
    height: 45vh;
    background-size: cover;
    background-position: center;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
}

/* HP kecil (lebar < 480px) */
@media (max-width: 480px) {
  .hero {
    height: 40vh;
    background-size: cover;
    background-position: center;
    width: 100%;
  }

  .hero-content h1 {
    font-size: 1.6rem;
    padding: 0 10px;
  }
}

/* TENTANG PERUSAHAAN */
.about-section {
  background-color: #fff;
  color: #000;
  padding: 80px 100px;
  font-family: 'Times New Roman', Times, serif
}

/* Container untuk isi */
.about-content {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin: auto;
}

/* Titik-titik di pojok atas */
.dots {
  display: flex;
  gap: 10px;
}

.dots span {
  width: 12px;
  height: 12px;
  background-color: #073e88;
  border-radius: 50%;
}

/* Bagian teks kiri */
.about-content .text {
  flex: 1.2;
  margin-top: 50px;
}

.about-content .text h2 {
  font-size: 50px;
  font-weight: 800;
  color: #000;
  margin-bottom: 25px;
  line-height: 1.1;
}

.about-content .text p {
  color: #333;
  font-size: 17px;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 15px;
}

/* Gambar kanan */
.about-content .image {
  flex: 1;
  display: flex;
  justify-content: center;
  margin-right: -50px;
}

.about-content .image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  object-fit: cover;
}

/* Responsif */
/* Laptop & Tablet (ukuran sedang) */
@media (max-width: 992px) {
  .about-section {
    padding: 60px 8%;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .about-content .text h2 {
    font-size: 2.3rem;
  }

  .about-content .text p {
    font-size: 1rem;
    text-align: justify;
  }

  .about-content .image img {
    max-width: 400px;
  }
}

/* HP (ukuran kecil) */
@media (max-width: 600px) {
  .about-section {
    padding: 50px 6%;
  }

  .about-content {
    flex-direction: column;
    gap: 30px;
  }

  .about-content .text h2 {
    font-size: 1.9rem;
    text-align: center;
  }

  .about-content .text p {
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: justify;
  }

  .about-content .image img {
    max-width: 300px;
  }
}

/* HP sangat kecil (seperti iPhone SE) */
@media (max-width: 400px) {
  .about-content .text h2 {
    font-size: 1.6rem;
    text-align: center;
  }

  .about-content .text p {
    font-size: 0.9rem;
  }

  .about-content .image img {
    max-width: 230px;
  }
}

/* VISI DAN MISI */
.visi-misi {
  background-color: #fff;
  padding: 60px 100px;
  font-family: 'Times New Roman', Times, serif
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.visi-misi-left {
  flex: 0.5;
  font-family: 'Times New Roman', Times, serif;
}

.visi-misi-left h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.2;
  color: black;
}

.visi-misi-image {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.visi-misi-right {
  flex: 1.3;
  position: relative;
}

.dot {
  color: #073e88;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 5px;
  text-align: left;
  margin-bottom: 40px;
  margin-top: 50px;
}

.title-box {
  background-color: #073e88;
  color: #fff;
  display: inline-block;
  padding: 8px 25px;
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 10px;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
  font-family: 'Times New Roman', Times, serif;
  margin-top: 5px;
}

.visi, .misi {
  margin-bottom: 30px;
}

.visi ul, .misi ul {
  list-style-type: disc;
  margin-left: 20px;
  line-height: 1.6;
  font-size: 15px;
}

.visi ul li, .misi ul li {
  margin-bottom: 10px;
  color: black;
  font-family: 'Times New Roman', Times, serif;
  font-size: 17px;
}

/* Responsif untuk tampilan HP */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .visi-misi-left h2 {
    font-size: 32px;
  }

  .visi-misi-image {
    max-width: 80%;
    margin: 0 auto;
  }

  .dots {
    text-align: center;
  }

  .visi {
    text-align: justify;
  }

  .misi {
    text-align: justify;
  }
}

/* HP sangat kecil (seperti iPhone SE) */
@media (max-width: 400px) {
  .container {
    flex-direction: column;
    text-align: justify;
    justify-content: justify;
  }

  .visi-misi-left h2 {
    font-size: 32px;
    text-align: justify;
  }

  .visi-misi-image {
    max-width: 80%;
    margin: 0 auto;
  }

  .title-box ul {
    text-align: justify;
  }

  .dots {
    text-align: justify;
  }

  .visi {
    text-align: justify;
  }

  .misi {
    text-align: justify;
  }
}

/* NILAI INTI */
.nilai-inti {
  padding: 80px 100px;
  text-align: center;
}

/* TITIK-TITIK */
.dots-top, .dots-bottom {
  margin-bottom: 20px;
}

.dots-bottom {
  margin-top: 40px;
}

.dots-top span, .dots-bottom span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #073e88;
  border-radius: 50%;
  margin: 0 5px;
}

/* JUDUL */
.nilai-inti h1 {
  font-size: 40px;
  font-weight: 800;
  color: #000;
  margin-bottom: 15px;
  font-family: 'Times New Roman', Times, serif;
}

/* DESKRIPSI */
.nilai-inti .deskripsi {
  max-width: 900px;
  margin: 0 auto 50px auto;
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  font-family: 'Times New Roman', Times, serif;
  text-align: justify;
}

/* CONTAINER */
.nilai-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  width: 100%;
}

/* ITEM */
.nilai-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
  max-width: 900px;
}

/* ICON */
.icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: white;
  border-radius: 5px;
  border: 2px solid #073e88;
}

.icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* KONTEN */
.content {
  background-color: #073e88;
  color: white;
  padding: 18px 25px;
  border-radius: 4px;
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 90px; /* tinggi minimum agar semua sejajar */
}

.content h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  font-family: 'Times New Roman', Times, serif;
}

.content p {
  font-size: 15px;
  line-height: 1.5;
  font-family: 'Times New Roman', Times, serif;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nilai-inti {
    padding: 60px 30px;
  }

  .nilai-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .icon {
    width: 70px;
    height: 70px;
  }

  .icon img {
    width: 45px;
    height: 45px;
  }

  .content {
    width: 100%;
    min-height: auto;
  }
}

/* FOOTER SECTION */
.footer {
  position: relative;
  background: url('building.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
  padding-top: 15px;
  z-index: 1;
}

.footer-overlay {
  background: transparent;
  padding: 50px 20px;
}

.footer-logo {
  position: absolute;
  top: 30px;
  left: 40px;
}

.footer-logo img {
  width: 200px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 40px;
  margin-top: 150px;
  margin-bottom: -100px;
}

/* MAP SECTION */
.footer-map {
  flex: 1 1 500px;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

/* CONTACT CARD */
.footer-contact {
  flex: 1 1 400px;
  background-color: #ffffff;
  color: #002766;
  border-radius: 20px;
  padding: 30px 35px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.footer-title {
  background-color: #002b6b;
  color: #fff;
  padding: 12px 20px;
  border-radius: 25px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}

.contact-info p {
  font-size: 15px;
  margin: 5px 0;
}

.office {
  margin-top: 15px;
}

.office h4 {
  font-size: 16px;
  font-weight: 600;
  color: #002b6b;
}

.office p {
  font-size: 14px;
  color: black;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-map, .footer-contact {
    width: 100%;
  }
}

/* Responsive */
@media (max-width: 800px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    margin-top: 50px;
  }
  .about-images {
    margin-bottom: 30px;
  }
}

