/* --- ROOT VARIABLES --- */
:root {
  --primary: #b99272; /* Warna Emas */
  --bg-dark: #000000; /* Hitam Pekat */
  --bg-section: #0c0b09; /* Hitam agak terang (Dark Grey) */
  --text-light: #ffffff;
  --text-gray: #aaaaaa;

  /* FONT CONFIGURATION SESUAI DESAIN */
  --font-head: "Oswald", sans-serif; /* Font Judul Tegas & Tinggi */
  --font-body: "Open Sans", sans-serif; /* Font Bacaan Bersih */
  --font-accent: "Playfair Display", serif; /* Font Aksen Elegan (Italic) */
}

/* --- RESET & GLOBAL --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 15px;
}
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
ul {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  text-transform: uppercase; /* Membuat judul kapital semua seperti di gambar */
  font-weight: 700;
  letter-spacing: 1px; /* Memberi jarak antar huruf agar elegan */
}

/* Utility Classes */
.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}
.text-primary {
  color: var(--primary);
}
.text-light {
  color: var(--text-light);
}
.btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 5px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
  letter-spacing: 1px;
}
.btn:hover {
  transform: translateY(-3px);
}
.btn-fill {
  background: var(--primary);
  color: #ffffff;
}
.btn-fill:hover {
  background: white;
  color: var(--primary);
}
.btn-outline {
  background: #0e1317;
}
.btn-outline:hover {
  background: white;
  color: var(--primary);
}

.section-title {
  font-family: var(--font-head);
  font-size: 16px;
  text-transform: capitalize;
  margin-bottom: 5px;
  display: block;
  font-weight: 50;
  letter-spacing: 0;
}
.section-head {
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.2;
  font-style: var(--font-head);
  text-transform: capitalize;
  font-weight: 400;
}

