/* ========= GLOBAL ========= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, #f9f9f9, #f1f5f9);
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========= NAVBAR ========= */
nav {
  background: rgba(15, 28, 46, 0.9);
  backdrop-filter: blur(12px);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 15px 6%; /* atur jarak kiri & kanan */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: background 0.4s ease-in-out;
}

nav:hover {
  background: rgba(15, 28, 46, 1);
}

/* ========= LOGO + BRAND TEXT ========= */
nav .brand {
  display: flex;
  align-items: center;
  font-size: 1.1rem; /* kecilkan sedikit */
  font-weight: 700;
  color: #ffb703;
  letter-spacing: 0.8px;
  text-shadow: 0 0 5px rgba(255, 183, 3, 0.6);
  transition: transform 0.3s ease;
  gap: 8px;
}

nav .brand:hover {
  transform: scale(1.05) rotate(-2deg);
}

nav .brand img.logo {
  height: 34px;
  width: auto;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.25));
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
  cursor: pointer;
}

nav .brand img.logo:hover {
  transform: scale(1.08) rotate(-3deg);
  filter: drop-shadow(0 4px 7px rgba(255, 183, 3, 0.6));
}

/* ========= HAMBURGER BUTTON ========= */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.hamburger {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  position: relative;
  transition: background 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

/* Active hamburger (X shape) */
.nav-toggle.active .hamburger {
  background: transparent;
}

.nav-toggle.active .hamburger::before {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active .hamburger::after {
  transform: translateY(-8px) rotate(-45deg);
}

/* ========= MENU ========= */
nav .nav-menu {
  display: flex;
  list-style: none;
  gap: 25px;
  margin-left: auto;
  padding: 0;
}

nav .nav-menu li {
  position: relative;
}

nav .nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 4px 0;
  transition: 0.4s;
}

nav .nav-menu li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #ffb703;
  left: 0;
  bottom: -4px;
  transition: 0.4s;
}

nav .nav-menu li a:hover {
  color: #ffb703;
}

nav .nav-menu li a:hover::after {
  width: 100%;
}

/* ========= RESPONSIVE NAVBAR ========= */
@media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
    padding: 15px 5%;
  }

  .nav-toggle {
    display: block;
  }

  nav .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    margin-top: 15px;
    background: rgba(15, 28, 46, 0.95);
    border-radius: 10px;
    overflow: hidden;
  }

  nav .nav-menu.open {
    display: flex;
  }

  nav .nav-menu li {
    width: 100%;
  }

  nav .nav-menu li a {
    display: block;
    padding: 14px 20px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  nav .nav-menu li a::after {
    display: none;
  }

  nav .nav-menu li:last-child a {
    border-bottom: none;
  }

  nav .brand img.logo {
    height: 30px;
  }

  .who-stats {
    grid-template-columns: 1fr;
  }
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .about-text {
    padding: 25px;
  }
  .management-wrapper {
    gap: 20px;
  }
  .management-card {
    width: 100%;
    max-width: 300px;
  }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  nav {
    padding: 12px 4%;
  }

  nav .nav-menu {
    gap: 18px;
  }

  nav .nav-menu li a {
    font-size: 0.85rem;
  }

  nav .brand {
    font-size: 1rem;
  }
}

/* === HERO ABOUT SECTION (FULL SCREEN) === */
.about-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%; /* ⬅ INI YANG DIUBAH */
  z-index: 1;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  animation: fadeInUp 1s ease;
}

.hero-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
}

.breadcrumb {
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffb703;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === WHO WE ARE SECTION === */
#who-we-are {
  padding: 100px 8%;
  background: linear-gradient(135deg, #0a2540, #102c54);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* === LEFT CONTENT === */
.who-left {
  flex: 1;
  max-width: 600px;
}

.who-subtitle {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #f9d423;
  margin-bottom: 15px;
  display: inline-block;
  text-transform: uppercase;
}

.who-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.3;
  color: #fff;
}

.who-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  text-align: justify;
}

/* === RIGHT STATS === */
.who-stats {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  justify-items: center;
}

.stat-box {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  position: relative;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.stat-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #f9d423, #fb8500);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.7;
}

