/* ===== Reset dasar ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
html, body {
  height: 100%;
  width: 100%;
  background-color: #F4FAF4;
  color: #333;
  display: flex;
  flex-direction: column;
  overflow-x: hidden; /* cegah scroll horizontal */
  scroll-behavior: smooth;
}
[id^="id-"] {
  scroll-margin-top: 80px;
}

/* Pastikan konten utama mengambil ruang tersisa */
main {
  flex: 1;
  width: 100%;
  margin: 0;
  padding: 0;
}
/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}

/* 
   👉 Bagian ini mengatur jarak kanan–kiri navbar
   ubah padding kalau ingin lebih rapat:
   contoh: padding: 0 40px; (lebar)
           padding: 0 10px; (rapat)
*/
.navbar-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px; /* ubah nilai ini untuk atur jarak kanan–kiri */
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== Logo ===== */
.logo-img {
  height: 45px;
  width: auto;
  display: block;
}

/* ===== Menu Desktop ===== */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-menu li a {
  position: relative;
  text-decoration: none;
  font-size: 1rem;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* efek hover lebih keren */
.nav-menu li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background-color: #FF2828;
  transition: transform 0.3s ease;
  transform-origin: center;
}

.nav-menu li a:hover {
  color: #FF2828;
}

.nav-menu li a:hover::after {
  transform: translateX(-50%) scaleX(1);
}


/* ===== Tombol Hamburger ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  height: 3px;
  width: 25px;
  background-color: #333;
  margin: 4px 0;
  transition: all 0.3s ease;
}

/* ===== Responsif (mobile) ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    align-items: center;
    display: none;
    border-top: 1px solid #eee;
  }
.navbar-container {
  
  padding: 0 20px; /* ubah nilai ini untuk atur jarak kanan–kiri */
}
  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    margin: 15px 0;
  }

  .bar.change:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  .bar.change:nth-child(2) {
    opacity: 0;
  }
  .bar.change:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}

/* ===== DROPDOWN MENU ===== */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown .dropbtn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  min-width: 200px;
  z-index: 999;
  border-radius: 6px;
  overflow: hidden;
}

.dropdown-content li {
  list-style: none;
}

.dropdown-content a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.dropdown-content li a:hover,
.dropdown-content a:hover {
  background-color: #ff2b2b !important;
  color: #fff !important;
}

/* Hover desktop */
.dropdown:hover .dropdown-content {
  display: block;
}