/* --- NAVBAR STYLING --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 15px 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}

.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.logo {
  font-family: var(--font-head);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  text-transform: capitalize;
  color: #fff;
  z-index: 1001;
  margin-right: auto;
}

.logo-sub {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
  list-style: none;
}

.nav-menu a {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-body);
  color: #fff;
  transition: 0.3s;
  display: block;
}

.nav-menu a:hover {
  color: var(--primary);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #111;
  min-width: 200px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  border-top: 2px solid var(--primary);
  padding: 10px 0;
  border-radius: 0 0 5px 5px;
}

.dropdown-menu li {
  margin: 0;
  display: block;
}
.dropdown-menu li a {
  padding: 10px 20px;
  text-transform: capitalize;
  font-size: 14px;
  border-bottom: 1px solid #222;
}
.dropdown-menu li a:hover {
  background: #222;
  padding-left: 25px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-toggle i {
  margin-left: 5px;
  font-size: 10px;
}

.login-btn {
  padding: 8px 25px;
  border-radius: 5px;
  background: var(--primary);
  color: #fff !important;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  border: 2px solid var(--primary);
}
.login-btn:hover {
  background: transparent;
  color: var(--primary) !important;
}

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1002;
}

.hamburger i {
  font-size: 24px;
  color: #fff;
}

@media (max-width: 992px) {
  header {
    z-index: 1001;
    background: #000;
  }

  .hamburger {
    display: block;
    cursor: pointer;
    z-index: 1002;
  }

  .nav-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    min-height: 100dvh;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: top 0.5s ease-in-out;
    z-index: 999;
    padding: 90px 15px 0 15px;
    overflow-y: auto;
  }

  .nav-menu.active {
    display: flex;
    top: 0;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s, transform 0.5s;
  }

  .nav-menu.active li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-menu.active li:nth-child(2) {
    transition-delay: 0.2s;
  }
  .nav-menu.active li:nth-child(3) {
    transition-delay: 0.3s;
  }
  .nav-menu.active li:nth-child(4) {
    transition-delay: 0.4s;
  }
  .nav-menu.active li:nth-child(5) {
    transition-delay: 0.5s;
  }

  .nav-menu.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-menu a {
    font-size: 15px;
    font-weight: 300;
    display: block;
    color: #fff;
  }

  .login-btn {
    display: inline-block;
    padding: 12px 40px;
    font-size: 15px;
  }

  .dropdown-menu {
    position: static;
    background: transparent;
    box-shadow: none;
    border: none;
    display: none;
  }

  .dropdown:hover .dropdown-menu,
  .dropdown.active .dropdown-menu {
    display: block;
    animation: fadeIn 0.5s;
  }

  .dropdown-menu li {
    margin: 5px 0;
  }
  .dropdown-menu li a {
    font-size: 16px;
    color: white;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

#hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
    url("../picture/hero.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-content {
  max-width: 1000px;
}

.hero-content h1 {
  font-size: 120px;
  line-height: 1;
  margin-bottom: 25px;
  font-weight: 500;
  text-transform: capitalize;
  color: #fff;
  margin-top: 10px;
}

.hero-content span {
  font-size: 18px;
  color: #ddd;
  margin-bottom: 10px;
  max-width: 600px;
  font-family: var(--font-body);
}
.hero-buttons {
  display: flex;
  gap: 20px;
}

@media (max-width: 992px) {
  .hero-content {
    text-align: center;
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 40px;
    line-height: 1.2;
    margin-top: 15px;
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    gap: 15px;
  }

  .hero-buttons .btn {
    width: 80%;
    text-align: center;
    align-self: center;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: clamp(28px, 8vw, 38px) !important;
    line-height: 1.2;
    margin-bottom: 20px;
    white-space: normal;
  }
  .hero-content span {
    font-size: 12px;
  }
  .hero-content {
    padding: 0 10px;
  }
}

/*ABOUT SECTION (DESKTOP FIRST) */
#about {
  width: 100%;
  min-height: 100vh;
  padding: 100px 0;
  background: var(--bg-section);
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-grid {
  width: 1200px;
  max-width: 95%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.about-text {
  padding: 60px;
}

.about-img {
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.director-profile {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding: 20px;
  background: var(--primary);
  border-radius: 10px;
  border: 2px solid var(--primary);
  transition: all 0.4s ease;
  cursor: pointer;
}

.director-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  transition: 0.4s;
}

.director-profile:hover {
  background: transparent;
  transform: translateY(-5px);
  box-shadow: 8px 8px 15px rgba(255, 255, 255, 0.5);
}

.director-profile:hover p {
  color: var(--primary) !important;
}

.director-profile:hover .director-img {
  transform: rotate(360deg);
  border: var(--primary);
}

@media (max-width: 992px) {
  #about {
    padding: 60px 0;
    height: auto;
    min-height: auto;
    display: block;
  }

  .about-grid {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    max-width: 100%;
    border: none;
  }

  .about-text {
    padding: 40px 20px;
    text-align: center;
  }

  .about-text p {
    text-align: center;
  }

  .about-img {
    width: 100%;
    height: 300px;
  }

  .director-profile {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    width: 100%;
  }

  .director-profile div {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .section-head {
    font-size: 28px;
  }
}

/* --- UNIT USAHA --- */
#unit-usaha {
  padding: 100px 0;
  background: var(--bg-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-container {
  width: 100%;
  max-width: 1100px;
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0 auto;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  will-change: transform;
}
.unit-slide {
  min-width: 100%;
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 60px;
}

.unit-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--primary);
  color: var(--primary);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: 0.3s;
}

.slider-btn:hover {
  background: var(--primary);
  color: #000;
}

.prev-btn {
  left: 10px;
}
.next-btn {
  right: 10px;
}

.unit-img img {
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
  height: 450px;
  filter: sepia(20%);
  box-shadow: 10px 10px 0px rgba(205, 164, 94, 0.2);
}

.unit-text h2 {
  font-size: 40px;
  text-transform: capitalize;
  font-weight: 400;
  margin-bottom: 15px;
  color: #fff;
}

