/* ===== GLOBAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER ===== */
.header {
  background: #f3f5f6;      
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 9999;          
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 52px;            
  width: auto;
  display: block;
}

/* MENU */
.menu {
  list-style: none;
  display: flex;
  gap: 32px;                 
  margin: 0;
  padding: 0;
  align-items: center;
}

.menu li a {
  text-decoration: none;
  color: #2d2d2d;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease,
  transform 0.25s ease;
  display: inline-block; /* WAJIB agar transform bekerja */
}

.menu li a:hover {
  color: #ff0000;
  transform: scale(1.12) translateY(-2px);
}

.menu li a.active {
  color: #4f74c8;       
  font-weight: 600;
}

/* ===== HERO TENTANG KAMI ===== */
.about-hero {
  position: relative;
  width: 100%;
  height: 475px;
  background: url('../img/about/about1.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 40, 70, 0.65); /* overlay biru gelap */
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.about-hero-content h1 {
  color: #fff;
  font-size: 56px;
  font-weight: 800;
  margin: 0;
}

/* ===== VISI & MISI ===== */
.about-content {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.about-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/about/pt10.jpg") no-repeat center center;
  background-size: cover;
  filter: blur(10px);   /* tingkat blur */
  transform: scale(1.1);
  z-index: -1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT */
.about-left .about-subtitle {
  color: #ff0000;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
  font-size: 25px;
}

.about-left h2 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  color: #1f2a44;
  margin-bottom: 20px;
  text-align: justify;
}

.about-left p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
  text-align: justify;
  line-height: 2;          /* ⬅️ JARAK ANTAR KALIMAT */
  letter-spacing: 0.02em;  /* ⬅️ SPASI ANTAR HURUF */
}

/* RIGHT */
.about-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 120px;
}

.about-box {
  display: flex;
  gap: 20px;
}

.about-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #4f74c8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.about-text h3 {
  font-size: 22px;
  font-weight: 800;
  color: #1f2a44;
  margin-bottom: 10px;
}

.about-text p,
.about-text li {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  text-align: justify;
}

.about-text ul {
  padding-left: 18px;
}

.services-cta {
  margin-top: -30px;
}

.services-box {
  display: inline-block;
  background: #4f74c8;
  color: #fff;
  font-weight: 600;
  padding: 15px 50px;
  text-decoration: none;
  border-radius: 2px;
  transition: 0.3s ease;
  margin-left: 140px;
}

.services-box:hover {
  background: #c13f3f;
  color: #fff;
}

/* ===== GROUP SLIDER ===== */
.group-section {
  padding: 80px 0;
  background: #fff;
  text-align: center;
  overflow: hidden;
}

.group-section h2 {
  font-size: 36px;
  font-weight: 800;
  color: #4f74c8;
  margin-bottom: 10px;
}

.group-subtitle {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #ff0000;
  margin-bottom: 50px;
}

.group-slider {
  width: 100%;
  overflow: hidden;
}

.group-track {
  display: flex;
  width: max-content;
  animation: scrollLogos 25s linear infinite;
}

.logo-item {
  flex: 0 0 auto;
  padding: 0 40px;
}

.logo-item img {
  max-width: 180px;
  height: auto;
}

/* Animasi geser */
@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===== FOOTER ===== */
.footer-section {
  background: #1f2a44;
  color: #ffffff;
  padding: 80px 0 0;
  font-family: Arial, sans-serif;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* 🔥 3 kolom */
  gap: 60px;
  align-items: flex-start;
}

/* LEFT */
.footer-left h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-left p {
  font-size: 15px;
  line-height: 1.8;
  color: #ffffff;
  max-width: 500px;
}

.footer-left h3:hover,
.footer-left p:hover {
  color: #ff0000;
}

/* CENTER */
.footer-center {
  text-align: center;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu a {
  text-decoration: none;
  color: #ffffff;
  font-size: 15px;
}

.footer-menu a:hover {
  color: #ffffff;
}

.footer-menu li a:hover {
  color: #ff0000;
}

/* RIGHT */
.footer-right {
  text-align: right;
}

.footer-right h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}

