/* --- Global --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background: #f9f9f9;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* --- Header --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  background: #f9f9f9;         /* supaya tidak transparan */
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 999;  
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 45px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

/* Navbar dasar */
.nav-links li a {
  color: #000; /* warna hitam normal */
  text-decoration: none;
  display: flex;
  font-weight: 500;
  transition: color 0.2s ease;
  }

/* Hover effect */
.nav-links li a:hover {
  color: #555; /* warna abu-abu lebih redup */
  display: flex;
  }

.nav-buttons {
  display: flex;
  gap: 10px;
}

.btn-outline {
  border: 2px solid #c8102e;
  color: #c8102e;
  padding: 6px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-outline:hover {
  transform: scale(1.05);
  background: #c8102e;
  color: white;
}

.btn-primary {
  border: 2px solid #c8102e;
  background: #c8102e;
  color: white;
  padding: 6px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: scale(1.05);
  background: #fff;
  color: #c8102e;
}

/* --- RESPONSIVE --- */
/* NEW: Tambahkan hamburger menu styling */
.hamburger {
  display: none; /* sembunyikan di desktop */
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #000;
  border-radius: 3px;
  transition: 0.3s;
}

/* --- UPDATE: Tambahan helper class --- */
.mobile-only {
  display: none;
}

.desktop-only {
  display: flex;
}

/* NEW: Styling untuk nav di mobile */
@media (max-width: 768px) {
  nav ul {
    position: absolute;
    top: 65px; /* di bawah header */
    left: 0;
    width: 100%;
    flex-direction: column;
    gap: 15px;
    background: #f9f9f9;
    padding: 20px;
    transform: translateY(-120%);
    transition: transform 0.3s ease-in-out;
  }
  
  .nav-links .mobile-only a {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 5px;
  }

  nav ul.show { /* ketika menu aktif */
    transform: translateY(0);
  }

  .nav-buttons {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .hamburger {
    display: flex; /* tampilkan hamburger */
  }
  
   /* --- UPDATE: sembunyikan tombol desktop, tampilkan mobile --- */
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  /* --- UPDATE: style tombol di hamburger menu --- */
  .nav-links .btn-outline,
  .nav-links .btn-primary {
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
  }
  
  .nav-links .mobile-only .btn-outline {
    color: #c8102e;
  }
  
  .nav-links .mobile-only .btn-outline:hover {
	color: white;
	display: flex;
	align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
  }
  
  .nav-links .mobile-only .btn-primary {
    color: #fff;
	border: 2px solid #c8102e;
  }
  
  .nav-links .mobile-only .btn-primary:hover {
	background: #fff; 
	color: #c8102e;
	display: flex;
	align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
  }
}

body {
  padding-top: 80px; /* sama dengan tinggi header */
}

/* --- Hero Section --- */
.hero {
  display: flex;
  align-items: center;
  background: linear-gradient(to right, rgba(200, 16, 46, 1) 0%, rgba(200, 16, 46, 0) 100%);
  padding: 60px 0;
  color: white;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  flex: 1 1 45%;
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 1.5;
}

.cta-btn {
  display: inline-block;
  background: white;
  color: #c8102e;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid #ffffff;
  transition: 0.3s;
}

.cta-btn:hover {
  transform: scale(1.05);
  background: #c8102e;
  color: white;
}

.hero-image {
  flex: 1 1 45%;
  text-align: right;
}

.hero-image img {
  max-width: 100%;
  border-radius: 12px;
  transform: translateX(63px); /* geser 50px ke kiri */
}

/* Tombol animasi bergoyang */
@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(2deg); }
  50% { transform: rotate(-2deg); }
  75% { transform: rotate(1deg); }
}

/* Animasi Fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-right{
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right.visible-right {
  opacity: 1;
  transform: translateX(0);
}

/* --- Responsive Tablet --- */
@media (max-width: 991px) {
  .hero {
    padding: 40px 20px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-image {
    flex: 1 1 100%;
    text-align: center;
  }

  .hero-image img {
    max-width: 100%;
	transform: translateX(50px); /* geser 63px ke kiri */
  }
}

/* --- Responsive Mobile --- */
@media (max-width: 600px) {
  .hero {
    padding: 60px 15px;
  }

  .hero-text h1 {
    font-size: 25px;
  }

  .hero-text p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .cta-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .hero-image img {
    max-width: 100%;
    border-radius: 8px;
	transform: translateX(30px); /* geser 63px ke kiri */
  }
}

/* --- Layanan Slider Section --- */
.layananslider {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
  overflow: hidden;
}

.layananslider h2 {
  font-size: 28px;
  font-weight: 700;
  color: #c8102e;
  margin-bottom: 10px;
}

.layananslider .subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 60px;
}