.unit-desc {
  color: #ccc;
  max-width: 500px;
  line-height: 1.6;
}
.feature-list {
  margin: 30px 0;
}
.feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}
.feature-icon {
  font-size: 30px;
  color: var(--primary);
  margin-top: 5px;
}
.feature-item h4 {
  margin-bottom: 5px;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.feature-item p {
  font-size: 14px;
  color: #888;
  margin: 0;
}

@media (max-width: 992px) {
  .unit-slide {
    padding: 0 20px;
  }

  .unit-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .unit-img img {
    height: 250px;
  }
  .unit-text h2 {
    font-size: 28px;
  }

  .slider-btn {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
  .prev-btn {
    left: 0;
  }
  .next-btn {
    right: 0;
  }
}

@media (max-width: 992px) {
  #unit-usaha {
    padding: 60px 0;
  }

  .unit-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .unit-img img {
    height: 250px;
    width: 100%;
    margin-bottom: 10px;
  }

  .unit-text h2 {
    font-size: 28px;
  }

  .unit-desc {
    margin: 0 auto;
    font-size: 14px;
  }

  .feature-list {
    text-align: left;
    display: inline-block;
    max-width: 100%;
  }

  .slider-btn {
    top: auto;
    bottom: 0;
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
}

/* --- BLOG SECTION --- */
#blog {
  padding: 100px 0;
  background: var(--bg-section);
  text-align: center;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.blog-card {
  position: relative;
  height: 350px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #222;
}
.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.blog-card:hover img {
  transform: scale(1.1);
}
.blog-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, #000, rgba(0, 0, 0, 0.6), transparent);
  padding: 30px 20px;
  text-align: left;
}
.blog-date {
  font-size: 16px;
  margin-top: 10px;
  color: rgb(160, 160, 160);
  font-weight: 500;
}
.blog-title {
  font-size: 20px;
  margin-top: 10px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  text-transform: capitalize;
}

/* --- TESTIMONIAL SLIDER SECTION --- */
#testimoni {
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.testi-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto 0;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}

.testi-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.testi-item {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 10px;
  box-sizing: border-box;
}

.testi-card {
  background: #0f0f0f;
  padding: 30px 20px;
  border: 1px solid #222;
  border-radius: 5px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: 0.3s;
}

.testi-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.testi-user img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.testi-text {
  font-size: 13px;
  font-style: italic;
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.6;
}
.testi-name {
  font-weight: 400;
  font-size: 17px;
  color: #fff;
  text-transform: capitalize;
}
.testi-role {
  font-size: 14px;
  color: var(--primary);
  text-transform: capitalize;
  letter-spacing: 1px;
}

@media (max-width: 992px) {
  .testi-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 600px) {
  .testi-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* --- CTA FOOTER --- */
.cta-footer {
  background: fixed url("../picture/bglogin.jpeg") no-repeat center center;
  background-size: cover;
  padding: 80px 0;
  position: relative;
}

.cta-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.cta-text h2 {
  text-align: left;
  font-weight: 300;
  font-size: 35px;
  color: #fff;
  font-family: var(--font-head);
}

.cta-text p {
  text-align: left;
  color: #ccc;
  font-size: 16px;
  margin: 0;
}

.cta-btn-wrapper {
  text-align: right;
}

@media (max-width: 768px) {
  .cta-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 25px;
  }

  .cta-text h2 {
    text-align: center;
    font-size: 28px;
  }

  .cta-text p {
    text-align: center;
  }

  .cta-btn-wrapper {
    text-align: center;
  }

  .cta-footer {
    padding: 60px 20px;
  }
}

footer {
  background: #080808;
  padding: 70px 0 30px;
  border-top: 1px solid #111;
  font-size: 14px;
  color: #777;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  margin-bottom: 50px;
}

.footer-col {
  align-items: center;
  justify-content: center;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 25px;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: capitalize;
}
.footer-col ul li {
  color: #999;
}
.social-icons a {
  margin-right: 15px;
  font-size: 18px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background: #111;
  display: inline-block;
  transition: 0.3s;
}
.social-icons a:hover {
  background: var(--primary);
  color: #000;
}
.copyright {
  text-align: center;
  border-top: 1px solid #111;
  padding-top: 30px;
  font-size: 13px;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 48px;
  }
  .about-grid,
  .unit-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .nav-menu {
    display: none;
  }
  .section-head {
    font-size: 32px;
  }
}

/* =========================================
   PAGE: TENTANG KAMI STYLING
   ========================================= */

/* 1. PAGE HERO (Header Gambar) */
.page-hero {
  height: 60vh; /* Tinggi lebih pendek dari Home */
  background: url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=1920&q=80")
    no-repeat center center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 0; /* Reset margin jika ada */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-text {
  position: relative;
  z-index: 2;
}
.hero-text h1 {
  font-size: 50px;
  color: #fff;
  margin-bottom: 10px;
}
.hero-text p {
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
}
.hero-text a {
  color: #fff;
}
.hero-text a:hover {
  color: var(--primary);
}

/* Section General Wrapper */
.page-section {
  padding: 80px 0;
  background: var(--bg-dark);
}
.text-gray {
  color: #aaa;
  line-height: 1.8;
  text-align: justify;
}

/* 2. VISI & MISI SECTION */
#visi-misi {
  padding: 80px 0;
  background: var(--bg-section);
  text-align: center;
}