.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.stat-box h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.stat-box h3 span:last-child {
  font-size: 0.85rem;
  color: #f9d423;
  margin-top: 5px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.stat-box p {
  font-size: 0.85rem;
  color: #ccc;
  margin-top: 8px;
  font-weight: 500;
}

/* === RESPONSIVE MOBILE === */
@media (max-width: 968px) {
  #who-we-are {
    padding: 70px 20px;
  }

  .about-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .who-left {
    max-width: 100%;
    padding-right: 0;
  }

  .who-desc {
    text-align: center;
  }

  .who-stats {
    width: 100%;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .who-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .stat-box {
    width: 135px;
    height: 135px;
  }

  .stat-box h3 {
    font-size: 1.5rem;
  }
}
/* ===== TAMBAHKAN DI SINI (PALING BAWAH) ===== */
@media (max-width: 768px) {
  .who-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .who-title {
    font-size: 1.4rem;
  }

  .who-desc {
    font-size: 0.95rem;
  }

  .stat-box {
    width: 120px;
    height: 120px;
  }
}


/* === ABOUT SECTION === */
.about {
  padding: 100px 8%;
  background: linear-gradient(135deg, #0a2540, #102c54);
  color: #fff;
  overflow: hidden;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* === ABOUT IMAGE === */
.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s ease;
  object-fit: cover;
}

.about-image:hover img {
  transform: scale(1.02);
}

/* === ABOUT TEXT === */
/* === ABOUT TEXT === */
.about-text {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* Tambahkan ini jika ingin memastikan semua konten di dalam card rata tengah */
  text-align: center;
}

.about-text h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 25px;
  font-weight: 800;
  color: #f9d423;
  line-height: 1.2;
  /* Memastikan judul selalu di tengah */
  text-align: center;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  /* UBAH DARI justify MENJADI center */
  text-align: center;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* === RESPONSIVE MOBILE === */
@media (max-width: 968px) {
  .about {
    padding: 70px 20px;
  }

  .about-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .about-image,
  .about-text {
    flex: none;
    width: 100%;
  }

  .about-image img {
    max-width: 100%;
    margin-bottom: 10px;
  }

  .about-text {
    padding: 30px 25px;
  }

  .about-text h2 {
    text-align: center;
  }
}

/* === BOARD OF MANAGEMENT === */
/* === MANAGEMENT SECTION === */
.management {
  padding: 80px 8%;
  background: linear-gradient(135deg, #0a2540, #102c54);
  text-align: center;
  color: #fff;
}

.management-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 50px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.management-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}

/* === MANAGEMENT CARD === */
.management-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 20px;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.management-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 215, 0, 0.3);
}

.management-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
}

.management-card:hover img {
  transform: scale(1.03);
}

.management-card p {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: 0.5px;
}

/* === RESPONSIVE MOBILE === */
@media (max-width: 768px) {
  .management {
    padding: 60px 20px;
  }

  .management-wrapper {
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .management-card img {
    height: 250px;
  }
}

/* ======================
   FOOTER SECTION
====================== */
/* ======================
   FOOTER SECTION
====================== */

.footer {
  background: linear-gradient(180deg, #0b1623, #08101a);
  color: #b0b0b0;
  padding: 60px 0 0;
  font-size: 0.95rem;
}

/* ===== CONTAINER ===== */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5% 70px;

  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ===== COLUMN ===== */
.footer-col {
  display: flex;
  flex-direction: column;
}

/* ===== BRAND ===== */
.footer-brand {
  color: #fff;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.company-desc {
  line-height: 1.7;
  margin-bottom: 30px;
  color: #d0d0d0;
}

/* ===== CONTACT ===== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  line-height: 1.7;
  color: #ddd;
}

.contact-item i {
  color: #ffb703;
  font-size: 1.1rem;
  min-width: 22px;
  margin-top: 4px;
}

.contact-item a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.contact-item a:hover {
  color: #ffb703;
}

/* ===== HEADING ===== */
.footer h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
}

.footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 2px;
  background: #ffb703;
}

/* ===== QUICK LINKS ===== */
.footer-middle ul {
  list-style: none;
  padding: 0;
}

.footer-middle li {
  margin-bottom: 14px;
}

.footer-middle a {
  color: #b0b0b0;
  text-decoration: none;
  transition: 0.3s;
}

.footer-middle a:hover {
  color: #ffb703;
  padding-left: 6px;
}

/* ===== SOCIAL ===== */
.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 35px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  transition: 0.3s ease;
}

.social-links a:hover {
  background: #ffb703;
  color: #0b1623;
  transform: translateY(-4px);
}

/* ===== LEGAL ===== */
.legal-links h3 {
  margin-bottom: 18px;
}

.legal-links p {
  margin-bottom: 10px;
}

.legal-links a {
  color: #888;
  text-decoration: none;
  font-size: 0.9rem;
}

.legal-links a:hover {
  color: #ffb703;
}

/* ===== BOTTOM ===== */
.footer-bottom {
  background: #050d15;
  text-align: center;
  padding: 25px 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: #777;
}

.footer-bottom strong {
  color: #fff;
}

/* ======================
   RESPONSIVE
====================== */

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .footer-left {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 50px 0 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 0 25px 50px;
    text-align: center;
  }

  .footer-brand {
    font-size: 1.6rem;
  }

  .company-desc {
    font-size: 0.95rem;
  }

  .footer h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-item i {
    margin-bottom: 6px;
  }

  .social-links {
    justify-content: center;
  }

  .footer-middle a:hover {
    padding-left: 0;
  }
}
