:root {
  --primary: #2457ff;
  --primary-dark: #1436b8;
  --secondary: #00b4d8;
  --dark: #07111f;
  --muted: #6b7280;
  --soft: #f4f7fb;
  --white: #ffffff;
  --border: #e5e7eb;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding-top: 78px;
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2937;
  background: var(--white);
}

a { text-decoration: none; }

.navbar {
  min-height: 78px;
  background: rgba(7, 17, 31, 0.96) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.navbar-brand {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.navbar .nav-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.82) !important;
  transition: 0.25s ease;
}

.navbar .nav-link:hover,
.navbar .active .nav-link {
  color: #ffffff !important;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff !important;
  font-weight: 700;
  border: none;
  box-shadow: 0 14px 30px rgba(36, 87, 255, 0.28);
  transition: 0.25s ease;
}

.btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(36, 87, 255, 0.36);
}

.btn-outline-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #ffffff !important;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-outline-main:hover {
  background: #ffffff;
  color: var(--dark) !important;
  transform: translateY(-3px);
}

.hero-section {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #ffffff;
  background: var(--dark);
}

.banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,17,31,0.94) 0%, rgba(7,17,31,0.78) 48%, rgba(7,17,31,0.45) 100%);
  z-index: 1;
}

.hero-section::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -160px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(36,87,255,0.45), rgba(0,180,216,0.08), transparent 65%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
}