.visi-box {
  max-width: 900px;
  margin: 0 auto 50px;
}
.visi-text {
  font-size: 24px;
  color: #fff;
  font-family: var(--font-head);
  line-height: 1.5;
  margin-top: 20px;
}

.misi-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.misi-head {
  text-align: center;
  color: var(--primary);
  font-family: var(--font-head);
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.misi-list {
  counter-reset: my-counter;
  list-style: none;
  padding: 0;
}

.misi-text {
  font-size: 24px;
  color: #ffffff;
  font-weight: 300;
  font-family: var(--font-head);
  line-height: 1.5;
  margin-top: 5px;
}

/* --- VIDEO PROFILE SECTION (IFRAME VERSION) --- */
#video-profile {
  padding-bottom: 100px;
  background: var(--bg-section); /* Background gelap agar bioskop look */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container agar video responsive dengan rasio 16:9 */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* Rasio 16:9 (9 dibagi 16 = 0.5625) */
  height: 0;
  width: 100%;
  max-width: 1200px; /* Batasi lebar maksimal agar tidak terlalu raksasa di monitor lebar */
  margin: 0 auto;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); /* Efek bayangan elegan */
  border: 1px solid #333;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* 4. TEAM SECTION */
#team {
  padding: 80px 0;
  background: #000;
  text-align: center;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.team-card {
  background: #111;
  padding: 20px;
  border: 1px solid #222;
  transition: 0.3s;
}
.team-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}

.team-img {
  width: 100%;
  aspect-ratio: 1/1; /* Membuat gambar kotak sempurna */
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 2px;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
  filter: grayscale(100%);
}
.team-card:hover .team-img img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.team-info h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 5px;
}
.team-info span {
  color: var(--primary);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* RESPONSIVE TENTANG KAMI */
@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  } /* Tablet: 2 kolom */
  .visi-text {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  } /* HP: 1 kolom */
  .page-hero {
    height: 50vh;
  }
  .hero-text h1 {
    font-size: 36px;
  }
}

/* =========================================
   SECTION: GALERI STYLING (FIXED DESKTOP)
   ========================================= */
#galeri {
  padding: 80px 0;
  background: var(--bg-section);
  text-align: center;
  overflow: hidden; /* Mencegah scroll horizontal browser */
}

.gallery-wrapper {
  margin-top: 40px;
  position: relative;
  padding-bottom: 40px;
  width: 100%;
  overflow: hidden; /* PENTING: Menyembunyikan slide yang ada di kanan/kiri */
}

.gallery-track {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}

.gallery-item {
  /* --- SETTING DESKTOP (Default: 4 Gambar) --- */
  flex: 0 0 25%; /* Lebar fix 25% */
  max-width: 25%;

  padding: 0 10px;
  position: relative;
  box-sizing: border-box; /* Agar padding tidak menambah lebar total */
}

.gallery-item img {
  width: 100%;
  height: 280px; /* Tinggi sedikit ditambah biar proporsional */
  object-fit: cover;
  border-radius: 5px;
  transition: 0.3s;
  filter: brightness(0.8);
  display: block; /* Menghilangkan celah putih di bawah gambar */
}

.gallery-item:hover img {
  filter: brightness(1);
  transform: scale(1.03);
}

