/* ==========================================
   RESET & DASAR
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f8fafc;
  color: #334155;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================
   HEADER / NAVBAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

/* Desain Logo Simpel */
/* Pastikan kode ini masuk ke file CSS terpisah Anda */
.logo {
  display: inline-flex !important;
  align-items: center !important; /* Membuat ikon dan teks sejajar horizontal */
  gap: 12px !important; /* Jarak aman kanan-kiri antara ikon dan teks */
  text-decoration: none !important;
}

.logo-img {
  height: 40px !important;
  width: auto !important;
  display: block !important;
}

.logo-text {
  font-family: "Inter", sans-serif !important;
  font-size: 22px !important;
  font-weight: 800 !important; /* Tebal maksimal seperti artikel */
  color: #0f172a !important; /* Warna gelap untuk "SiCepat" */
  letter-spacing: -0.5px !important;
  text-decoration: none !important; /* Memastikan tidak ada garis bawah */
}

.logo-text .highlight {
  color: #1d4ed8 !important; /* Warna biru terang untuk "Cair" */
  font-weight: 800 !important;
}

/* Menu Navigasi */
.nav-menu {
  display: flex;
  gap: 28px;
}

.nav-link {
  text-decoration: none;
  color: #64748b;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: #1d4ed8;
}

/* Animasi garis bawah tipis saat menu di-hover */
.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #1d4ed8;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* ==========================================
   TOMBOL / BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

/* WA Navigasi */
.btn-wa-nav {
  background-color: #22c55e;
  color: white;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

.btn-wa-nav:hover {
  background-color: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.3);
}

/* WA Utama di Banner */
.btn-wa-main {
  background-color: #22c55e;
  color: white;
  padding: 16px 32px;
  font-size: 16px;
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(34, 197, 94, 0.3);
}

.btn-wa-main:hover {
  background-color: #16a34a;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.4);
}

.btn-wa-main:active {
  transform: translateY(-1px);
}

/* Button Lihat Layanan (Transparan Berkilau) */
.btn-outline {
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 16px 32px;
  font-size: 16px;
  backdrop-filter: blur(5px);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-3px);
  padding-right: 36px; /* Efek mendorong teks sedikit */
}

.btn-outline i {
  transition: transform 0.3s ease;
}

.btn-outline:hover i {
  transform: translateX(5px);
}

/* ==========================================
   HERO / TOP BANNER
   ========================================== */
.hero-section {
  padding-top: 160px; /* Jarak agar tidak tertutup navbar fixed */
  padding-bottom: 100px;
  /* Background gradient biru ke navy pekat di pojok kanan bawah */
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 50%, #0f172a 100%);
  color: white;
  overflow: hidden;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr; /* 2 Kolom */
  align-items: center;
  gap: 40px;
}

/* Badge Jabatan */
.badge-role {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease;
}

.badge-role .check-icon {
  color: #38bdf8; /* Biru muda cerah untuk estetika */
}

/* Heading */
.hero-heading {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
  animation: cubic-bezier(0.16, 1, 0.3, 1) fadeInUp 0.9s;
}

.hero-heading span {
  color: #38bdf8; /* Highlight warna cyan cerah */
}

/* Deskripsi */
.hero-description {
  font-size: 18px;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 40px;
  max-width: 650px;
  animation: fadeInUp 1s ease;
}

/* Container Tombol */
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 1.1s ease;
}

/* Fitur/Poin-poin Bawah */
.hero-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #e2e8f0;
}

.feature-item i {
  color: #4ade80; /* Hijau Terang sesuai request */
  font-size: 16px;
}

/* Animasi Dekoratif Kolom Kanan */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-placeholder-glow {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(56, 189, 248, 0.2) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  position: absolute;
  animation: pulseGlow 4s infinite ease-in-out;
}

/* ==========================================
   KEYFRAMES ANIMASI
   ========================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* Responsive untuk Layar HP */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .nav-menu {
    display: none; /* Menyembunyikan menu di HP, bisa ditambahkan Hamburger Menu nanti */
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons,
  .hero-features {
    justify-content: center;
  }
  .hero-heading {
    font-size: 32px;
  }
}

/* ==========================================
   GAYA FOTO PROFIL & BADGE TIMBUL
   ========================================== */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Wrapper utama agar foto dan kartu nama menyatu secara proporsional */
.profile-card-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px; /* Ukuran maksimal foto agar tetap rapi */
}