.slider-container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

/* --- Wrapper --- */
.layananslider-wrapper {
  display: flex;
  gap: 30px;
  transition: transform 0.6s ease;
  will-change: transform;
}

/* --- Slide Card --- */
.slide-card {
  flex: 0 0 320px;
  background-color: #fff;
  border: 1px solid #eaeaea;
  border-radius: 24px;
  padding: 40px 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
}

.slide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.slide-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background-color: #c8102e;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-card .icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.slide-card h3 {
  font-size: 16px;
  color: #c8102e;
  font-weight: 600;
  margin-bottom: 12px;
}

.slide-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

/* --- Arrows --- */
.nav-arrows {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.arrow-btn {
  width: 44px;
  height: 44px;
  border: 2px solid #c8102e;
  border-radius: 50%;
  background: transparent;
  color: #c8102e;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.arrow-btn:hover {
  background-color: #c8102e;
  color: #fff;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .slide-card {
    flex: 0 0 45%; /* 2 di tablet */
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
   .layananslider h2 {
  font-size: 20px;
  font-weight: 700;
  color: #c8102e;
  margin-bottom: 30px;
}

  .layananslider .subtitle {
  color: #666;
  font-size: 14px;
  margin-bottom: 30px;
}
	
  .slide-card {
    flex: 0 0 95%; /* 1 di HP */
    margin: 0 auto;
    padding: 24px 18px;
  }

  .slide-card h3 {
    font-size: 15px;
  }

  .slide-card p {
    font-size: 12px;
  }
}

/* --- FLOW PROCESS SECTION --- */
.flow-process {
  background: #f9f9f9;
  padding: 30px 0;
  text-align: center;
  border-radius: 30px 30px 0 0;
  position: relative;
  overflow: hidden; /* pastikan gambar tidak keluar area section */
}

.flow-process .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #c8102e;
}

.flow-process .section-desc {
  max-width: 700px;
  margin: 15px auto 40px;
  color: #5a6372;
  line-height: 1.6;
}

/* Tabs */
.flow-tabs {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
}

.flow-tabs .tab {
  background: transparent;
  border: none;
  font-weight: 600;
  color: #9aa0ab;
  font-size: 1.1rem;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}

.flow-tabs .tab.active {
  color: #c8102e;
}

.flow-tabs .tab.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: #c8102e;
  border-radius: 2px;
}

/* Image Toggle Area */
.flow-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 350px;
  max-height: 550px; /* batas tinggi maksimum */
  overflow: hidden;  /* pastikan tidak keluar dari area */
  padding: 20px 0;
}

.flow-image {
  position: absolute;
  width: auto;
  max-width: 90%;
  max-height: 500px; /* batasi tinggi agar tidak tumpang tindih */
  object-fit: contain; /* agar tetap proporsional */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.flow-image.active {
  opacity: 1;
  transform: translateY(0);
  z-index: 2;
}
/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .flow-tabs {
    margin-bottom: 25px;
  }
  .flow-image-wrapper {
    max-height: 420px;
    padding: 5px 5px;
    margin-top: -15px; /* gambar lebih dekat dengan tab */
  }
}

@media (max-width: 768px) {
  .flow-tabs {
    margin-bottom: -100px;
	position: relative;
	z-index: 5; /* pastikan tab ada di atas gambar */
  }
  .flow-image-wrapper {
    max-height: 360px;
    padding: 8px 5px;
    margin-top: -20px;
	position: relative;
	z-index: 1;
	overflow: visible; /* agar gambar tidak menutupi area klik */
  }
}

@media (max-width: 480px) {
  .flow-process .section-title {
   font-size: 20px;
   font-weight: 700;
   color: #c8102e;
   }

  .flow-process .section-desc {
   font-size: 14px;
   max-width: 700px;
   margin: 15px auto 30px;
   color: #5a6372;
   line-height: 1.6;
   }
	
  .flow-tabs {
    margin-bottom: -100px;
	position: relative;
	z-index: 5; /* pastikan tab ada di atas gambar */
  }
  .flow-image-wrapper {
    max-height: 300px;
    padding: 0px 5px;
    margin-top: -25px; /* rapat di mobile */
	position: relative;
	z-index: 1;
	overflow: visible; /* agar gambar tidak menutupi area klik */
  }
  .flow-image {
    max-height: 270px;
  }
}