/* Overlay Teks */
.gallery-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  text-align: left;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s;
  pointer-events: none; /* Agar klik tembus ke gambar */
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-overlay h4 {
  color: #fff;
  background: var(--primary);
  padding: 4px 12px;
  display: inline-block;
  font-size: 14px;
  margin-bottom: 5px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.gallery-overlay p {
  color: #fff;
  font-size: 13px;
  text-shadow: 1px 1px 3px #000;
  font-weight: 600;
}

/* Dots */
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.dot {
  width: 10px;
  height: 10px;
  background-color: #444;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}
.dot.active {
  background-color: var(--primary);
  transform: scale(1.3);
}

/* --- RESPONSIVE BREAKPOINTS --- */

/* Laptop Standar / Tablet Landscape (Max 1200px) -> Jadi 3 Gambar */
@media (max-width: 1200px) {
  .gallery-item {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}

/* Tablet Portrait / HP Besar (Max 768px) -> Jadi 2 Gambar (Opsional, agar tidak terlalu kecil) */
@media (max-width: 768px) {
  .gallery-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .gallery-item img {
    height: 220px;
  }
}

/* HP Standar (Max 480px) -> Jadi 1 Gambar */
@media (max-width: 480px) {
  .gallery-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* Di HP overlay selalu muncul */
  .gallery-overlay {
    opacity: 1;
    transform: none;
  }
}

/*BLOG STYLING*/
.blog-hero {
  background: url("../picture/bglogin.jpeg") no-repeat center center;
  background-size: cover;
}

/* 2. Section Blog List */
#blog-list {
  padding: 80px 0;
  background: var(--bg-dark); /* Background Halaman Hitam */
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

/* GRID LAYOUT */
.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 Kolom */
  gap: 30px;
}

/* BLOG CARD STYLING */
.blog-item {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  height: 400px; /* Tinggi Tetap agar rapi */
  cursor: pointer;
  transition: 0.3s;
}

.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.blog-img-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.blog-item:hover img {
  transform: scale(1.1);
}

/* Overlay Gradient (Agar teks terbaca) */
.blog-item-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95),
    rgba(0, 0, 0, 0.6),
    transparent
  );
  z-index: 2;
}

.blog-item-content h3 {
  font-size: 20px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 15px;
  font-weight: 500;
  text-transform: capitalize; /* Huruf besar awal kata */
}

.blog-meta {
  display: flex;
  gap: 15px;
  font-size: 12px;
  color: #ccc;
}

.blog-meta i {
  color: var(--primary);
  margin-right: 5px;
}

/* 3. PAGINATION STYLING */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
}

.page-link {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1a1a1a;
  color: #fff;
  border-radius: 2px;
  font-weight: 600;
  border: 1px solid #333;
  transition: 0.3s;
}

.page-link:hover,
.page-link.active {
  background: var(--primary); /* Warna Emas */
  color: #000;
  border-color: var(--primary);
}

/* RESPONSIVE BLOG */
@media (max-width: 992px) {
  .blog-page-grid {
    grid-template-columns: repeat(2, 1fr); /* Tablet: 2 Kolom */
  }
}

@media (max-width: 600px) {
  .blog-page-grid {
    grid-template-columns: 1fr; /* HP: 1 Kolom */
  }
  .blog-item {
    height: 350px; /* Tinggi card sedikit dikurangi di HP */
  }
}

/*PAGE: BLOG DETAIL STYLING*/

.detail-header {
  padding: 150px 0 60px;
  background: var(--bg-dark);
  text-align: center;
}

.detail-meta {
  color: white;
  font-size: 14px;
  margin-bottom: 20px;
  text-transform: capitalize;
  letter-spacing: 1px;
}
.detail-meta span {
  margin: 0 5px;
}
.detail-meta p :hover {
  color: var(--primary);
}

.detail-title {
  font-size: 48px;
  color: #fff;
  font-family: var(--font-head);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.2;
  text-transform: capitalize;
}

/* 2. FEATURED IMAGE */
.detail-image-section {
  background: var(--bg-dark);
  padding-bottom: 60px;
  text-align: center;
}

.main-img {
  width: 100%;
  height: auto;
  max-height: 600px; /* Batasi tinggi agar tidak terlalu scroll */
  object-fit: cover;
  border-radius: 0; /* Sesuai desain kotak tajam */
}

/* 3. CONTENT AREA (ARTICLE MODE) */
.detail-content {
  background: var(--bg-dark);
  padding-bottom: 100px;
}

/* Container khusus artikel (Lebar terbatas agar nyaman dibaca) */
.article-container {
  max-width: 800px; /* Standar lebar artikel modern */
  margin: 0 auto;
  padding: 0 20px;
}

/* Tipografi Artikel */
.article-container p {
  color: #ccc; /* Abu-abu terang */
  font-size: 16px;
  line-height: 1.8; /* Spasi baris lega */
  margin-bottom: 25px;
  text-align: justify; /* Opsional: Rata kiri kanan */
}

.article-container h3 {
  color: #fff;
  font-size: 24px;
  margin: 40px 0 20px;
  font-family: var(--font-head);
}