/* Foto dengan Rounded 20%, Tebal Border 5%, dan Shadow Tegas */
.profile-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5%;
  border: 4px solid #1e3a8a; /* Border tebal warna biru tua */
  /* Box Shadow berkekuatan lembut namun tegas (efek 10% opacity sebaran luas) */
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  display: block;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Efek interaktif: Foto sedikit membesar saat diarahkan kursor */
.profile-card-wrapper:hover .profile-img {
  transform: scale(1.03) rotate(1deg);
}

/* Kartu Nama Timbul di Pojok Kiri */
.floating-badge {
  position: absolute;
  bottom: -15px;
  left: -20px; /* Menjorok ke pojok kiri luar gambar */
  background-color: #ffffff;
  padding: 16px 24px;
  border-radius: 10px; /* Sesuai request rounded 20% */
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.2),
    0 10px 10px -5px rgba(0, 0, 0, 0.2);
  animation: bounceIn 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

/* Tulisan Nama Timbul (Tebal & Tegas) */
.badge-name {
  color: #1e293b;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

/* Tulisan Jabatan Biru dengan Background Putih */
.badge-title {
  display: inline-block;
  color: #1d4ed8; /* Warna biru */
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Animasi Muncul Membal (Bounce) untuk Kartu Nama saat Web Dimuat */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(40px);
  }
  70% {
    transform: scale(1.05) translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Penyesuaian Responsif di Layar HP */
@media (max-width: 992px) {
  .hero-visual {
    margin-top: 40px;
  }
  .floating-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -25px;
    width: 85%;
    text-align: center;
    border-left: none;
    border-bottom: 5px solid #1d4ed8; /* Di HP aksen garis pindah ke bawah */
    animation: fadeInUp 1.2s ease;
  }
  /* Mencegah animasi bounce bertabrakan dengan responsif centring di HP */
  .profile-card-wrapper:hover .profile-img {
    transform: scale(1.02);
  }
}

/* ==========================================
   SECTION LAYANAN KREDIT (PUTIH POLOS)
   ========================================== */
.services-section {
  padding: 100px 0;
  background-color: #ffffff; /* Sesuai request: Putih Polos */
}

/* Row 1: Header Text */
.services-header {
  text-align: left;
  max-width: 800px;
  margin: 0 0 50px 0;
  position: relative;
}

.services-tagline {
  display: inline-block;
  color: #1d4ed8; /* Teks kecil warna biru */
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.services-heading {
  color: #0f172a; /* Heading warna hitam korporat */
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.services-subheading {
  color: #64748b; /* Tulisan kecil deskripsi */
  font-size: 17px;
  line-height: 1.6;
}

/* Row 2: Grid 2 Kolom */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 Kolom sama besar */
  gap: 32px;
}

/* Komponen Service Card */
.service-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 40px;
  /* Rounded 5% menggunakan piksel (sekitar 24px) agar presisi persegi panjang */
  border-radius: 24px;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

/* Desain Icon Box (Background Biru Transparan 10%, Outline Biru) */
.card-icon-wrapper {
  width: 64px;
  height: 64px;
  background-color: rgba(29, 78, 216, 0.1); /* Background biru ketebalan 10% */
  border: 2px solid #1d4ed8; /* Outline icon warna biru */
  border-radius: 12px; /* Setingan rounded 5% disesuaikan ke px agar halus */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.card-icon {
  color: #1d4ed8;
  font-size: 24px;
}

.card-title {
  color: #0f172a;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.card-description {
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Gaya Bullet List Checklist Bulat */
.card-list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #334155;
  font-weight: 500;
}

.list-check {
  color: #22c55e; /* Icon checklist bulat warna hijau aman */
  font-size: 18px;
}

/* Tombol Link Tambahan Aksi */
.card-link {
  margin-top: auto; /* Mendorong tombol selalu berada di paling bawah kartu */
  text-decoration: none;
  color: #1d4ed8;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}

/* ==========================================
   INTERAKSI KETIKA DI HOVER (Mulus & Elegan)
   ========================================== */
.service-card:hover {
  transform: translateY(-8px); /* Efek terangkat ke atas */
  border-color: rgba(29, 78, 216, 0.3);
  /* Bayangan menjadi lebih tebal dan ada sentuhan warna biru tipis */
  box-shadow:
    0 20px 25px -5px rgba(29, 78, 216, 0.08),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Efek icon memutar sedikit saat kartu di-hover */
.service-card:hover .card-icon-wrapper {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
}

.service-card:hover .card-icon {
  color: #ffffff;
  transform: scale(1.1);
}

.service-card:hover .card-link {
  gap: 12px; /* Panah sedikit bergeser ke kanan saat di-hover */
}

/* Responsive untuk HP */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr; /* Di HP berubah jadi 1 kolom bertumpuk */
    gap: 24px;
  }
  .services-heading {
    font-size: 28px;
  }
  .service-card {
    padding: 30px 24px;
  }
}

/* ==========================================
   SECTION PORTOFOLIO (STYLE TERBARU)
   ========================================== */
.portfolio-section {
  padding: 100px 0;
  background-color: #ffffff; /* Latar belakang putih polos sesuai permintaan */
}

/* Row 1: Header Rata Kiri */
.portfolio-header {
  text-align: left;
  max-width: 800px;
  margin-bottom: 50px;
}

.portfolio-tagline {
  display: inline-block;
  color: #1d4ed8; /* Teks kecil warna biru */
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.portfolio-heading {
  color: #0f172a;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.25;
  margin-bottom: 16px;
}

.portfolio-subheading {
  color: #475569;
  font-size: 17px;
  line-height: 1.6;
  max-width: 680px;
}

/* Row 2: Grid 4 Kolom Kesamping */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 kolom sejajar ke samping */
  gap: 24px;
}

/* Komponen Pembungkus Kartu Foto */
.portfolio-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden; /* Mengunci gambar agar tidak keluar dari sudut saat membesar */
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.portfolio-img-wrapper {
  position: relative;
  width: 100%;
  height: 280px; /* Tinggi seragam untuk semua foto */
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Memotong foto secara proporsional otomatis */
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Overlay Transparan di Pojok Kiri Bawah */
.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.85) 0%,
    rgba(15, 23, 42, 0.2) 60%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end; /* Memaksa konten merapat ke bawah */
  padding: 24px;
  box-sizing: border-box;
}

.portfolio-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  text-align: left; /* Rata kiri pojok bawah */
  transform: translateY(0);
  transition: transform 0.4s ease;
}

/* ==========================================
   INTERAKSI KETIKA KARTU FOTO DI-HOVER
   ========================================== */
.portfolio-card:hover {
  transform: translateY(-6px); /* Kartu naik sedikit */
  box-shadow:
    0 20px 25px -5px rgba(15, 23, 42, 0.15),
    0 10px 10px -5px rgba(15, 23, 42, 0.04);
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.08); /* Efek zoom-in halus pada foto */
}