/* ===== Responsive Dropdown ===== */
@media (max-width: 768px) {
  .dropdown-content {
    position: static;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    background: #fff;
  }

  .dropdown-content a {
    padding: 10px 0;
    text-align: center;
    border-top: 1px solid #eee;
  }

  /* Jangan tampil saat hover di mobile */
  .dropdown:hover .dropdown-content {
    display: none;
  }

  /* Saat aktif di JS */
  .dropdown.active .dropdown-content {
    display: flex;
    flex-direction: column;
  }

  /* cegah geser teks "Service" */
  .dropdown .dropbtn {
    width: 100%;
  }
}
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* ===== FOOTER ATAS ===== */
.footer-top {
  background: #fff;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
  padding: 60px 80px;
  margin-top: 80px;
  transition: all 0.3s ease;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.footer-left {
  flex: 1 1 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo {
  width: auto;
  height: 100px;
 
}

.footer-right {
  flex: 2 1 600px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-column h4 {
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  color: #333;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* ===== FOOTER BAWAH ===== */
.footer-bottom {
  background-color: #FF2828;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  font-size: 0.95rem;
  width: 100%;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.footer-bottom a:hover {
  opacity: 0.8;
}
/* ===== CONTACT DI FOOTER ===== */
.footer-left-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-contact {
  margin-top: 20px;
}

.footer-contact h4 {
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.footer-contact p {
  margin: 6px 0;
  font-size: 0.95rem;
}

.footer-contact a {
  color: #ff2828;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: #b71c1c;
}

.footer-contact i {
  margin-right: 8px;
}

/* Responsif Contact */
@media (max-width: 768px) {
  .footer-left-inner {
    align-items: center;
    text-align: center;
  }

  .footer-contact {
    margin-top: 15px;
  }
}

/* ===== Responsif ===== */
@media (max-width: 992px) {
  .footer-top {
    padding: 50px 40px;
  }

  .footer-container {
    gap: 40px;
  }

  .footer-right {
    gap: 40px;
  }

  .footer-logo {
    height: 50px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 35px;
  }

  .footer-right {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer-column {
    flex: none;
    width: 100%;
  }

  .footer-logo {
    height: 80px;
  }
}

@media (max-width: 480px) {
  .footer-top {
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    padding: 40px 20px;
  }

  .footer-logo {
    height: 70px;
  }

  .footer-column h4 {
    font-size: 1rem;
  }

  .footer-column li {
    font-size: 0.9rem;
  }
}
/* ===== BANNER FULL DENGAN TEKS ===== */
.banner {
  width: 100vw;
  height: 95vh;
  position: relative;
  overflow: hidden;
  background-color: #000;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ubah ke cover agar gambar memenuhi area lebih baik */
  display: block;
  opacity: 0;
  animation: fadeInBanner 2s ease-out forwards;
}

/* TEKS DI ATAS BANNER */
.banner-text {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
  white-space: nowrap;
  opacity: 0;
  animation: fadeInText 2s ease-out forwards;
  animation-delay: 0.5s;
  padding: 0 20px;
}

.banner-text h1 {
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
}

.white-text {
  color: #fff;
}

.red-text {
  color: #ff2b2b;
  margin-left: 12px;
}

/* ===== ANIMASI ===== */
@keyframes fadeInBanner {
  0% { opacity: 0; transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1.05); }
}

@keyframes fadeInText {
  0% { opacity: 0; transform: translate(-50%, -40%); }
  100% { opacity: 1; transform: translate(-50%, -50%); }
}

/* ===== RESPONSIVE ===== */

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
  .banner {
    height: 80vh;
  }

  .banner-text h1 {
    font-size: clamp(24px, 4.5vw, 50px);
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  .banner {
    height: 65vh;
  }

  .banner-img {
    object-position: center top; /* fokus bagian atas gambar */
  }

  .banner-text {
    top: 40%;
    transform: translate(-50%, -50%);
    white-space: normal;
  }

  .banner-text h1 {
    font-size: clamp(20px, 6vw, 40px);
    line-height: 1.3;
  }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
  .banner {
    height: 55vh;
  }

  .banner-text {
    top: 40%;
    padding: 0 10px;
  }

  .banner-text h1 {
    font-size: 22px;
  }

  .red-text {
    margin-left: 6px;
  }
}


/* ===== BOX MENIMPA BANNER ===== */
.about-box {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: -120px; /* naik agar menimpa banner */
  z-index: 10; /* pastikan di atas banner */
  
}

.about-content {
  background-color: #ff2b2b; /* warna merah */
  color: #fff;
  max-width: 900px;
  padding: 70px 80px;
  border-radius: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  font-size: 24px;
  line-height: 1.7;
  text-align: justify;
  position: relative;
  overflow: hidden;
}
.about-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: white;
  transition: width 1s ease;
}

.about-content.show::after {
  width: 100%;
}
.about-content p {
  margin: 0;
}
.about-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
}


/* Responsif */
@media (max-width: 768px) {
  .about-box {
    margin-top: -80px;
  }

  .about-content {
    padding: 25px 30px;
    font-size: 16px;
  }
}

/* ===== OUR SERVICES SECTION ===== */
.services {
  background-color: #ffffff;
  padding: 150px 40px 40px; /* ⬆️ atas 150px, kanan-kiri 60px, ⬇️ bawah 80px */
  text-align: center;
  position: relative;
  margin-top: -100px;
  z-index: 5;
}


.services-container {
  max-width: 100%;
  margin: 0 auto;
}

.services-title {
  font-size: 36px;
  font-weight: 600;
  color: #000;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== SERVICE CARDS ===== */
.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: stretch; /* biar semua card sama tinggi */
}

.service-card {
  background: #ff2b2b;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  text-align: left;
  color: #fff;
  width: 100%;
  max-width: none;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.card-img {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.card-img img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  
}

/* Judul */
.card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
  text-align: center; /* sejajarkan semua judul */
}

/* Deskripsi */
.card-desc {
  font-size: 16px;
  color: #fff;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 30px;
  flex-grow: 1; /* isi teks fleksibel agar tombol di bawah */
}

/* Tombol sejajar di bawah */
.card-btn {
  display: inline-block;
  padding: 10px 28px;
  background: #fff; /* tombol putih */
  color: #000; /* teks hitam */
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start; /* tetap ke kiri */
  margin-top: auto; /* dorong ke bawah */
}

.card-btn:hover {
  background: #f0f0f0;
  transform: scale(1.05);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .services {
    padding: 80px 40px;
    margin-top: -80px;
  }

  .services-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .card-img img {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 70px 25px;
    margin-top: -60px;
  }

  .services-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .card-img img {
    width: 70px;
    height: 70px;
  }

  .card-title {
    text-align: center;
  }

  .card-btn {
    align-self: center; /* tombol ke tengah di mobile */
  }
}
/* ===== CREATIVE SERVICES SECTION ===== */
.creative {
  background-color: #F4FAF4;
  padding: 40px 40px;
  text-align: center;
}

.creative-container {
  max-width: 100%;
  margin: 0 auto;
}

.creative-title {
  font-size: 36px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.creative-desc {
  font-size: 18px;
  color: #555;
  max-width: 900px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* ===== CREATIVE CARDS ===== */
.creative-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px; /* dari 60px jadi 40px biar lebih rapat */
  justify-items: stretch; /* isi penuh */
}

.creative-card {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: none;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* isi card ke kiri */
  justify-content: flex-start;
  transition: all 0.5s ease;
  z-index: 1;
}

/* Lingkaran merah */
.creative-card .circle-bg {
  position: absolute;
  top: 20px; /* dekat logo */
  left: 30px;
  width: 70px;
  height: 70px;
  background: #ff2b2b;
  border-radius: 50%;
  z-index: 0;
  transition: all 0.6s ease;
}

/* Hover effect: lingkaran melebar */
.creative-card:hover .circle-bg {
  width: 1000px;       /* lebih besar */
  height: 1000px;
  top: -300px;
  left: -300px;
  border-radius: 0;
}


/* Hover ubah warna */
.creative-card:hover {
  color: #fff;
}

.creative-card:hover .card-title-creative,
.creative-card:hover .card-desc-creative {
  color: #fff;
}

.creative-card:hover .card-btn-creative {
  background: #fff;
  color: #ff2b2b;
}

/* Logo kiri */
.card-img-creative {
  position: relative;
  top: 10px;
  left: 20px;
  z-index: 1;
  margin-bottom: 20px;
}

.card-img-creative img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.creative-card:hover .card-img-creative img {
  transform: scale(1.05);
}

/* Judul kiri */
.card-title-creative {
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
  text-align: left;
}

/* Deskripsi kiri */
.card-desc-creative {
  position: relative;
  z-index: 1;
  font-size: 18px;
  color: #333;
  text-align: left;
  line-height: 1.6;
  margin: 0 10px 20px 0;
  flex-grow: 1; /* agar tombol tetap di bawah */
  transition: color 0.4s ease;
  
}

/* Tombol sejajar di bawah */
.card-btn-creative {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 10px 28px;
  background: #ff2b2b;
  color: #fff;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start; /* biar tombol di kiri */
  margin-top: auto; /* sejajarkan ke bawah */
}

.card-btn-creative:hover {
  transform: scale(1.05);
}
/* ===== Tombol "Soon" (nonaktif) ===== */
.soon-btn {
  background: #ccc !important;  /* warna abu-abu */
  color: #666 !important;       /* teks abu-abu gelap */
  cursor: not-allowed;          /* kursor tanda dilarang */
  pointer-events: none;         /* tidak bisa diklik */
  opacity: 0.8;
  transition: none !important;  /* hilangkan animasi hover */
}

.soon-btn:hover {
  transform: none !important;   /* tidak ada efek hover */
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .creative-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .creative-card {
    height: 380px;
  }

  .card-img-creative img {
    width: 70px;
    height: 70px;
  }

  .creative-card .circle-bg {
    top: 25px;
    left: 25px;
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 768px) {
  .creative-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .creative-card {
    max-width: 100%;
    height: auto;
  }

  .card-btn-creative {
    align-self: center;
  }
}
/* ===== HR SERVICE SECTION ===== */
.hr-service-section {
  padding: 40px 40px;
  background: #f9fafc;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 60px;
}

.hr-service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
.section-desc {
  text-align: center;
  max-width: 100%;
  margin: -30px auto 60px; /* jarak atas kecil, bawah normal */
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
}

.hr-card {
  background: #fff;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  overflow: hidden;
  width: 45%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  will-change: transform, box-shadow;
}

.hr-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 25px rgba(255, 43, 43, 0.15);
  border: 1px solid rgba(255, 43, 43, 0.3);
} 

/* bagian gambar */
.hr-card-img {
  height: 50%;
  overflow: hidden;
}

.hr-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* bagian teks */
.hr-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* menjaga jarak konten & tombol */
  flex: 1;
}

.hr-card-content h3 {
  font-size: 1.3rem;
  color: #111;
  margin-bottom: 10px;
}

.hr-card-content p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-hr {
  display: inline-block;
  background: #ff2b2b;
  color: #fff;
  padding: 10px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  align-self: flex-end;      /* sejajar kanan */
  margin-top: auto;          /* selalu di bawah */
  text-align: center;
  position: relative;
  overflow: hidden;
  
  /* 👇 tambahan untuk konsistensi ukuran */
  width: 120px;              /* lebar tetap */
  box-sizing: border-box;    /* padding dihitung dalam lebar */
}


/* hover effect: outline + sedikit animasi */
.btn-hr:hover {
  background: transparent;
  color: #ff2b2b;
  border: 2px solid #ff2b2b;
  box-shadow: 0 0 10px rgba(255, 43, 43, 0.3);
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hr-card {
    width: 100%;
  }
}
/* ===== CONSULTING SERVICES SECTION ===== */
.consulting {

padding: 40px 40px; /* kanan kiri jadi 40px */
  text-align: center;

}

.consulting-container {
  max-width:  100%;
  margin: 0 auto;
}

.consulting-title {
  font-size: 36px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.consulting-desc {
  font-size: 18px;
  color: #555;
  max-width: 900px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* ===== CONSULTING CARDS ===== */
.consulting-cards {
  display: flex;
  justify-content: center; /* card di tengah */
  align-items: center;
}


.consulting-card {
  position: relative;
  background: #ff2b2b; /* merah dulu */
  color: #fff;
  width: 600px;
  max-width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: all 0.5s ease;
  z-index: 1;
}

/* Lingkaran putih */
.consulting-card .circle-bg-consulting {
  position: absolute;
  top: 20px;
  left: 30px;
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  z-index: 0;
  transition: all 0.6s ease;
}

/* Hover effect: lingkaran melebar */
.consulting-card:hover .circle-bg-consulting {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -200px;
  border-radius: 0;
}

/* Hover ubah warna ke putih */
.consulting-card:hover {
  background: #fff;
  color: #ff2b2b;
}

.consulting-card:hover .card-title-consulting,
.consulting-card:hover .card-desc-consulting {
  color: black;
}

.consulting-card:hover .card-btn-consulting {
  background: #ff2b2b;
  color: #fff;
}

/* Logo kiri */
.card-img-consulting {
  position: relative;
  top: 10px;
  left: 20px;
  z-index: 1;
  margin-bottom: 20px;
}

.card-img-consulting img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  transition: transform 0.4s ease;

}

.consulting-card:hover .card-img-consulting img {
  transform: scale(1.05);
  filter: none; /* balik ke warna asli */
}

/* Judul kiri */
.card-title-consulting {
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  text-align: left;
}

/* Deskripsi kiri */
.card-desc-consulting {
  position: relative;
  z-index: 1;
  font-size: 18px;
  color: #f8f8f8;
  text-align: left;
  line-height: 1.6;
  margin: 0 10px 20px 0;
  flex-grow: 1;
  transition: color 0.4s ease;
}

/* Tombol sejajar di bawah */
.card-btn-consulting {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 10px 28px;
  background: #fff;
  color: #ff2b2b;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
}

.card-btn-consulting:hover {
  transform: scale(1.05);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .consulting-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .consulting-card {
    height: auto;
  }

  .card-img-consulting img {
    width: 70px;
    height: 70px;
  }

  .consulting-card .circle-bg-consulting {
    top: 25px;
    left: 25px;
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 768px) {
  .consulting-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .consulting-card {
    max-width: 100%;
    height: auto;
  }

  .card-btn-consulting {
    align-self: center;
  }
}
/* ===== EVENT PAGE BANNER ===== */
.event-banner {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.event-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  
}

.event-banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 2;

  opacity: 0; /* mulai transparan */
  animation: fadeInEventText 1.5s ease-out forwards;
  animation-delay: 0.3s; /* jeda sedikit setelah banner muncul */
}

.event-banner-text h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 8px;
}

.event-banner-text p {
  font-size: 18px;
  color: #f1f1f1;
}

/* 🔹 Animasi teks */
@keyframes fadeInEventText {
  0% {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Responsif */
@media (max-width: 768px) {
  .event-banner {
    height: 200px;
  }

  .event-banner-text h1 {
    font-size: 28px;
  }

  .event-banner-text p {
    font-size: 14px;
  }
}
/* ===== EVENT INFO BOX ===== */
.event-info-box {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: -50px; /* naik agar menimpa banner */
  z-index: 10;
}

.event-info-content {
  background-color: #ff2b2b;
  color: #fff;
  max-width: 900px;
  padding: 20px 60px;
  border-radius: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  font-size: 30px;
  line-height: 1.8;
  text-align: justify;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUpEventBox 1.2s ease-out forwards;
  animation-delay: 0.5s;
}

/* Animasi muncul */
@keyframes fadeUpEventBox {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.event-info-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: white;
  transition: width 1s ease;
}

.event-info-content.show::after {
  width: 100%;
}

.event-info-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
}

/* Responsif */
@media (max-width: 768px) {
  .event-info-box {
    margin-top: -60px;
  }

  .event-info-content {
    padding: 25px 30px;
    font-size: 16px;
    text-align: left;
  }
}
/* ===== EVENT DETAIL SECTION ===== */
.event-detail-section {
  background: #fff;
  padding: 100px 80px;
}

.event-detail-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.event-detail-text {
  flex: 1 1 500px;
}

.event-detail-text h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.event-detail-text p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
}

.event-detail-text ul {
  list-style: none;
  padding: 0;
}

.event-detail-text ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: #333;
}

.event-detail-text ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff2b2b;
  font-weight: 600;
}

.event-detail-img {
  flex: 1 1 400px;
  text-align: center;
}

.event-detail-img img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  animation: fadeInDetailImg 1.5s ease forwards;
  opacity: 0;
}

@keyframes fadeInDetailImg {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsif */
@media (max-width: 992px) {
  .event-detail-container {
    flex-direction: column;
    gap: 40px;
  }

  .event-detail-text, .event-detail-img {
    flex: none;
    width: 100%;
  }
}

/* ===== CTA SECTION ===== */
.event-cta {
  background: #ff2b2b;
  color: #fff;
  text-align: center;
  padding: 80px 40px;
  border-radius: 0;
}

.event-cta-inner h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.event-cta-inner p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn-event-cta {
  display: inline-block;
  padding: 12px 36px;
  background: #fff;
  color: #ff2b2b;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-event-cta:hover {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  transform: scale(1.05);
}

/* Responsif CTA */
@media (max-width: 768px) {
  .event-cta {
    padding: 60px 25px;
  }

  .event-cta-inner h2 {
    font-size: 26px;
  }

  .event-cta-inner p {
    font-size: 16px;
  }
}
/* ===== ABOUT PAGE ENHANCEMENTS ===== */
.event-detail-text h3 {
  font-size: 24px;
  color: #ff2b2b;
  margin-top: 40px;
  margin-bottom: 10px;
}

.event-detail-text em {
  color: #ff2b2b;
  font-style: normal;
  font-weight: 600;
}

.event-detail-img img {
  border-radius: 16px;
  object-fit: cover;
}
/* ===== CONTACT SECTION ===== */
.contact-section {
  background: #fff;
  padding: 80px 40px 120px;
  text-align: center;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  background: #f9fafc;
  padding: 40px 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: left;
  transition: all 0.3s ease;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}

input, select, textarea {
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input:focus, select:focus, textarea:focus {
  border-color: #ff2b2b;
  outline: none;
}

.btn-contact-submit {
  background: #ff2b2b;
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 25px;
  transition: all 0.3s ease;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.btn-contact-submit:hover {
  background: #e01e1e;
  transform: scale(1.05);
}

/* ALERT */
.alert {
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 500;
}

.success {
  background: #e7f9ed;
  color: #1a7f37;
  border: 1px solid #b9e6c9;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-10px);}
  to {opacity: 1; transform: translateY(0);}
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .contact-form {
    padding: 30px 25px;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .form-group {
    width: 100%;
  }

  .btn-contact-submit {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 60px 20px;
  }

  input, select, textarea {
    font-size: 0.95rem;
  }

  .btn-contact-submit {
    font-size: 0.95rem;
    padding: 12px 30px;
  }
}