/* Blockquote (Kotak Kutipan) */
.quote-box {
  background: #101010; /* Lebih gelap/terang sedikit dari bg */
  padding: 40px;
  border-left: 4px solid #333; /* Aksen kiri tipis */
  margin: 40px 0;
  border-radius: 4px;
}

.quote-box p {
  font-family: var(--font-head); /* Font judul untuk kutipan */
  font-size: 20px;
  color: #fff;
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.5;
  text-align: left;
}

.quote-author {
  color: #888;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Gambar dalam artikel */
.article-img {
  margin: 40px 0;
}
.article-img img {
  width: 100%;
  border-radius: 4px;
}

/* List Styling */
.article-list {
  margin-bottom: 30px;
  padding-left: 20px;
}
.article-list li {
  color: #ccc;
  margin-bottom: 10px;
  list-style-type: disc; /* Bullet point */
  padding-left: 10px;
}

/* Share Icons */
.share-icons {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #222; /* Garis pemisah */
  display: flex;
  gap: 15px;
}

.share-icons a {
  width: 40px;
  height: 40px;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #888;
  transition: 0.3s;
  font-size: 14px;
}

.share-icons a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}

/* RESPONSIVE DETAIL */
@media (max-width: 768px) {
  .detail-header {
    padding-top: 120px;
  }
  .detail-title {
    font-size: 32px;
  }
  .main-img {
    height: 250px;
  }
  .quote-box {
    padding: 20px;
  }
  .quote-box p {
    font-size: 16px;
  }
}

/* =========================================
   PAGE: KONTAK STYLING
   ========================================= */

.contact-hero {
  /* Ganti URL gambar sesuai selera/folder gambar Anda */
  background: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1920&q=80")
    no-repeat center center;
  background-size: cover;
}

/* 2. Info Cards Section */
#contact-info {
  padding: 80px 0;
  background: #050505; /* Sangat gelap */
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 Kolom */
  gap: 30px;
}

.info-card {
  background: #0f0f0f;
  padding: 40px 20px;
  text-align: center;
  border: 1px solid #1a1a1a;
  transition: 0.3s;
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.info-icon {
  font-size: 30px;
  color: var(--primary);
  margin-bottom: 20px;
}

.info-card h4 {
  color: #fff;
  font-family: var(--font-head);
  margin-bottom: 15px;
  font-size: 18px;
}

.info-card p {
  color: #888;
  font-size: 14px;
  line-height: 1.6;
}

/* 3. Form Section Styling */
#contact-form-section {
  padding: 80px 0;
  background: var(--bg-section); /* Dark Grey */
}

.contact-form {
  max-width: 900px;
  margin: 0 auto;
}

/* Grid 3 Kolom untuk Input Baris Pertama */
.form-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.input-group {
  position: relative;
  margin-bottom: 20px;
  width: 100%;
}

/* Styling Input & Textarea */
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #333;
  padding: 15px 20px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

/* Icon di dalam input (sebelah kanan) */
.input-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #555;
  font-size: 14px;
  pointer-events: none; /* Agar klik tembus ke input */
}

.contact-form textarea {
  resize: vertical; /* Hanya bisa ditarik ke bawah */
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  background: #0a0a0a;
}

/* Placeholder Color */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #555;
}

.form-btn-wrapper {
  margin-top: 10px;
}

/* 4. Map Section*/
#contact-map {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 100px;
  background: var(--bg-section);
}

#contact-map iframe {
  border-radius: 8px;
  display: block;
}

/* --- RESPONSIVE KONTAK --- */
@media (max-width: 992px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr); /* Tablet: 2 kolom */
  }
}

@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: 1fr; /* HP: 1 kolom (tumpuk) */
  }

  .form-row-3 {
    grid-template-columns: 1fr; /* Input nama/email/hp jadi tumpuk */
    gap: 0; /* Margin bottom sudah dihandle .input-group */
  }

  .info-card {
    padding: 30px 15px;
  }
}

/* =========================================
   PAGE: LOGIN ELEGANT GLASSMORPHISM
   ========================================= */

.login-page {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
}

/* Background Image Full Screen */
.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../picture/bglogin.jpeg") no-repeat center center;
  background-size: cover;
  opacity: 0.6; /* Gelapkan gambar */
  z-index: 1;
  animation: zoomIn 20s infinite alternate; /* Efek zoom halus */
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.login-container {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
}