/* ==========================================
   RESPONSIVITAS PADA HP & TABLET
   ========================================== */
@media (max-width: 1024px) {
  /* Tablet: 2 baris x 2 kolom */
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .portfolio-heading {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  /* HP: Teks judul kembali ke tengah dan foto berjejer 1 kolom memanjang kebawah */
  .portfolio-header {
    text-align: center;
  }
  .portfolio-heading {
    font-size: 26px;
  }
  .portfolio-subheading {
    font-size: 15px;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .portfolio-img-wrapper {
    height: 240px; /* Sedikit dikecilkan di HP agar hemat ruang layar */
  }
}

/* ==========================================
   SECTION TESTIMONI (GAYA REVIEWER)
   ========================================== */
.testimonial-section {
  padding: 100px 0;
  background-color: #f8fafc; /* Latar belakang abu-abu sangat muda agar kartu putih terlihat pop-out */
}

/* Header Rata Tengah */
.testimonial-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.testimonial-tagline {
  color: #1d4ed8;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 12px;
}

.testimonial-heading {
  color: #0f172a;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
}

/* Grid 3 Kolom */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Struktur Kartu Ulasan */
.review-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

/* Logo Avatar Gmail Konseptual */
.gmail-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

/* Variasi Warna Latar Belakang Akun Google */
.color-a {
  background-color: #e056fd;
}
.color-s {
  background-color: #ff7675;
}
.color-b {
  background-color: #0984e3;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
}

.reviewer-name {
  color: #0f172a;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.review-date {
  color: #94a3b8;
  font-size: 13px;
  margin-top: 2px;
}

/* Bintang Lima Emas */
.review-stars {
  color: #f59e0b; /* Warna emas */
  font-size: 14px;
  margin-bottom: 14px;
  display: flex;
  gap: 2px;
}

.review-text {
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: normal;
  flex-grow: 1;
}

/* Responsif Layanan */
@media (max-width: 968px) {
  .testimonial-grid {
    grid-template-columns: 1fr; /* Stack kebawah saat layar HP */
    gap: 20px;
  }
  .testimonial-heading {
    font-size: 28px;
  }
}

/* ==========================================
   SECTION KONTAK (STYLE)
   ========================================== */
.contact-section {
  padding: 100px 0;
  background-color: #ffffff; /* Latar belakang putih bersih */
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* Membagi kolom info (kiri) dan form (kanan) */
  gap: 80px;
  align-items: center;
}

/* Kolom Kiri Styling */
.contact-tagline {
  color: #1d4ed8;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 12px;
}

.contact-heading {
  color: #0f172a;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.25;
  margin-bottom: 16px;
}

.contact-description {
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Item Detail Kontak */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.c-icon {
  width: 48px;
  height: 48px;
  background-color: #eff6ff; /* Biru sangat muda */
  color: #1d4ed8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

/* Khusus icon WhatsApp agar berwarna hijau khas */
.contact-item:nth-child(2) .c-icon {
  background-color: #f0fdf4;
  color: #22c55e;
}

.c-text h4 {
  color: #0f172a;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px 0;
}

.c-text p,
.c-text p a {
  color: #64748b;
  font-size: 15px;
  margin: 0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.c-text p a:hover {
  color: #1d4ed8;
}

/* Kolom Kanan: Kotak Formulir */
.contact-form-box {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 40px;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.03),
    0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

.form-title {
  color: #0f172a;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px 0;
}

.form-subtitle {
  color: #64748b;
  font-size: 14px;
  margin: 0 0 28px 0;
}

/* Elemen Input Form */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  color: #334155;
  font-size: 14px;
  font-weight: 600;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 15px;
  color: #0f172a;
  outline: none;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #1d4ed8;
  box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.1);
}

/* Tombol Kirim Form */
.btn-submit-form {
  width: 100%;
  padding: 14px;
  background-color: #1d4ed8;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.btn-submit-form:hover {
  background-color: #1e40af;
  transform: translateY(-2px);
}

.btn-submit-form:active {
  transform: translateY(0);
}

/* Responsif Layanan HP & Tablet */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr; /* Bertumpuk di tablet/HP */
    gap: 50px;
  }
  .contact-heading {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .contact-form-box {
    padding: 24px; /* Padding form mengecil di HP agar hemat ruang */
  }
  .contact-heading {
    font-size: 26px;
  }
}

/* ==========================================
   FOOTER UTAMA (HITAM ELEGAN)
   ========================================== */
.main-footer {
  background-color: #0f172a; /* Warna hitam elegan / navy pekat */
  color: #94a3b8; /* Teks abu-abu lembut agar nyaman di mata */
  padding-top: 80px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr; /* Layout 2 Kolom */
  gap: 60px;
  padding-bottom: 60px;
}

/* Kolom 1: Logo & Info */
.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #1d4ed8, #38bdf8);
  border-radius: 6px;
  position: relative;
}

.footer-logo-icon::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 12px;
  background-color: #fbbf24;
  left: 12px;
  top: 8px;
  transform: skewX(-20deg);
  border-radius: 1px;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.footer-logo-text .highlight {
  color: #38bdf8;
}

.footer-description {
  font-size: 15px;
  line-height: 1.6;
  max-width: 450px;
}

.footer-description strong {
  color: #e2e8f0;
}

/* Kolom 2: Menu Navigasi */
.footer-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-nav {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(
    2,
    1fr
  ); /* Menu footer dibagi menjadi 2 kolom kecil agar rapi */
  gap: 12px 20px;
}

.footer-nav a {
  text-decoration: none;
  color: #94a3b8;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-nav a:hover {
  color: #38bdf8; /* Efek hover menyala cyan cerah */
  transform: translateX(4px); /* Teks sedikit bergeser ke kanan saat disentuh */
}

/* ==========================================
   SUB-FOOTER (SPLIT POJOK KIRI & KANAN)
   ========================================== */
.sub-footer {
  background-color: #020617; /* Hitam lebih pekat untuk area hak cipta */
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sub-footer-container {
  display: flex;
  justify-content: space-between; /* Membuat konten terpisah ke pojok kiri dan kanan */
  align-items: center;
}

.sub-left p {
  font-size: 14px;
  color: #64748b;
}

.sub-right .footer-wa-link {
  text-decoration: none;
  color: #4ade80; /* Warna hijau terang untuk WhatsApp */
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.sub-right .footer-wa-link:hover {
  color: #22c55e;
}

/* Responsive Footer untuk HP */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr; /* Menjadi 1 kolom bertumpuk di HP */
    gap: 40px;
    text-align: center;
  }
  .footer-logo {
    justify-content: center;
  }
  .footer-description {
    margin: 0 auto;
  }
  .footer-nav {
    justify-content: center;
    max-width: 250px;
    margin: 0 auto;
  }
  .sub-footer-container {
    flex-direction: column; /* Subfooter bertumpuk di HP agar muat */
    gap: 12px;
    text-align: center;
  }
}

/* ==========================================
   SECTION KEUNGGULAN (4 KOLOM)
   ========================================== */
.features-section {
  padding: 100px 0;
  background-color: #f8fafc; /* Warna abu-abu sangat terang agar kontras dengan section layanan yang putih */
}

/* Row 1: Header */
.features-header {
  text-align: center;
  margin-bottom: 60px;
}

.features-tagline {
  display: inline-block;
  color: #1d4ed8;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.features-heading {
  color: #0f172a;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* Row 2: Grid 4 Kolom Kesamping */
.features-grid {
  display: grid;
  grid-template-columns: repeat(
    4,
    1fr
  ); /* Membagi rata menjadi 4 kolom sama besar */
  gap: 24px;
}

/* Komponen Kartu Keunggulan */
.feature-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 32px 24px;
  border-radius: 16px; /* Sudut melengkung halus khas korporat modern */
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Desain Lingkaran Icon Keunggulan */
.f-icon-box {
  width: 56px;
  height: 56px;
  background-color: rgba(29, 78, 216, 0.05);
  border-radius: 50%; /* Berbentuk lingkaran penuh untuk variasi desain */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  color: #1d4ed8;
  font-size: 22px;
  transition: all 0.3s ease;
}

.f-title {
  color: #0f172a;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.f-desc {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

/* ==========================================
   INTERAKSI KETIKA DI HOVER
   ========================================== */
.feature-card:hover {
  transform: translateY(-5px);
  border-color: #1d4ed8;
  box-shadow:
    0 12px 20px -5px rgba(29, 78, 216, 0.1),
    0 8px 8px -5px rgba(0, 0, 0, 0.04);
}

.feature-card:hover .f-icon-box {
  background-color: #1d4ed8;
  color: #ffffff;
  transform: rotate(360deg); /* Efek icon berputar elegan saat di-hover */
}

/* ==========================================
   RESPONSIVITAS SCREEN (HP & TABLET)
   ========================================== */
@media (max-width: 1024px) {
  /* Di Tablet/Layar Sedang berubah menjadi 2 baris x 2 kolom */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  /* Di HP berubah menjadi 1 kolom memanjang ke bawah agar tidak sempit */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .features-heading {
    font-size: 28px;
  }
}

/* Penyesuaian agar logo area di footer terlihat rapi */
.footer-logo-adjusted {
  text-decoration: none;
  margin-bottom: 20px;
}

/* ==========================================
   FLOATING BUTTON STYLE (TOMBOL MELAYANG)
   ========================================== */
.floating-cta-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 50px; /* Membuat bentuk kapsul lonjong */
  box-shadow: 0 10px 25px rgba(29, 78, 216, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  z-index: 9999; /* Memastikan tombol selalu berada di lapisan paling atas */
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: pulseGlow 2s infinite; /* Efek berdenyut lembut */
}

/* Efek Hover (Saat Kursor Menyentuh Tombol) */
.floating-cta-btn:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 30px rgba(29, 78, 216, 0.6);
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

/* Efek Animasi Berdenyut Halus agar Menarik Perhatian Mata */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 10px 25px rgba(29, 78, 216, 0.4);
  }
  50% {
    box-shadow: 0 10px 35px rgba(29, 78, 216, 0.7);
  }
  100% {
    box-shadow: 0 10px 25px rgba(29, 78, 216, 0.4);
  }
}

/* Responsif pada HP (Dikecilkan Sedikit agar Tidak Menutupi Layar Konten) */
@media (max-width: 640px) {
  .floating-cta-btn {
    bottom: 20px;
    right: 20px;
    padding: 12px 18px;
    font-size: 14px;
  }
}

/* Pengaturan Logo Footer agar sama tebal dan rapi */
.logo-footer {
  display: inline-flex !important;
  align-items: center !important; /* Menjaga ikon dan teks tetap sejajar horizontal */
  gap: 12px !important;
  text-decoration: none !important;
  margin-bottom: 24px !important; /* MEMBERIKAN JARAK AMAN KE BAWAH (ke teks deskripsi) */
}

.logo-img-footer {
  height: 38px !important;
  width: auto !important;
  display: block !important;
}

.logo-text-footer {
  font-family: "Inter", sans-serif !important;
  font-size: 20px !important;
  font-weight: 800 !important; /* Tebal maksimal */
  color: #ffffff !important; /* Warna gelap untuk "SiCepat" */
  letter-spacing: -0.5px !important;
  text-decoration: none !important; /* Menghapus garis bawah pada teks */
}

.logo-text-footer .highlight {
  color: #1d4ed8 !important; /* Warna biru untuk "Cair" */
  font-weight: 800 !important;
}