.footer-right ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.footer-right ul li {
  font-size: 15px;
  margin-bottom: 5px;
}

.footer-right h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-right p {
  font-size: 14px;
  line-height: 1.7;
  color: #ffffff;
  text-align: right;
  margin-left: auto;
}

.footer-right h3:hover,
.footer-right ul li:hover,
.footer-right h4:hover,
.footer-right p:hover {
  color: #ff0000;
}

/* PAKSA ALAMAT FOOTER DI TENGAH 
.footer-right p,
.footer-right .footer-address,
.footer-address {
  text-align: center !important;
  margin: 0 auto;
  max-width: 700px;
} */


/* BOTTOM */
.footer-bottom {
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 14px;
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-left p,
  .footer-right p {
    margin: 0 auto;
  }
}

/* ================================================= */
/* ========== FULL MOBILE ABOUT (HOME STYLE) ======= */
/* ================================================= */

/* ===== DEFAULT (DESKTOP RESET) ===== */
#menu-toggle {
  display: none;
}

.hamburger {
  display: none;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  /* ================= HEADER ================= */
  .header {
    padding: 14px 0;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  .logo img {
    height: 42px;
  }

  /* ===== HAMBURGER ===== */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .hamburger span {
    width: 26px;
    height: 3px;
    background: #1f2a44;
    border-radius: 2px;
    transition: 0.3s ease;
  }

  /* ===== NAV MOBILE ===== */
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
    z-index: 999;
  }

  .menu {
    flex-direction: column;
    padding: 10px 0;
    gap: 0;
  }

  .menu li {
    border-bottom: 1px solid #eee;
  }

  .menu li:last-child {
    border-bottom: none;
  }

  .menu li a {
    display: block;
    padding: 16px 24px;
    font-size: 15px;
    color: #1f2a44;
  }

  .menu li a:hover {
    background: #f4f6f8;
  }

  /* OPEN MENU */
  #menu-toggle:checked ~ .nav {
    max-height: 420px;
  }

  /* HAMBURGER ANIMATION */
  #menu-toggle:checked + .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  #menu-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
  }

  #menu-toggle:checked + .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* ================= HERO ABOUT ================= */
  .about-hero {
    height: 300px;
  }

  .about-hero-content h1 {
    font-size: 34px;
    line-height: 1.2;
    text-align: center;
  }

  /* ================= CONTENT ================= */
  .about-content {
    padding: 50px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-left .about-subtitle {
    font-size: 18px;
    text-align: left;
  }

  .about-left h2 {
    font-size: 28px;
    line-height: 1.2;
    text-align: left;
  }

  .about-left p {
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.02em;
    text-align: justify;
  }

  .about-right {
    margin-top: 0;
    gap: 26px;
  }

  .about-box {
    align-items: flex-start;
  }

  .about-icon {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  .about-text h3 {
    font-size: 20px;
  }

  .about-text p,
  .about-text li {
    font-size: 14px;
    line-height: 1.8;
    text-align: justify;
  }

  /* ================= CTA ================= */
  .services-cta {
    margin-top: 24px;
    text-align: center;
  }

  .services-box {
    margin-left: 0;
    padding: 14px 40px;
    font-size: 14px;
  }

  /* ================= GROUP SLIDER ================= */
  .group-section {
    padding: 50px 0;
    text-align: center;
  }

  .group-section h2 {
    font-size: 28px;
  }

  .group-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .logo-item img {
    max-width: 140px;
  }

  /* ================= FOOTER ================= */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    text-align: center;
  }

  .footer-left p,
  .footer-right p {
    margin: 0 auto;
  }

  .footer-right p {
    text-align: center;   /* ⬅️ INI KUNCI */
    margin: 0 auto;
    max-width: 360px;     /* ⬅️ bikin terlihat benar-benar center */
  }
}