/* KARTU KACA (GLASS CARD) */
.login-card {
  background: rgba(0, 0, 0, 0.247); /* Hitam Transparan */
  backdrop-filter: blur(15px); /* Efek Blur di belakang kartu */
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1); /* Border tipis putih pudar */
  border-radius: 20px;
  padding: 50px 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  text-align: center;
  animation: fadeUp 0.8s ease-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header */
.logo-icon {
  height: 100px;
  width: auto;
}

.login-header h2 {
  font-family: "Oswald", sans-serif;
  color: #fff;
  font-size: 32px;
  margin-bottom: 5px;
  letter-spacing: 1px;
  font-weight: 500;
}

.login-header p {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 40px;
}

/* --- PERBAIKAN POSISI ICON LOGIN --- */

.input-group-elegant {
  position: relative;
  margin-bottom: 30px;
  text-align: left;
}

/* 1. INPUT FIELD */
.input-group-elegant input {
  width: 100%;
  padding: 12px 0;
  font-size: 16px;
  color: #fff;
  background: transparent;
  border: none;
  border-bottom: 1px solid #555;
  outline: none;
  transition: 0.3s;

  /* PENTING: Beri jarak kiri (untuk icon gembok) dan kanan (untuk mata) */
  padding-left: 35px;
  padding-right: 40px;
}

/* 2. LABEL (TEXT PLACEHOLDER) */
.input-group-elegant label {
  position: absolute;
  top: 10px;
  /* Geser label ke kanan agar sejajar dengan teks input */
  left: 35px;
  color: #888;
  font-size: 15px;
  pointer-events: none;
  transition: 0.3s;
}

/* 3. ICON STATIS (User & Lock) -> PINDAH KE KIRI */
/* Gunakan selektor '>' agar hanya icon langsung, bukan icon mata di dalam span */
.input-group-elegant > i {
  position: absolute;
  left: 0; /* Pindah ke Kiri */
  top: 10px;
  color: #555;
  transition: 0.3s;
  width: 20px;
  text-align: center;
}

/* 4. ICON MATA (TOGGLE) -> TETAP DI KANAN */
.toggle-pass {
  position: absolute;
  right: 0; /* Tetap di Kanan */
  top: 10px;
  cursor: pointer;
  z-index: 10;
  width: 30px;
  text-align: center;
}

/* Pastikan icon mata warnanya benar */
.toggle-pass i {
  color: #888;
  transition: 0.3s;
}
.toggle-pass:hover i {
  color: #fff;
}

/* --- EFEK ANIMASI FOKUS --- */

/* Saat input aktif, label naik ke atas & geser kembali ke kiri pojok */
.input-group-elegant input:focus ~ label,
.input-group-elegant input:valid ~ label {
  top: -20px;
  left: 0; /* Kembali ke pojok kiri atas */
  font-size: 12px;
  color: var(--primary);
}

.input-group-elegant input:focus {
  border-bottom-color: var(--primary);
}

/* Ubah warna icon gembok/user saat fokus */
.input-group-elegant input:focus ~ i {
  color: var(--primary);
}

/* Toggle Password Eye */
.toggle-pass {
  position: absolute;
  right: 0;
  top: 10px;
  cursor: pointer;
  z-index: 5;
}
.input-group-elegant .toggle-pass i {
  position: static;
  color: #888;
}
.input-group-elegant .toggle-pass:hover i {
  color: #fff;
}

/* Options (Checkbox & Forgot) */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #ccc;
  margin-bottom: 40px;
}

.form-options a {
  color: #ccc;
  transition: 0.3s;
}
.form-options a:hover {
  color: var(--primary);
}

/* Button Elegant */
.btn-login-elegant {
  width: 100%;
  padding: 15px;
  background: var(--primary);
  color: #000;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(205, 164, 94, 0.3);
}

.btn-login-elegant:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.btn-login-elegant i {
  margin-left: 10px;
}

/* Back Link */
.back-link {
  margin-top: 30px;
}
.back-link a {
  color: #666;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s;
}
.back-link a:hover {
  color: #fff;
}

/* Custom Checkbox (Optional) */
.checkbox-container input {
  margin-right: 5px;
  accent-color: var(--primary);
}

/* RESPONSIVE */
@media (max-width: 480px) {
  .login-card {
    padding: 40px 25px;
  }
  .login-header h2 {
    font-size: 28px;
  }
}