.hero-content h1 {
  font-size: 58px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -1.4px;
  margin-bottom: 22px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  max-width: 650px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  padding: 26px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.hero-card h4 {
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-point {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-point i {
  color: #75e6ff;
  font-size: 19px;
  margin-top: 3px;
}

.section-padding { padding: 90px 0; }
.section-soft { background: var(--soft); }
.section-title-wrap {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-subtitle {
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  color: var(--dark);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
}

.section-text {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.solution-card,
.service-card-page,
.about-card,
.why-card,
.contact-page-left,
.contact-page-info,
.faq-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 14px 40px rgba(7, 17, 31, 0.07);
  transition: 0.28s ease;
}

.solution-card:hover,
.service-card-page:hover,
.about-card:hover,
.why-card:hover,
.faq-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(7, 17, 31, 0.12);
}

.why-card {
  height: 100%;
  padding: 36px 34px;
  text-align: center;
}

.why-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 22px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card h4 {
  min-height: 58px;
  margin-bottom: 18px;
  line-height: 1.2;
  text-align: center;
  font-weight: 800;
}

.why-card p {
  text-align: justify !important;
  text-align-last: left;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 0;
  font-size: 15px;
  width: 100%;
}

.solution-card {
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.solution-img {
  height: 230px;
  overflow: hidden;
  flex-shrink: 0;
}

.solution-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s ease;
}

.solution-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.solution-body h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  min-height: 52px;
}

.solution-body p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
  min-height: 82px;
}

.solution-link {
  color: var(--primary);
  font-weight: 800;
  font-size: 14px;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.about-image-wrap {
  position: relative;
  padding: 16px;
}
.about-image-wrap img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 22px 60px rgba(7, 17, 31, 0.18);
}
.about-panel {
  position: absolute;
  left: 0;
  bottom: 34px;
  max-width: 260px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 18px 45px rgba(7, 17, 31, 0.15);
}
.about-panel strong {
  display: block;
  font-size: 34px;
  color: var(--primary);
  line-height: 1;
}
.about-panel span {
  color: var(--muted);
  font-size: 14px;
}

.check-list { padding: 0; margin: 24px 0 0; list-style: none; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: #374151;
  font-size: 15px;
  line-height: 1.6;
}
.check-list i { color: var(--primary); margin-top: 4px; }

.stat-box {
  text-align: center;
  padding: 30px 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  height: 100%;
}
.stat-box h3 { font-size: 38px; font-weight: 800; margin-bottom: 6px; }
.stat-box p { margin: 0; color: rgba(255,255,255,0.82); }

.why-card { padding: 28px; height: 100%; }
.why-icon,
.service-card-page i,
.about-card i {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(36, 87, 255, 0.1);
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 20px;
}
.why-card h4,
.service-card-page h4,
.about-card h4 { font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.why-card p,
.service-card-page p,
.about-card p { color: var(--muted); font-size: 15px; line-height: 1.8; margin: 0; }

.service-item {
  padding: 26px 18px;
  border-radius: 22px;
  transition: 0.25s ease;
}
.service-item:hover { background: #ffffff; box-shadow: 0 16px 40px rgba(7,17,31,0.08); transform: translateY(-6px); }
.service-icon { color: var(--primary); margin-bottom: 16px; transition: 0.25s ease; }
.service-item:hover .service-icon { transform: scale(1.12); }
.service-item p { font-weight: 700; color: var(--dark); line-height: 1.5; }

.cta-section {
  background: linear-gradient(135deg, #07111f, #0f2f74);
  color: #ffffff;
  border-radius: 34px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.cta-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -90px;
  top: -90px;
  background: radial-gradient(circle, rgba(0,180,216,0.5), transparent 68%);
}
.cta-section h3 { font-size: 34px; font-weight: 800; margin-bottom: 12px; position: relative; z-index: 2; }
.cta-section p { color: rgba(255,255,255,0.8); margin: 0; position: relative; z-index: 2; }
.cta-section .btn-main { position: relative; z-index: 2; }

.faq-card { padding: 24px; margin-bottom: 18px; }
.faq-card h5 { font-size: 18px; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.faq-card p { color: var(--muted); line-height: 1.8; margin: 0; }

.page-hero {
  min-height: 420px;
  margin-top: 0;
  background-image: linear-gradient(90deg, rgba(7,17,31,0.88), rgba(7,17,31,0.52)), url('../img/banner.jpg');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  display: flex;
  align-items: center;
  text-align: center;
}
.page-hero h1 { font-size: 48px; font-weight: 800; margin-bottom: 14px; }
.page-hero p { max-width: 720px; margin: 0 auto; color: rgba(255,255,255,0.82); font-size: 18px; line-height: 1.8; }

.service-page, .about-page, .contact-page { background: var(--soft); }
.service-card-page, .about-card { padding: 34px 26px; text-align: center; height: 100%; }
.contact-page-left, .contact-page-info { padding: 34px; height: 100%; }
.contact-page-left h4 { font-size: 26px; font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.contact-page-left p { color: var(--muted); line-height: 1.8; }
.contact-page-item { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-page-item:last-child { margin-bottom: 0; }
.contact-page-item i { min-width: 50px; height: 50px; border-radius: 16px; background: rgba(36,87,255,0.1); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.contact-page-item h5 { font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.contact-page-item p { color: var(--muted); line-height: 1.7; margin: 0; }

.contact-section {
  background: #050914;
  color: #ffffff;
  padding: 72px 0 0;
  overflow: hidden;
}
.contact-marquee {
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 48px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}
.contact-track { white-space: nowrap; display: inline-block; animation: contactMove 9s linear infinite; padding: 16px 0; }
.contact-track span { display: inline-block; font-size: 30px; font-weight: 800; letter-spacing: 1px; color: rgba(255,255,255,0.82); padding-right: 60px; }
@keyframes contactMove { from { transform: translateX(100vw); } to { transform: translateX(-100%); } }
.contact-content { padding-bottom: 52px; }
.contact-left h3 { font-size: 28px; font-weight: 800; margin-bottom: 16px; }
.contact-left p { color: rgba(255,255,255,0.72); line-height: 1.8; max-width: 560px; }
.contact-right { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; color: rgba(255,255,255,0.78); line-height: 1.7; }
.contact-item i { color: #75e6ff; min-width: 22px; margin-top: 4px; }
.contact-footer { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; color: rgba(255,255,255,0.62); font-size: 13px; }
.contact-footer p { margin: 0; }

.reveal { opacity: 0; transform: translateY(54px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

@media (max-width: 991px) {
  body { padding-top: 72px; }
  .hero-section { min-height: auto; }
  .hero-content h1 { font-size: 42px; }
  .hero-card { margin-bottom: 60px; }
  .section-title { font-size: 32px; }
  .about-panel { position: relative; left: auto; bottom: auto; margin-top: -36px; }
  .cta-section { padding: 34px 24px; }
}

@media (max-width: 576px) {
  .navbar-brand { font-size: 13px; }
  .hero-content h1 { font-size: 34px; }
  .hero-content p { font-size: 16px; }
  .page-hero h1 { font-size: 36px; }
  .section-padding { padding: 68px 0; }
  .contact-track span { font-size: 22px; }
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, #2563ff, #00b8d9);
  color: #ffffff !important;
  font-weight: 800;
  text-decoration: none !important;
  box-shadow: 0 14px 28px rgba(37, 99, 255, 0.25);
  transition: 0.3s ease;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  color: #ffffff !important;
  box-shadow: 0 18px 36px rgba(37, 99, 255, 0.35);
}

.btn-primary-custom i {
  font-size: 18px;
}

.wa-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, #2563ff, #00b8d9);
  color: #ffffff !important;
  font-weight: 800;
  text-decoration: none !important;
  border: none;
  box-shadow: 0 14px 28px rgba(37, 99, 255, 0.25);
  transition: 0.3s ease;
}

.wa-button:hover {
  transform: translateY(-3px);
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: 0 18px 36px rgba(37, 99, 255, 0.35);
}

.wa-button i {
  font-size: 18px;
}

/* ===============================
RESPONSIVE FINAL CLEAN
Tempel bagian ini di paling bawah style.css.
Pastikan tidak ada responsive navbar dobel di bawahnya.
=============================== */

@media (max-width: 991px) {
  body {
    padding-top: 90px !important;
    overflow-x: hidden !important;
  }

.main-navbar {
  padding: 10px 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.main-navbar .nav-wrap,
.main-navbar.scrolled .nav-wrap {
  position: relative !important;
  width: calc(100% - 24px) !important;
  max-width: calc(100% - 24px) !important;
  margin: 0 auto !important;
  padding: 10px 14px !important;
  border-radius: 22px !important;
  background: rgba(10, 22, 46, 0.98) !important;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22) !important;
  display: flex !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  min-height: 62px !important;
}

.brand-logo {
  margin-right: auto !important;
  gap: 8px !important;
}

.brand-logo img {
  width: 34px !important;
  height: 34px !important;
  max-width: 34px !important;
  max-height: 34px !important;
  margin-left: 0 !important;
  object-fit: contain !important;
}

.brand-logo span {
  font-size: 12px !important;
  line-height: 1.1 !important;
  max-width: 170px !important;
  white-space: normal !important;
}

.navbar-toggler {
  margin-left: auto !important;
  border: none !important;
  padding: 4px 6px !important;
  outline: none !important;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  width: 22px !important;
  height: 22px !important;
}

.main-navbar .navbar-collapse {
  position: absolute !important;
  top: calc(100% + 10px) !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  margin-top: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  z-index: 99 !important;
}

.main-navbar .navbar-collapse.collapsing {
  position: absolute !important;
  height: auto !important;
  overflow: hidden !important;
}

.main-navbar .navbar-nav {
  width: 100% !important;
  background: rgba(6, 16, 36, 0.98) !important;
  border-radius: 16px !important;
  padding: 10px 16px !important;
  align-items: flex-start !important;
}

.main-navbar .nav-item {
  width: 100% !important;
}

.main-navbar .nav-link {
  display: block !important;
  width: 100% !important;
  margin-left: 0 !important;
  padding: 8px 0 !important;
  font-size: 13px !important;
  text-align: left !important;
  color: #ffffff !important;
}

.hero-diagonal {
  min-height: auto !important;
  padding: 120px 0 55px 0 !important;
}

.hero-diagonal::before {
  width: 100% !important;
  clip-path: none !important;
}

.hero-content {
  max-width: 100% !important;
  transform: none !important;
  padding: 0 !important;
}

.hero-content h1 {
  font-size: 30px !important;
  line-height: 1.18 !important;
  margin-bottom: 16px !important;
}

.hero-content p {
  font-size: 14px !important;
  line-height: 1.7 !important;
  margin-bottom: 22px !important;
}

.hero-actions {
  gap: 10px !important;
  margin-bottom: 24px !important;
}

.btn-main,
.btn-outline-main {
  width: 100% !important;
  justify-content: center !important;
  padding: 12px 18px !important;
  font-size: 14px !important;
}

.why-card-new {
  max-width: 100% !important;
  padding: 20px !important;
  border-radius: 20px !important;
}

.why-card-new h4 {
  font-size: 22px !important;
}

.why-item-new span {
  font-size: 14px !important;
}

.hero-logo-new {
  padding-left: 0 !important;
  margin-top: 30px !important;
}

.hero-logo-new img {
  max-width: 230px !important;
}

.brand-logo-track img {
  width: 150px !important;
  height: 78px !important;
  padding: 14px 18px !important;
}

.wa-chat-bubble {
  display: none !important;
}

.floating-wa {
  width: 54px !important;
  height: 54px !important;
}
}

@media (max-width: 576px) {
  body {
    padding-top: 86px !important;
  }

.main-navbar .nav-wrap,
.main-navbar.scrolled .nav-wrap {
  width: calc(100% - 18px) !important;
  max-width: calc(100% - 18px) !important;
  padding: 10px 12px !important;
  border-radius: 18px !important;
}

.brand-logo img {
  width: 32px !important;
  height: 32px !important;
  max-width: 32px !important;
  max-height: 32px !important;
}

.brand-logo span {
  font-size: 11px !important;
  max-width: 150px !important;
}

.hero-content h1 {
  font-size: 28px !important;
}

.hero-logo-new img {
  max-width: 210px !important;
}
}

/* GLOBAL MOBILE NAVBAR FIX */
@media (max-width: 768px) {
  body.mobile-nav-fix .main-navbar {
    padding: 0 !important;
    background: transparent !important;
    position: fixed !important;
    top: 18px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
  }

body.mobile-nav-fix .main-navbar .nav-wrap {
  width: calc(100% - 34px) !important;
  max-width: none !important;
  margin: 0 auto !important;
  min-height: 68px !important;
  padding: 10px 18px !important;
  border-radius: 34px !important;
  background: rgba(10, 22, 46, 0.96) !important;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25) !important;
}

body.mobile-nav-fix .main-navbar.scrolled {
  padding-top: 0 !important;
}

body.mobile-nav-fix .main-navbar.scrolled .nav-wrap {
  width: calc(100% - 34px) !important;
  max-width: none !important;
  border-radius: 34px !important;
  padding: 10px 18px !important;
}

body.mobile-nav-fix .brand-logo {
  gap: 9px !important;
}

body.mobile-nav-fix .brand-logo img {
  width: 40px !important;
  height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  margin-left: 0 !important;
}

body.mobile-nav-fix .brand-logo span {
  font-size: 17px !important;
  line-height: 1.05 !important;
  letter-spacing: 0.3px !important;
}

body.mobile-nav-fix .navbar-toggler {
  margin-left: auto !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}
}

/* DLP STATS SECTION */
.dlp-stats-section {
  padding: 90px 0 !important;
  background: #ffffff !important;
}

.dlp-stats-wrapper {
  max-width: 1200px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 34px !important;
  align-items: center !important;
}

.dlp-stat-card {
  min-height: 170px !important;
  padding: 36px 28px !important;
  border-radius: 30px !important;
  background: linear-gradient(135deg, #2563ff, #1734b8) !important;
  color: #ffffff !important;
  text-align: center !important;
  box-shadow: 0 24px 55px rgba(37, 99, 255, 0.22) !important;
  transform: translateY(0) !important;
  opacity: 1 !important;
  transition: all 0.75s ease !important;
}

.dlp-stat-card h3 {
  margin: 0 0 12px 0 !important;
  font-size: 48px !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  line-height: 1 !important;
}

.dlp-stat-card p {
  margin: 0 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.92) !important;
}

@media (max-width: 992px) {
  .dlp-stats-wrapper {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .dlp-stat-card {
    min-height: 145px !important;
    padding: 30px 22px !important;
  }

  .dlp-stat-card h3 {
    font-size: 42px !important;
  }

  .dlp-stat-card p {
    font-size: 16px !important;
  }
}

@media (max-width: 576px) {
  .dlp-stats-section {
    padding: 60px 0 !important;
  }

  .dlp-stat-card {
    border-radius: 24px !important;
  }

  .dlp-stat-card h3 {
    font-size: 38px !important;
  }

  .dlp-stat-card p {
    font-size: 15px !important;
  }
}

/* SERVICE HERO BANNER FINAL OVERRIDE */
.service-hero-final {
  width: 100% !important;
  height: 490px !important;
  overflow: hidden !important;
  margin: 0 0 55px 0 !important;
  padding: 0 !important;
  background: #071225 !important;
}

.service-hero-final img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
}

/* SERVICE HERO MOBILE FIX */
@media screen and (max-width: 576px) {
  .service-hero-final {
    width: 100% !important;
    height: auto !important;
    margin: 0 0 35px 0 !important;
    overflow: hidden !important;
    background: #071225 !important;
  }

  .service-hero-final img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    object-position: center top !important;
    display: block !important;
  }
}

/* ===================================
    PORTFOLIO (FIXED)
=================================== */

.portfolio-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    transition: .35s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, .15);
}

/* LOGO BOX FIX: Dibikin putih bersih & padding dikurangi agar logo bisa lebih besar */
.portfolio-logo {
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff !important; 
    padding: 20px !important; 
    overflow: hidden;
}

/* LOGO IMG FIX: Memaksa logo pas dengan kotak tanpa merusak aspek rasio */
.portfolio-logo img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important; 
    display: block;
    margin: auto;
    transition: transform .35s ease;
}

.portfolio-card:hover .portfolio-logo img {
    transform: scale(1.06);
}

/* BODY FIX: Dipaksa pakai warna biru gelap (--dark) dan teks putih agar warna merah hilang */
.portfolio-body {
    padding: 30px;
    background: var(--dark) !important; 
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-body h4 {
    color: #ffffff !important; 
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.portfolio-body p {
    color: rgba(255, 255, 255, 0.7) !important; 
    margin-bottom: 24px;
}

/* LINK FIX: Warna teks diubah ke cyan (--secondary) atau putih agar kontras di latar belakang gelap */
.portfolio-link {
    color: var(--secondary) !important; 
    font-weight: 600;
    text-decoration: none;
    margin-top: auto; 
    display: inline-flex;
    align-items: center;
}

.portfolio-link i {
    margin-left: 8px;
    transition: .3s;
}

.portfolio-link:hover i {
    transform: translateX(6px);
}