/* --- Fulfillin Solution Section --- */
.fulfillinsolution {
  padding: 30px 0;
  background: #f9f9f9;
}

.fulfillinsolution-content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.fulfillinsolution-image {
  flex: 1 1 45%;
}

.fulfillinsolution-image img {
  max-width: 100%;
  transform: translateX(-63px); /* geser 63px ke kiri */
}

.fulfillinsolution-text {
  flex: 1 1 45%;
}

.fulfillinsolution-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #c8102e;
}

.fulfillinsolution-text p {
  margin-bottom: 25px;
  color: #555;
}

.fulfillinsolution-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
  gap: 15px;
}

.icon-box {
  background: #f1f6ff;
  color: #007bff;
  font-weight: 500;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
}

/* --- Responsive --- */

/* Tablet (max 992px) */
@media (max-width: 992px) {
  .fulfillinsolution-content {
    gap: 30px;
  }

  .fulfillinsolution-image img {
    transform: translateX(-30px); /* kurangi geser kiri */
  }

  .fulfillinsolution-text h2 {
    font-size: 24px;
  }

  .fulfillinsolution-text p {
    font-size: 15px;
  }
}

/* Tablet kecil & HP besar (max 768px) */
@media (max-width: 768px) {
  .fulfillinsolution-content {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .fulfillinsolution-image {
    order: -1; /* tampilkan gambar di atas teks */
  }

  .fulfillinsolution-image img {
    transform: none; /* hilangkan pergeseran kiri */
    max-width: 90%;
    margin: 0 auto;
  }

  .fulfillinsolution-text {
    flex: 1 1 100%;
  }

  .fulfillinsolution-text h2 {
    font-size: 22px;
  }

  .fulfillinsolution-icons {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

/* HP kecil (max 480px) */
@media (max-width: 480px) {
  .fulfillinsolution {
    padding: 0px 0;
  }

  .fulfillinsolution-text h2 {
    font-size: 20px;
  }

  .fulfillinsolution-text p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .icon-box {
    font-size: 14px;
    padding: 10px;
  }

  .fulfillinsolution-image img {
    max-width: 100%;
  }
}

/* --- Comparison Section --- */
.comparison-section {
  background: #f9f9f9;
  padding: 30px 0;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  color: #c8102e;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: #555;
  max-width: 750px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* --- Wrapper agar scroll hanya di tabel --- */
.comparison-wrapper {
  width: 100%;
  overflow-x: visible; /* default: desktop tidak bisa scroll */
  padding: 0 40px; /* ✅ beri jarak kanan kiri agar tidak full page */
}

/* --- Table Layout --- */
.comparison-table {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr;
  border-radius: 15px;
  overflow: hidden;
  background: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);

  /* ✅ baris antar kolom sinkron dengan grid-rows */
  align-items: stretch;
}

.comparison-col {
  display: flex;
  flex-direction: column;
}

/* --- Set grid baris antar kolom agar sejajar --- */
.comparison-col ul {
  display: grid;
  grid-template-rows: repeat(6, 1fr); /* ✅ pastikan tiap kolom punya baris yang sama */
  height: 100%;
}

/* === POV Column === */
.pov-col {
  background: #c8102e;
  color: white;
  text-align: left;
  padding: 30px 20px;
}

.pov-col h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.pov-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pov-col li {
  font-weight: 500;
  line-height: 1.4;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
}

/* === Fulfillin Column === */
.fulfillin-col {
  background: #fff;
  text-align: center;
  padding: 5px 15px;
  border-left: 1px solid #e5e8ec;
  display: flex;
  flex-direction: column;
}

.fulfillin-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fulfillin-col li {
  border-top: 1px solid #f0f0f0;
  padding: 20px 15px;
  color: #2b2b2b;
  font-size: 14px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.fulfillin-col li:first-child {
  border-top: none;
}

/* === Individually Column === */
.individually-col {
  background: #fff;
  text-align: center;
  padding: 15px 15px;
  border-left: 1px solid #e5e8ec;
  display: flex;
  flex-direction: column;
}

.individually-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.individually-col li {
  border-top: 1px solid #f0f0f0;
  padding: 20px 15px;
  color: #2b2b2b;
  font-size: 14px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.individually-col li:first-child {
  border-top: none;
}

/* === Header styling === */
.comparison-header {
  background: #fff;
  padding: 15px;
  border-bottom: 2px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
}

.fulfillin-logo {
  max-height: 35px;
}

.individually-col .comparison-header {
  background: #f1f2f5;
}

.individually-col h3 {
  color: #c8102e;
  font-weight: 700;
  font-size: 1.1rem;
}

/* --- Responsive: hanya tabel yang bisa discroll --- */
@media (max-width: 992px) {
  .comparison-wrapper {
    overflow-x: auto; /* aktifkan scroll */
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }

  .comparison-table {
    min-width: 850px; /* agar bisa digeser */
    grid-template-columns: 250px 300px 300px;
  }

  .pov-col, .fulfillin-col, .individually-col {
    border: none;
    padding: 20px 15px;
  }

  .comparison-col ul li {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .comparison-header img {
    max-height: 28px;
  }

  .comparison-section::after {
    content: "← Geser tabel untuk melihat selengkapnya →";
    display: block;
    text-align: center;
    font-size: 0.85rem;
    color: #999;
    margin-top: 10px;
  }
}

/* HP kecil */
@media (max-width: 576px) {
.comparison-section {
  background: #f9f9f9;
  padding: 80px 0;
  text-align: center;
}

.section-title {
  font-size: 20px;
  color: #c8102e;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 14px;
  color: #555;
  max-width: 750px;
  margin: 0 auto 60px;
  line-height: 1.6;
}
	
  .comparison-table {
    min-width: 720px;
    grid-template-columns: 200px 260px 260px;
  }

  .pov-col {
    font-size: 0.85rem;
  }

  .fulfillin-col li,
  .individually-col li {
    font-size: 0.85rem;
    padding: 14px 8px;
  }

  .comparison-section::after {
    font-size: 0.8rem;
  }
}

/* Contact Section*/
.contact-section {
  background: #f9f9f9;
  padding: 60px 20px;
}

.contact-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 36px;
  font-weight: 700;
  color: #c8102e;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 16px;
  color: #444;
  margin-bottom: 15px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px solid #c8102e;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  color: #c8102e;
  text-decoration: none;
  transition: 0.3s;
}

.whatsapp-btn i {
  color: #25D366;
  font-size: 20px;
}

.whatsapp-btn:hover {
  background: #c8102e;
  color: #fff;
}

.contact-form {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: 1px solid #ccd6e0;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0b2d60;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
  color: #777;
}

.form-footer a {
  color: #c8102e;
  text-decoration: none;
}

.submit-btn {
  background: #c8102e;
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  border: 2px solid #c8102e;
}

.submit-btn:hover {
  background: #fff;
  color: #c8102e;
}

/* Popup Container */
.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Show popup */
.popup.show {
  display: flex;
  opacity: 1;
}

/* Popup Content */
.popup-content {
  position: relative;
  background: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  max-width: 350px;
  animation: fadeIn 0.3s ease;
}

/* Close Button */
#popupClose {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #555;
  font-weight: bold;
}

/* Animasi */
@keyframes fadeIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Pesan sukses/gagal */
.popup.success .popup-content { border-left: 6px solid #28a745; }
.popup.error .popup-content { border-left: 6px solid #dc3545; }

/* Responsif */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info, 
  .contact-form {
    width: 100%;
  }

  .contact-info h2 {
    font-size: 22px;
  }

  .contact-info p {
    font-size: 14px;
  }

  .form-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* Footer Section */
.footer {
  background: #f9f9f9;
  color: #111;
  padding: 40px 20px;
  font-size: 14px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto 30px auto;
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: 20px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 150px;
}

.footer-column h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #969393;
  text-decoration: none;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: #000;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 20px auto 0 auto;
  font-size: 13px;
}

.social-icons a {
  color: #969393;
  font-size: 18px;
  margin-left: 15px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #000;
}

/* Responsif */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: left;
  }

   .footer-columns {
    flex-direction: column; /* ⬅️ bikin vertical di HP */
    align-items: left;
    gap: 25px;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}


