  :root {
    --navy: #0D1B6E;
    --navy-deep: #081245;
    --navy-light: #1a2d9e;
    --gold: #F5B800;
    --gold-light: #FFD340;
    --white: #FFFFFF;
    --off-white: #F8F9FF;
    --gray: #8892B0;
    --text: #1a1a2e;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
  }

  /* CUSTOM CURSOR */
  .cursor {
    position: fixed;
    width: 12px; height: 12px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s;
    mix-blend-mode: multiply;
  }
  .cursor-follower {
    position: fixed;
    width: 36px; height: 36px;
    border: 2px solid var(--navy);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.3s ease, width 0.3s, height 0.3s;
  }

  /* NAVBAR */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 5%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(13,27,110,0.08);
    transition: all 0.3s;
  }
  nav.scrolled {
    height: 60px;
    box-shadow: 0 4px 30px rgba(13,27,110,0.12);
  }

  .logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }
  .logo-icon {
    width: 44px; height: 44px;
    background: var(--navy);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: -1px;
  }
  .logo-text {
    line-height: 1.1;
  }
  .logo-text strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.5px;
  }
  .logo-text span {
    font-size: 10px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
  }
  .nav-links a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: 0.3px;
    position: relative;
    transition: color 0.2s;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    background: var(--navy) !important;
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 6px;
    transition: background 0.2s, transform 0.2s !important;
  }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; transform: translateY(-1px); }

  /* DROPDOWN LAYANAN */
  .nav-dropdown {
    position: relative;
  }
  .nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .nav-dropdown > a .chevron {
    font-size: 10px;
    transition: transform 0.25s;
    display: inline-block;
    line-height: 1;
  }
  .nav-dropdown:hover > a .chevron { transform: rotate(180deg); }
  .nav-dropdown > a::after { display: none !important; }

  .dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 560px;
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(13,27,110,0.15), 0 0 0 1px rgba(13,27,110,0.06);
    padding: 10px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
    z-index: 2000;
  }
  .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
  }

/* FIX DROPDOWN HOVER GAP */
.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  left: -20px;
  right: -20px;
  top: 100%;
  height: 28px;
  background: transparent;
  z-index: 1999;
}

.dropdown-menu {
  top: calc(100% + 12px);
}

  /* Arrow pointer */
  .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px; height: 14px;
    background: var(--white);
    border-left: 1px solid rgba(13,27,110,0.06);
    border-top: 1px solid rgba(13,27,110,0.06);
    rotate: 45deg;
  }

  .dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }
  .dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.18s;
    cursor: none;
  }
  .dropdown-item:hover { background: var(--off-white); }
  .dropdown-item:hover .di-icon { background: var(--navy); }
  .dropdown-item:hover .di-icon span { filter: brightness(0) invert(1); }

  .di-icon {
    width: 40px; height: 40px;
    background: rgba(13,27,110,0.07);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: background 0.18s;
  }
  .di-text { flex: 1; }
  .di-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
  }
  .di-text p {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.4;
  }

  .dropdown-footer {
    margin-top: 6px;
    padding: 12px 16px;
    background: linear-gradient(90deg, rgba(13,27,110,0.04), rgba(245,184,0,0.08));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    transition: background 0.18s;
    cursor: none;
  }
  .dropdown-footer:hover { background: linear-gradient(90deg, rgba(13,27,110,0.08), rgba(245,184,0,0.15)); }
  .dropdown-footer span { font-size: 13px; font-weight: 600; color: var(--navy); }
  .dropdown-footer .arrow-chip {
    background: var(--gold);
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #1e3a8a 100%);
    display: flex;
    align-items: center;
    padding: 100px 5% 60px;
    position: relative;
    overflow: hidden;
  }

  .hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  .hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(245,184,0,0.06);
  }
  .shape-1 { width: 600px; height: 600px; top: -200px; right: -100px; }
  .shape-2 { width: 300px; height: 300px; bottom: 100px; left: -80px; background: rgba(245,184,0,0.04); }
  .shape-3 {
    width: 1px; height: 70%;
    right: 38%;
    top: 15%;
    background: rgba(245,184,0,0.15);
    border-radius: 0;
  }

  /* Animated dots grid */
  .dots-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(245,184,0,0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: drift 20s linear infinite;
  }
  @keyframes drift { from { background-position: 0 0; } to { background-position: 40px 40px; } }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,184,0,0.15);
    border: 1px solid rgba(245,184,0,0.3);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease both;
  }
  .hero-badge .dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s 0.15s ease both;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--gold);
    position: relative;
  }
  .hero h1 em::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    opacity: 0.4;
    transform: scaleX(0);
    transform-origin: left;
    animation: lineReveal 0.6s 1s ease forwards;
  }
  @keyframes lineReveal { to { transform: scaleX(1); } }

  .hero p {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,0.72);
    margin-bottom: 40px;
    max-width: 480px;
    animation: fadeInUp 0.8s 0.3s ease both;
  }

  .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.45s ease both;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 15px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(245,184,0,0.35);
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(245,184,0,0.5); }

  .btn-outline {
    border: 1.5px solid rgba(255,255,255,0.35);
    color: var(--white);
    padding: 15px 32px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

  .hero-right {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    z-index: 2;
    animation: fadeInRight 1s 0.3s ease both;
  }

  @keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
  @keyframes fadeInRight { from { opacity:0; transform:translate(40px,-50%); } to { opacity:1; transform:translate(0,-50%); } }

  /* Stats card floating */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .stat-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 24px 20px;
    transition: transform 0.3s, background 0.3s;
  }
  .stat-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.1); }
  .stat-card:first-child { grid-column: 1/-1; display: flex; align-items: center; gap: 16px; }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
  }
  .stat-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; font-weight: 400; }
  .stat-icon { font-size: 32px; margin-bottom: 8px; }

  /* SCROLL INDICATOR */
  .scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    color: rgba(255,255,255,0.4);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 1s 1s ease both;
  }
  .scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, rgba(245,184,0,0.5), transparent);
    animation: scrollLine 2s infinite;
  }
  @keyframes scrollLine { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

  /* MARQUEE */
  .marquee-section {
    background: var(--gold);
    padding: 14px 0;
    overflow: hidden;
  }
  .marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
  }
  .marquee-track span {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .marquee-track span::after { content: '✦'; font-size: 10px; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* SECTION BASE */
  section { padding: 100px 5%; }
  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }
  .section-label::before {
    content: '';
    width: 28px; height: 2px;
    background: var(--gold);
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 16px;
  }
  .section-sub {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 56px;
  }

  /* SERVICES */
  .services-section { background: var(--off-white); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 30px;
    border: 1px solid rgba(13,27,110,0.07);
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .service-card[data-url] {
    cursor: pointer;
  } 

  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.35s;
  }
  .service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(13,27,110,0.12); border-color: transparent; }
  .service-card:hover::before { transform: scaleX(1); }

  .service-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    transition: transform 0.3s;
  }
  .service-card:hover .service-icon { transform: rotate(-5deg) scale(1.05); }

  .service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
  }
  .service-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

  .service-card .arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    transition: gap 0.2s, color 0.2s;
  }
  .service-card:hover .arrow { gap: 10px; color: var(--gold); }

  /* PROJECTS */
  .projects-section { background: var(--white); }
  .projects-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
  .projects-header .section-sub { margin-bottom: 0; }

  .project-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  .tab-btn {
    padding: 9px 22px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid rgba(13,27,110,0.15);
    background: transparent;
    color: var(--gray);
    transition: all 0.2s;
  }
  .tab-btn.active, .tab-btn:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
  }

  .projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .project-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(13,27,110,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
  }
  .project-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(13,27,110,0.15); }
  .project-thumb {
    height: 200px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 48px;
    position: relative;
    overflow: hidden;
  }
  .project-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.3));
  }
  .project-thumb.alt1 { background: linear-gradient(135deg, #1a2d9e, #0D1B6E); }
  .project-thumb.alt2 { background: linear-gradient(135deg, #0D1B6E, #0a3d62); }
  .project-thumb.alt3 { background: linear-gradient(135deg, #081245, #1a2d9e); }
  .project-thumb .thumb-label {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--gold);
    color: var(--navy);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 1;
  }
  .project-info { padding: 22px; }
  .project-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
  }
  .project-info p { font-size: 13px; color: var(--gray); line-height: 1.6; }
  .project-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px; }
  .tag {
    background: var(--off-white);
    color: var(--navy);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
  }

  /* ABOUT */
  .about-section {
    background: linear-gradient(135deg, var(--navy-deep), var(--navy));
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .about-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(245,184,0,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
  .about-section .section-title { color: var(--white); }
  .about-section .section-sub { color: rgba(255,255,255,0.6); max-width: 100%; }
  .about-section .section-label { color: var(--gold); }

  .about-list { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
  .about-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.07);
    transition: background 0.2s;
  }
  .about-item:hover { background: rgba(255,255,255,0.09); }
  .about-item .check {
    width: 22px; height: 22px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    color: var(--navy);
    flex-shrink: 0;
    margin-top: 1px;
  }
  .about-item p { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.6; }

  .about-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .metric-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: transform 0.3s;
  }
  .metric-card:hover { transform: translateY(-4px); }
  .metric-card:first-child { grid-column: 1 / -1; background: rgba(245,184,0,0.12); border-color: rgba(245,184,0,0.25); }
  .metric-card .num {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
  }
  .metric-card .label { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 6px; }

  /* PORTFOLIO */
  .portfolio-section { background: var(--off-white); }
  .portfolio-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: auto auto; gap: 16px; }
  .portfolio-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--navy);
  }
  .portfolio-item:first-child { grid-row: 1 / 3; }
  .portfolio-thumb {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 56px;
    transition: transform 0.4s;
  }
  .portfolio-item:first-child .portfolio-thumb { min-height: 420px; font-size: 80px; }
  .portfolio-item:hover .portfolio-thumb { transform: scale(1.06); }
  .portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,18,69,0.95) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .portfolio-item:hover .portfolio-overlay { opacity: 1; }
  .portfolio-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 4px;
  }
  .portfolio-overlay p { font-size: 13px; color: rgba(255,255,255,0.7); }

  /* CONTACT */
  .contact-section { background: var(--white); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
  .contact-info { display: flex; flex-direction: column; gap: 28px; margin-top: 20px; }
  .contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .contact-item .icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }
  .contact-item h4 { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
  .contact-item p { font-size: 15px; color: var(--navy); font-weight: 500; }

  .contact-form { background: var(--off-white); border-radius: 24px; padding: 40px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
  .form-group label { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); }
  .form-group input,
  .form-group select,
  .form-group textarea {
    background: var(--white);
    border: 1.5px solid rgba(13,27,110,0.12);
    border-radius: 10px;
    padding: 13px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    cursor: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(13,27,110,0.08);
  }
  .form-group textarea { resize: vertical; min-height: 100px; }

  .btn-submit {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    letter-spacing: 0.5px;
  }
  .btn-submit:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

  /* FOOTER */
  footer {
    background: var(--navy-deep);
    color: var(--white);
    padding: 60px 5% 30px;
  }
  .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
  .footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.8; margin-top: 16px; max-width: 280px; }
  .footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--gold); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
  .social-links { display: flex; gap: 12px; }
  .social-btn {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    cursor: none;
  }
  .social-btn:hover { background: var(--gold); transform: translateY(-3px); }

  /* ANIMATIONS */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  .logo-img {
  height: 44px;
  width: auto;
}

/* BLOG */
/* BLOG */
.blog-section {
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border: 1px solid rgba(13,27,110,0.08);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(13,27,110,0.13);
}

.blog-thumb {
  height: 190px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
}

.blog-thumb.alt1 {
  background: linear-gradient(135deg, #081245, #0D1B6E);
}

.blog-thumb.alt2 {
  background: linear-gradient(135deg, #0D1B6E, #2563eb);
}

.blog-info {
  padding: 24px;
}

.blog-date {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: 10px;
}

.blog-info p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
}

.blog-info .arrow {
  display: inline-flex;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}

.blog-info .arrow:hover {
  color: var(--gold);
}

/* HALAMAN BLOG */
/* BLOG PAGE */
.blog-page-hero {
  min-height: 58vh;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #1e3a8a 100%);
  display: flex;
  align-items: center;
  padding: 130px 5% 80px;
  position: relative;
  overflow: hidden;
}

.blog-page-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.blog-page-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}

.blog-page-content p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 620px;
}

.blog-list-section {
  background: var(--off-white);
}

/* BLOG 3 halaman bawah CTA */
.blog-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.blog-more-wrap .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* PROJECT PREVIEW CTA */
.project-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.project-more-wrap .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* PROJECT PAGE */
.project-page-hero {
  min-height: 58vh;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #1e3a8a 100%);
  display: flex;
  align-items: center;
  padding: 130px 5% 80px;
  position: relative;
  overflow: hidden;
}

.project-page-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.project-page-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}

.project-page-content p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 650px;
}

.project-page-section {
  background: var(--off-white);
}

.project-page-grid .project-card {
  background: var(--white);
}

.project-card.is-hidden {
  display: none !important;
}

.project-empty-filter {
  grid-column: 1 / -1;
  width: 100%;
  padding: 36px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(13,27,110,0.08);
  color: var(--gray);
  text-align: center;
  font-weight: 700;
}

/* SMOOTH PROJECT CARD HOVER - MATCH BLOG CARD */
.project-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(13,27,110,0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease;
  will-change: transform;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(13,27,110,0.13);
}

.project-card .project-thumb {
  transition: transform 0.4s ease;
}

.project-card:hover .project-thumb {
  transform: scale(1.03);
}

.project-card .project-info h3,
.project-card .project-info p,
.project-card .tag {
  transition: color 0.25s ease, background 0.25s ease;
}

/* AGAR REVEAL TIDAK CRASH */
.project-card.reveal.visible {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease;
}

.blog-card.reveal.visible {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease;
}

/* SCROLL NAVBAR */
.nav-links a.nav-active {
  color: var(--gold) !important;
}

.nav-links a.nav-active::after {
  width: 100%;
}

.nav-links a.nav-cta.nav-active {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

/* SERVICE DETAIL PAGE */
.service-detail-hero {
  min-height: 70vh;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #1e3a8a 100%);
  display: flex;
  align-items: center;
  padding: 130px 5% 80px;
  position: relative;
  overflow: hidden;
}

.service-detail-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.service-detail-icon {
  width: 78px;
  height: 78px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 26px;
  backdrop-filter: blur(20px);
}

.service-detail-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}

.service-detail-content p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 660px;
  margin-bottom: 38px;
}

.service-detail-section {
  background: var(--off-white);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.service-detail-main {
  background: var(--white);
  border: 1px solid rgba(13,27,110,0.07);
  border-radius: 24px;
  padding: 42px;
}

.service-detail-text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
  margin-top: 26px;
}

.service-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-side-card {
  background: var(--white);
  border: 1px solid rgba(13,27,110,0.07);
  border-radius: 22px;
  padding: 28px;
}

.service-side-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-side-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 22px;
}

.service-wa-btn {
  display: inline-flex;
  width: 100%;
  justify-content: center;
}

.service-info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-info-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(13,27,110,0.08);
}

.service-info-list div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-info-list span {
  font-size: 13px;
  color: var(--gray);
}

.service-info-list strong {
  font-size: 13px;
  color: var(--navy);
}

@media (max-width: 900px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
}

/* BLOG IMAGE FIX - PREVENT BROKEN / OVER-ZOOMED THUMBNAIL */
.blog-card .blog-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto !important;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
  background: #eef2ff;
  display: block !important;
}

.blog-card .blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.blog-card .blog-category-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 5;
}

.blog-card .thumb-label {
  display: none !important;
}

/* FIX BLOG PAGE IMAGE LAYOUT */
.blog-list-section {
  background: var(--off-white);
  padding: 110px 5%;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.blog-card {
  background: var(--white);
  border: 1px solid rgba(13,27,110,0.08);
  border-radius: 28px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(13,27,110,0.13);
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.blog-card .blog-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto !important;
  max-height: none !important;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
  background: #eef2ff;
}

.blog-card .blog-thumb img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.blog-thumb-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  background: #eef2ff;
}

.blog-category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(8px);
}

.badge-berita {
  background: #E4B42D;
  color: #14206f;
}

.badge-company {
  background: #22c55e;
  color: #ffffff;
}

.badge-insight {
  background: #7c3aed;
  color: #ffffff;
}

.badge-update {
  background: #06b6d4;
  color: #ffffff;
}

.badge-security {
  background: #ef4444;
  color: #ffffff;
}

.badge-default {
  background: #1e3a8a;
  color: #ffffff;
}

.blog-info {
  padding: 28px;
}

.blog-info h3 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.35;
  margin-bottom: 12px;
}

.blog-info p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.75;
}

.blog-date {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.blog-info .arrow {
  display: inline-flex;
  margin-top: 22px;
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
}

.blog-card .thumb-label {
  display: none !important;
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-list-section {
    padding: 80px 5%;
  }
}

/* BLOG DETAIL PAGE FIX */
.blog-detail-hero {
  min-height: 56vh;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #1e3a8a 100%);
  display: flex;
  align-items: center;
  padding: 135px 5% 80px;
  position: relative;
  overflow: hidden;
}

.blog-detail-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.blog-detail-badge {
  position: static !important;
  margin-bottom: 24px;
}

.blog-detail-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.2vw, 76px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}

.blog-detail-hero-content p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.74);
  max-width: 720px;
}

.blog-detail-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-detail-section {
  background: var(--off-white);
  padding: 90px 5%;
}

.blog-detail-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) 360px;
  gap: 42px;
  align-items: start;
}

.blog-detail-main {
  background: var(--white);
  border: 1px solid rgba(13,27,110,0.07);
  border-radius: 28px;
  padding: 34px;
  overflow: hidden;
}

.blog-detail-image-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 520px;
  border-radius: 22px;
  overflow: hidden;
  background: #eef2ff;
  margin-bottom: 26px;
}

.blog-detail-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  display: block;
}

.blog-detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 34px;
}

.blog-detail-gallery-item {
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #eef2ff;
  border: 1px solid rgba(13,27,110,0.08);
}

.blog-detail-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.blog-detail-article {
  font-size: 17px;
  line-height: 1.95;
  color: var(--text);
}

.blog-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 110px;
}

.blog-side-card {
  background: var(--white);
  border: 1px solid rgba(13,27,110,0.07);
  border-radius: 24px;
  padding: 28px;
}

.blog-side-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 23px;
  color: var(--navy);
  margin-bottom: 14px;
}

.blog-side-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray);
  margin-bottom: 22px;
}

.blog-info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.blog-info-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(13,27,110,0.08);
  padding-bottom: 14px;
}

.blog-info-list div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.blog-info-list span {
  font-size: 13px;
  color: var(--gray);
}

.blog-info-list strong {
  font-size: 13px;
  color: var(--navy);
  text-align: right;
}

.blog-wa-btn {
  width: 100%;
  display: inline-flex;
  justify-content: center;
}

/* Override agar gambar detail blog tidak pernah membesar liar */
.blog-detail-main img {
  max-width: 100%;
}

/* Kategori badge warna */
.badge-berita {
  background: #E4B42D;
  color: #14206f;
}

.badge-company {
  background: #22c55e;
  color: #ffffff;
}

.badge-insight {
  background: #7c3aed;
  color: #ffffff;
}

.badge-update {
  background: #06b6d4;
  color: #ffffff;
}

.badge-security {
  background: #ef4444;
  color: #ffffff;
}

.badge-default {
  background: #1e3a8a;
  color: #ffffff;
}

@media (max-width: 1000px) {
  .blog-detail-container {
    grid-template-columns: 1fr;
  }

  .blog-detail-sidebar {
    position: static;
  }
}

@media (max-width: 700px) {
  .blog-detail-hero {
    padding: 120px 5% 70px;
  }

  .blog-detail-section {
    padding: 70px 5%;
  }

  .blog-detail-main {
    padding: 22px;
  }

  .blog-detail-gallery {
    grid-template-columns: 1fr;
  }
}

/* CLIENT LOGO SECTION */
.client-logo-section {
  background: var(--white);
  padding: 110px 5%;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.client-logo-card {
  height: 130px;
  border-radius: 22px;
  border: 1px solid rgba(13,27,110,0.08);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
}

.client-logo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(13,27,110,0.10);
  border-color: rgba(228,180,45,0.45);
}

.client-logo-card img {
  max-width: 100%;
  max-height: 74px;
  object-fit: contain;

  opacity: 0.72;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.client-logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.04);
}

@media (max-width: 1024px) {
  .client-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .client-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-logo-card {
    height: 110px;
    padding: 22px;
  }
}

/* =========================================================
   FIX SECTION SPACING - HOME PAGE
   Mengurangi jarak terlalu lebar antar section
========================================================= */

/* Section client logo jangan terlalu tinggi */
.client-logo-section {
  padding-top: 10px !important;
  padding-bottom: 70px !important;
}

/* Jarak grid logo ke section berikutnya */
.client-logo-grid {
  margin-top: 34px !important;
  margin-bottom: 0px !important;
}

/* Card logo jangan terlalu tinggi */
.client-logo-card {
  height: 115px !important;
}

/* Section contact jangan terlalu jauh dari client logo */
.contact-section,
#contact {
  padding-top: 10px !important;
}

/* Section blog preview jangan memberi jarak bawah terlalu besar */
.blog-preview,
#blog-preview {
  padding-bottom: 70px !important;
}

/* Tombol lihat semua artikel jangan membuat ruang kosong terlalu jauh */
.blog-preview .section-cta,
#blog-preview .section-cta {
  margin-top: 36px !important;
  margin-bottom: 0 !important;
}

/* Kalau tombol blog berada di container biasa */
.blog-preview .hero-buttons,
#blog-preview .hero-buttons {
  margin-top: 36px !important;
  margin-bottom: 0 !important;
}

/* FLOATING WHATSAPP */
.floating-whatsapp {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 24px 50px rgba(37, 211, 102, 0.45);
}

.wa-svg {
  width: 34px;
  height: 34px;
  fill: #ffffff;
  position: relative;
  z-index: 2;
}

.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.35);
  animation: waPulse 1.8s infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  70% {
    transform: scale(1.45);
    opacity: 0;
  }

  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

@media (max-width: 700px) {
  .floating-whatsapp {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
  }

  .wa-svg {
    width: 30px;
    height: 30px;
  }
}

/* CONTACT SUBMIT BUTTON - BHD STYLE */
.contact-submit-btn {
  width: 100%;
  border: none;
  outline: none;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: #1b2473;
  color: #ffffff;

  font-family: inherit;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.02em;

  padding: 18px 26px;
  border-radius: 16px;

  box-shadow: 0 16px 34px rgba(27, 36, 115, 0.22);
  transition: all 0.28s ease;
}

.contact-submit-btn:hover {
  background: #e4b42d;
  color: #10175c;
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(228, 180, 45, 0.28);
}

.contact-submit-btn:active {
  transform: translateY(-1px);
}

.contact-submit-arrow {
  font-size: 20px;
  line-height: 1;
  transition: transform 0.28s ease;
}

.contact-submit-btn:hover .contact-submit-arrow {
  transform: translateX(5px);
}

/* =========================================================
   BHD RESPONSIVE NAVBAR + HERO STATS FIX
========================================================= */

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* NAVBAR */
.bhd-navbar {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 9998;
  background: rgba(248, 249, 255, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 28px rgba(13, 27, 110, 0.08);
}

.bhd-nav-inner {
  width: min(100%, 1500px);
  margin: 0 auto;
  padding: 14px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.bhd-nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.bhd-nav-logo img {
  height: 58px;
  width: auto;
  display: block;
}

.bhd-nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  flex: 1;
}

.bhd-nav-links a,
.bhd-dropdown-toggle {
  position: relative;
  border: none;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  color: #11175f;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  padding: 10px 0;
}

.bhd-nav-links a::after,
.bhd-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: #e4b42d;
  transition: width 0.25s ease;
}

.bhd-nav-links a:hover::after,
.bhd-nav-links a.active::after,
.bhd-dropdown-toggle:hover::after {
  width: 100%;
}

.bhd-nav-links a:hover,
.bhd-nav-links a.active,
.bhd-dropdown-toggle:hover {
  color: #e4b42d;
}

.bhd-contact-btn {
  background: #1b2473 !important;
  color: #ffffff !important;
  padding: 14px 26px !important;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(27, 36, 115, 0.18);
}

.bhd-contact-btn::after {
  display: none !important;
}

.bhd-contact-btn:hover {
  background: #e4b42d !important;
  color: #11175f !important;
}

/* DROPDOWN */
.bhd-nav-dropdown {
  position: relative;
  padding: 14px 0;
}

.bhd-dropdown-menu {
  position: absolute;
  top: calc(100% - 4px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 230px;
  background: #ffffff;
  border: 1px solid rgba(13, 27, 110, 0.08);
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 22px 50px rgba(13, 27, 110, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s ease;
}

.bhd-nav-dropdown:hover .bhd-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.bhd-dropdown-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: #11175f;
  font-size: 14px;
}

.bhd-dropdown-menu a::after {
  display: none;
}

.bhd-dropdown-menu a:hover {
  background: #fff7dc;
  color: #11175f;
}

/* MOBILE TOGGLE */
.bhd-mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: #1b2473;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.bhd-mobile-toggle span {
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.bhd-mobile-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.bhd-mobile-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.bhd-mobile-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* HERO STAT FIX */
.hero-content,
.hero .hero-content {
  width: min(100%, 1500px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 64px;
  align-items: center;
}

.hero-stats-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hero-stat-card {
  min-height: 150px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.hero-stat-wide {
  grid-column: span 2;
}

.hero-stat-icon {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 14px;
}

.hero-stat-value {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
  color: #e4b42d;
}

.hero-stat-value span {
  font-size: 38px;
  margin-left: 2px;
}

.hero-stat-label {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 600;
}

/* SECTION WIDTH FIX */
section {
  max-width: 100%;
}

.about,
.about-section,
.services,
.projects,
.blog-preview,
.client-logo-section,
.contact-section {
  max-width: 100%;
  overflow: hidden;
}

.about-content,
.projects-header,
.service-grid,
.project-grid,
.blog-grid,
.client-logo-grid,
.contact-container {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  .bhd-nav-inner {
    padding: 12px 4%;
  }

  .bhd-nav-links {
    gap: 22px;
  }

  .bhd-nav-links a,
  .bhd-dropdown-toggle {
    font-size: 14px;
  }

  .bhd-contact-btn {
    padding: 12px 20px !important;
  }

  .hero-content,
  .hero .hero-content {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .hero-stats-grid {
    max-width: 720px;
  }
}

@media (max-width: 900px) {
  .bhd-nav-inner {
    position: relative;
  }

  .bhd-nav-logo img {
    height: 52px;
  }

  .bhd-mobile-toggle {
    display: inline-flex;
  }

  .bhd-nav-links {
    position: absolute;
    top: calc(100% + 12px);
    left: 4%;
    right: 4%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #ffffff;
    border: 1px solid rgba(13, 27, 110, 0.08);
    border-radius: 22px;
    padding: 16px;
    box-shadow: 0 24px 60px rgba(13, 27, 110, 0.16);
  }

  .bhd-nav-links.is-open {
    display: flex;
  }

  .bhd-nav-links a,
  .bhd-dropdown-toggle {
    width: 100%;
    text-align: left;
    padding: 13px 14px;
    border-radius: 12px;
  }

  .bhd-nav-links a::after,
  .bhd-dropdown-toggle::after {
    display: none;
  }

  .bhd-nav-links a:hover,
  .bhd-nav-links a.active,
  .bhd-dropdown-toggle:hover {
    background: #fff7dc;
    color: #11175f;
  }

  .bhd-contact-btn {
    text-align: center !important;
    margin-top: 8px;
  }

  .bhd-nav-dropdown {
    padding: 0;
  }

  .bhd-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    background: #f8f9ff;
    margin-top: 6px;
    display: none;
  }

  .bhd-nav-dropdown:hover .bhd-dropdown-menu {
    transform: none;
  }

  .bhd-nav-dropdown:hover .bhd-dropdown-menu,
  .bhd-nav-dropdown:focus-within .bhd-dropdown-menu {
    display: block;
  }

  .hero-stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-stat-wide {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .bhd-nav-logo img {
    height: 46px;
  }

  .hero {
    min-height: auto !important;
    padding-top: 90px !important;
    padding-bottom: 70px !important;
  }

  .hero-stats-grid {
    gap: 14px;
  }

  .hero-stat-card {
    min-height: 118px;
    padding: 22px;
  }

  .hero-stat-value {
    font-size: 38px;
  }

  .hero-stat-value span {
    font-size: 30px;
  }
}

/* =========================================================
   FINAL HERO FIX - BHD
   Memperbaiki hero text + hero stats agar kembali seperti mockup
========================================================= */

.hero {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 56px !important;
  padding: 110px 5% 70px !important;
  min-height: 100vh !important;
  position: relative !important;
  overflow: hidden !important;
}

.hero-content {
  position: relative !important;
  z-index: 2 !important;
  width: 45% !important;
  max-width: 620px !important;
  flex: 0 0 45% !important;
}

.hero-right {
  position: relative !important;
  z-index: 2 !important;
  width: 50% !important;
  flex: 1 !important;
  display: flex !important;
  justify-content: flex-end !important;
}

.hero-stats {
  width: min(100%, 520px) !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

.hero-stats .stat-card {
  min-height: 145px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
  background: rgba(255,255,255,0.08) !important;
  backdrop-filter: blur(10px) !important;
  padding: 26px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.hero-stats .stat-card-wide {
  grid-column: 1 / -1 !important;
}

.hero-stats .stat-icon {
  font-size: 28px !important;
  line-height: 1 !important;
  margin-bottom: 12px !important;
}

.hero-stats .stat-num {
  font-family: 'Playfair Display', serif !important;
  font-size: 42px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  color: var(--gold) !important;
}

.hero-stats .stat-label {
  margin-top: 8px !important;
  color: rgba(255,255,255,0.72) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
}

/* Matikan class percobaan sebelumnya jika masih terbaca */
.hero-stats-grid {
  display: none !important;
}

/* Responsive hero */
@media (max-width: 1050px) {
  .hero {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 44px !important;
    padding: 115px 5% 80px !important;
  }

  .hero-content {
    width: 100% !important;
    max-width: 760px !important;
    flex: none !important;
  }

  .hero-right {
    width: 100% !important;
    justify-content: flex-start !important;
  }

  .hero-stats {
    width: 100% !important;
    max-width: 760px !important;
  }
}

@media (max-width: 700px) {
  .hero {
    padding: 100px 5% 70px !important;
    gap: 34px !important;
  }

  .hero-badge {
    max-width: 100% !important;
    white-space: normal !important;
    line-height: 1.5 !important;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 68px) !important;
  }

  .hero p {
    font-size: 17px !important;
  }

  .hero-buttons {
    width: 100% !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .hero-buttons a {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .hero-stats {
    grid-template-columns: 1fr !important;
  }

  .hero-stats .stat-card,
  .hero-stats .stat-card-wide {
    grid-column: 1 / -1 !important;
    min-height: 120px !important;
  }

  .hero-stats .stat-num {
    font-size: 36px !important;
  }
}

/* =========================================================
   FINAL CLEAN FIX - BHD NAVBAR + HERO
   Menetralkan konflik CSS lama dan CSS baru
========================================================= */

/* Reset efek style global nav lama agar tidak merusak .bhd-navbar */
nav.bhd-navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: auto !important;
  padding: 0 !important;
  display: block !important;
  background: rgba(248, 249, 255, 0.96) !important;
  backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(13, 27, 110, 0.08) !important;
  box-shadow: 0 8px 28px rgba(13, 27, 110, 0.08) !important;
  z-index: 9998 !important;
}

.bhd-nav-inner {
  width: min(100%, 1500px) !important;
  margin: 0 auto !important;
  padding: 12px 5% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 28px !important;
}

.bhd-nav-logo img {
  height: 58px !important;
  width: auto !important;
  display: block !important;
}

.bhd-nav-links {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 30px !important;
  flex: 1 !important;
}

.bhd-nav-links a,
.bhd-dropdown-toggle {
  color: #11175f !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
}

.bhd-contact-btn {
  background: #1b2473 !important;
  color: #ffffff !important;
  padding: 14px 26px !important;
  border-radius: 10px !important;
}

.bhd-contact-btn:hover {
  background: #e4b42d !important;
  color: #11175f !important;
}

/* Hero kembali ke layout asli: kiri teks, kanan statistik */
.hero {
  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 56px !important;
  padding: 120px 5% 70px !important;
  position: relative !important;
  overflow: hidden !important;
}

.hero-content {
  position: relative !important;
  z-index: 2 !important;
  width: 46% !important;
  max-width: 620px !important;
  flex: 0 0 46% !important;
  display: block !important;
  margin: 0 !important;
}

.hero-right {
  position: relative !important;
  right: auto !important;
  top: auto !important;
  transform: none !important;
  width: 48% !important;
  max-width: 540px !important;
  flex: 0 0 48% !important;
  z-index: 2 !important;
  animation: none !important;
}

.hero-stats {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

.hero-stats .stat-card {
  min-height: 145px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
  background: rgba(255,255,255,0.08) !important;
  backdrop-filter: blur(10px) !important;
  padding: 26px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
}

.hero-stats .stat-card:first-child {
  grid-column: auto !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 0 !important;
}

.hero-stats .stat-card-wide {
  grid-column: 1 / -1 !important;
}

.hero-stats .stat-icon {
  font-size: 30px !important;
  line-height: 1 !important;
  margin-bottom: 14px !important;
}

.hero-stats .stat-num {
  font-family: 'Playfair Display', serif !important;
  font-size: 42px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  color: var(--gold) !important;
}

.hero-stats .stat-label {
  margin-top: 8px !important;
  color: rgba(255,255,255,0.72) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
}

/* Matikan class statistik percobaan sebelumnya */
.hero-stats-grid,
.hero-stat-card,
.hero-stat-icon,
.hero-stat-value,
.hero-stat-label {
  all: unset;
}

/* Responsive */
@media (max-width: 1050px) {
  .hero {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 44px !important;
    padding: 120px 5% 80px !important;
  }

  .hero-content {
    width: 100% !important;
    max-width: 760px !important;
    flex: none !important;
  }

  .hero-right {
    width: 100% !important;
    max-width: 760px !important;
    flex: none !important;
  }
}

@media (max-width: 900px) {
  .bhd-nav-inner {
    padding: 10px 4% !important;
  }

  .bhd-nav-logo img {
    height: 48px !important;
  }

  .bhd-mobile-toggle {
    display: inline-flex !important;
  }

  .bhd-nav-links {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 4% !important;
    right: 4% !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 4px !important;
    background: #ffffff !important;
    border: 1px solid rgba(13, 27, 110, 0.08) !important;
    border-radius: 22px !important;
    padding: 16px !important;
    box-shadow: 0 24px 60px rgba(13, 27, 110, 0.16) !important;
  }

  .bhd-nav-links.is-open {
    display: flex !important;
  }

  .bhd-nav-links a,
  .bhd-dropdown-toggle {
    width: 100% !important;
    text-align: left !important;
    padding: 13px 14px !important;
    border-radius: 12px !important;
  }

  .bhd-contact-btn {
    text-align: center !important;
    margin-top: 8px !important;
  }

  .bhd-dropdown-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    box-shadow: none !important;
    border: none !important;
    background: #f8f9ff !important;
    margin-top: 6px !important;
    display: none !important;
  }

  .bhd-nav-dropdown:hover .bhd-dropdown-menu,
  .bhd-nav-dropdown:focus-within .bhd-dropdown-menu {
    display: block !important;
  }
}

@media (max-width: 700px) {
  .hero {
    padding: 105px 5% 75px !important;
    gap: 34px !important;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 64px) !important;
  }

  .hero p {
    font-size: 16px !important;
    max-width: 100% !important;
  }

  .hero-badge {
    max-width: 100% !important;
    white-space: normal !important;
    line-height: 1.5 !important;
  }

  .hero-buttons {
    width: 100% !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .hero-buttons a {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .hero-stats {
    grid-template-columns: 1fr !important;
  }

  .hero-stats .stat-card,
  .hero-stats .stat-card-wide {
    grid-column: 1 / -1 !important;
    min-height: 120px !important;
  }

  .hero-stats .stat-num {
    font-size: 36px !important;
  }
}

/* PORTFOLIO DYNAMIC PROJECT */
.portfolio-item {
  display: block;
  text-decoration: none;
  color: inherit;
}

.portfolio-thumb {
  position: relative;
  overflow: hidden;
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.portfolio-thumb span {
  position: relative;
  z-index: 2;
}

.portfolio-empty {
  grid-column: 1 / -1;
  padding: 40px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(13,27,110,0.08);
  color: var(--gray);
  text-align: center;
  font-weight: 600;
}

/* PROJECT DETAIL GALLERY */
.project-gallery-detail {
  padding: 60px 0 20px;
}

.project-gallery-detail h2 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 54px);
  margin-bottom: 28px;
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.project-gallery-card {
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(13,27,110,0.08);
  box-shadow: 0 16px 35px rgba(13,27,110,0.08);
}

.project-gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.project-gallery-card p {
  padding: 16px 18px;
  color: var(--gray);
  font-weight: 600;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .project-gallery-grid {
    grid-template-columns: 1fr;
  }

  .project-gallery-card img {
    height: 260px;
  }
}

/* ADMIN PROJECT FORM - GALLERY SPACING FIX */
.project-gallery-admin {
    margin-top: 12px;
}

@media (min-width: 1024px) {
    .project-gallery-admin {
        margin-top: -70px;
    }
}

.project-gallery-admin .grid {
    align-items: stretch;
}

.project-gallery-admin input[type="text"],
.project-gallery-admin select {
    min-height: 48px;
}

.project-gallery-admin label {
    line-height: 1.4;
}

/* =========================================================
   PROJECT DETAIL - FEATURE, IMPACT, GALLERY FIX
========================================================= */

.project-detail-list-section {
  margin-top: 42px;
}

.project-detail-list-section h3 {
  margin-bottom: 18px;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
}

.project-detail-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.project-detail-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(13, 27, 110, 0.08);
  box-shadow: 0 12px 30px rgba(13, 27, 110, 0.06);
}

.project-detail-check {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
  font-size: 15px;
}

.project-detail-list-item p {
  margin: 0;
  color: #465066;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
}

/* PROJECT DETAIL GALLERY - 16:9 */
.project-gallery-detail {
  margin-top: 56px;
}

.project-gallery-title {
  margin-bottom: 28px !important;
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.project-gallery-card {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(13, 27, 110, 0.08);
  box-shadow: 0 18px 40px rgba(13, 27, 110, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.project-gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(13, 27, 110, 0.14);
}

.project-gallery-card a {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f3f5fb;
}

.project-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

.project-gallery-card:hover img {
  transform: scale(1.04);
}

.project-gallery-card p {
  margin: 0;
  padding: 16px 18px;
  color: #465066;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .project-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .project-gallery-grid {
    grid-template-columns: 1fr;
  }

  .project-detail-list-item {
    padding: 16px;
  }

  .project-detail-list-section h3 {
    font-size: 26px;
  }
}

/* =========================================================
   PROJECT DETAIL LAYOUT FIX
   Mengembalikan sidebar informasi project ke kanan pada desktop
========================================================= */

.service-detail-section {
  padding: 80px 5%;
  background: #f7f8ff;
}

.service-detail-grid {
  width: min(100%, 1500px);
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 380px !important;
  gap: 42px !important;
  align-items: start !important;
}

.service-detail-main {
  min-width: 0;
  width: 100%;
}

.service-detail-sidebar {
  width: 100%;
  min-width: 0;
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
  position: sticky;
  top: 120px;
  align-self: start;
}

.service-side-card {
  width: 100%;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(13, 27, 110, 0.08);
  box-shadow: 0 18px 45px rgba(13, 27, 110, 0.07);
  padding: 30px;
}

.service-side-card h3 {
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 18px;
}

.service-info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-info-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(13, 27, 110, 0.08);
}

.service-info-list div:last-child {
  border-bottom: none;
}

.service-info-list span {
  color: #8a92ad;
  font-weight: 600;
}

.service-info-list strong {
  color: var(--navy);
  font-weight: 800;
  text-align: right;
}

.service-wa-btn {
  width: 100%;
  justify-content: center;
  margin-top: 18px;
}

/* Gallery tetap di kolom kiri, tidak memaksa sidebar turun */
.project-gallery-detail {
  width: 100%;
  max-width: 100%;
}

/* Responsive: baru turun ke bawah di tablet/mobile */
@media (max-width: 1050px) {
  .service-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  .service-detail-sidebar {
    position: static;
    top: auto;
  }
}

/* =========================================================
   FINAL PROJECT DETAIL LAYOUT OVERRIDE
   Pastikan sidebar project kembali ke kanan di desktop
========================================================= */

body .service-detail-section {
  padding: 80px 5% !important;
  background: #f7f8ff !important;
}

body .service-detail-section > .service-detail-grid {
  width: min(100%, 1500px) !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 380px !important;
  gap: 42px !important;
  align-items: start !important;
}

body .service-detail-section > .service-detail-grid > .service-detail-main {
  min-width: 0 !important;
  width: 100% !important;
  background: #ffffff !important;
  border: 1px solid rgba(13, 27, 110, 0.07) !important;
  border-radius: 24px !important;
  padding: 42px !important;
}

body .service-detail-section > .service-detail-grid > .service-detail-sidebar {
  min-width: 0 !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
  position: sticky !important;
  top: 120px !important;
  align-self: start !important;
}

body .service-detail-section > .service-detail-grid > .service-detail-sidebar .service-side-card {
  width: 100% !important;
  background: #ffffff !important;
  border: 1px solid rgba(13, 27, 110, 0.08) !important;
  border-radius: 24px !important;
  padding: 30px !important;
  box-shadow: 0 18px 45px rgba(13, 27, 110, 0.07) !important;
}

body .service-detail-section > .service-detail-grid > .service-detail-sidebar .service-side-card h3 {
  color: var(--navy) !important;
  font-family: 'Playfair Display', serif !important;
  font-size: 28px !important;
  font-weight: 900 !important;
  margin-bottom: 18px !important;
}

body .service-detail-section > .service-detail-grid > .service-detail-sidebar .service-info-list div {
  display: flex !important;
  justify-content: space-between !important;
  gap: 18px !important;
  padding: 16px 0 !important;
  border-bottom: 1px solid rgba(13, 27, 110, 0.08) !important;
}

body .service-detail-section > .service-detail-grid > .service-detail-sidebar .service-info-list div:last-child {
  border-bottom: none !important;
}

body .service-detail-section > .service-detail-grid > .service-detail-sidebar .service-info-list span {
  color: #8a92ad !important;
  font-weight: 600 !important;
}

body .service-detail-section > .service-detail-grid > .service-detail-sidebar .service-info-list strong {
  color: var(--navy) !important;
  font-weight: 800 !important;
  text-align: right !important;
}

body .service-detail-section > .service-detail-grid > .service-detail-sidebar .service-wa-btn {
  width: 100% !important;
  justify-content: center !important;
  margin-top: 18px !important;
}

/* Gallery tetap rapi di kolom kiri */
body .service-detail-main .project-gallery-detail {
  width: 100% !important;
  max-width: 100% !important;
  margin-top: 56px !important;
  padding: 0 !important;
}

/* Responsive: sidebar turun hanya di layar kecil */
@media (max-width: 1050px) {
  body .service-detail-section > .service-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  body .service-detail-section > .service-detail-grid > .service-detail-sidebar {
    position: static !important;
    top: auto !important;
  }
}

@media (max-width: 700px) {
  body .service-detail-section {
    padding: 60px 5% !important;
  }

  body .service-detail-section > .service-detail-grid > .service-detail-main {
    padding: 24px !important;
  }
}

/* =========================================================
   FINAL CUSTOM CURSOR FIX - BHD
   Mengembalikan cursor custom agar tidak berubah jadi cursor bawaan
========================================================= */

body,
body *,
a,
button,
label,
input,
textarea,
select,
[role="button"],
.service-card,
.project-card,
.blog-card,
.portfolio-item,
.client-logo-card,
.tab-btn,
.btn-primary,
.btn-outline,
.contact-submit-btn,
.floating-whatsapp,
.bhd-nav-links a,
.bhd-dropdown-toggle,
.bhd-mobile-toggle,
.dropdown-item,
.dropdown-footer,
.social-btn {
  cursor: none !important;
}

.cursor,
.cursor-follower {
  pointer-events: none !important;
}

/* =========================================================
   CUSTOM CURSOR COLOR ON DARK / BLUE AREA
   Lingkaran cursor berubah kuning saat berada di area biru
========================================================= */

.cursor-follower {
  transition:
    transform 0.3s ease,
    width 0.3s ease,
    height 0.3s ease,
    border-color 0.2s ease,
    background 0.2s ease !important;
}

.cursor-follower.cursor-on-blue {
  border-color: var(--gold) !important;
  background: rgba(245, 184, 0, 0.06) !important;
}

.cursor.cursor-on-blue {
  background: var(--gold) !important;
}

/* =========================================================
   FOOTER SOCIAL LINKS FIX
   Instagram + LinkedIn, tidak tertutup floating WhatsApp
========================================================= */

.footer-bottom {
  padding-right: 105px !important;
}

.footer-social-links {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-right: 0 !important;
}

.footer-social-btn {
  width: 46px !important;
  height: 46px !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease !important;
}

.footer-social-btn:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  transform: translateY(-4px) !important;
}

.footer-social-icon {
  width: 22px !important;
  height: 22px !important;
  fill: rgba(255, 255, 255, 0.82) !important;
  transition: fill 0.25s ease !important;
}

.footer-social-btn:hover .footer-social-icon {
  fill: var(--navy) !important;
}

@media (max-width: 700px) {
  .footer-bottom {
    padding-right: 0 !important;
    padding-bottom: 86px !important;
    align-items: flex-start !important;
  }

  .footer-social-links {
    width: 100% !important;
    justify-content: flex-start !important;
  }
}

/* =========================================================
   ABOUT DYNAMIC SECTION FIX
========================================================= */

.about-visual .metric-card-wide {
  grid-column: 1 / -1;
}

.about-visual .metric-card {
  min-height: 155px;
}

.about-visual .metric-card .num {
  word-break: keep-all;
}

.about-list .about-item p {
  margin: 0;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 46px !important;
  }

  .about-visual {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .about-visual {
    grid-template-columns: 1fr;
  }

  .about-visual .metric-card,
  .about-visual .metric-card-wide {
    grid-column: 1 / -1;
  }
}

/* =========================================================
   ABOUT SECTION COMPACT FIX
   Mengurangi jarak paragraf ke checklist agar 4 checklist terlihat
========================================================= */

.about-section {
  padding-top: 82px !important;
  padding-bottom: 82px !important;
}

.about-section .section-title {
  margin-bottom: 20px !important;
}

.about-section .section-sub {
  margin-bottom: 24px !important;
  line-height: 1.65 !important;
}

.about-section .about-list {
  margin-top: 0 !important;
  gap: 12px !important;
}

.about-section .about-item {
  padding: 14px 20px !important;
  border-radius: 14px !important;
}

.about-section .about-item p {
  font-size: 15px !important;
  line-height: 1.55 !important;
  margin: 0 !important;
}

.about-section .about-item .check {
  width: 24px !important;
  height: 24px !important;
  font-size: 12px !important;
  margin-top: 0 !important;
}

/* Statistik kanan ikut sedikit dirapikan */
.about-section .metric-card {
  min-height: 135px !important;
  padding: 24px 20px !important;
}

.about-section .metric-card .num {
  font-size: 42px !important;
}

.about-section .metric-card .label {
  font-size: 13px !important;
}

/* Responsive */
@media (max-width: 900px) {
  .about-section {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }

  .about-section .about-grid {
    gap: 38px !important;
  }
}

#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background-color: #f5c400;
    z-index: 99999;
    transition: width 0.1s linear;
}

/* =========================================================
   NAVBAR CONTACT BUTTON SCROLL COLOR FIX
   Contact Us biru di atas, kuning ketika scroll
========================================================= */

/* Kondisi normal: tetap biru */
nav.bhd-navbar .bhd-contact-btn {
  background: #1b2473 !important;
  color: #ffffff !important;
  box-shadow: 0 12px 28px rgba(27, 36, 115, 0.18) !important;
}

/* Ketika navbar sudah discroll: berubah kuning logo */
nav.bhd-navbar.scrolled .bhd-contact-btn,
nav.bhd-navbar.is-scrolled .bhd-contact-btn {
  background: #f5b800 !important;
  color: #11175f !important;
  box-shadow: 0 14px 30px rgba(245, 184, 0, 0.28) !important;
}

/* Hover ketika sudah scroll: tetap kuning, jangan balik biru/putih */
nav.bhd-navbar.scrolled .bhd-contact-btn:hover,
nav.bhd-navbar.is-scrolled .bhd-contact-btn:hover {
  background: #f5b800 !important;
  color: #11175f !important;
  transform: translateY(-1px);
}

/* Hilangkan underline khusus tombol Contact Us */
nav.bhd-navbar .bhd-contact-btn::after {
  display: none !important;
}

/* =========================================================
   FINAL FIX - CONTACT US BUTTON COLOR ON SCROLL
========================================================= */

/* Normal: biru */
html body nav.bhd-navbar .bhd-contact-btn {
  background: #1b2473 !important;
  color: #ffffff !important;
  box-shadow: 0 12px 28px rgba(27, 36, 115, 0.18) !important;
}

/* Saat scroll: kuning logo */
html body nav.bhd-navbar.bhd-navbar-scrolled .bhd-contact-btn,
html body nav.bhd-navbar .bhd-contact-btn.bhd-contact-scrolled {
  background: #f5b800 !important;
  color: #11175f !important;
  box-shadow: 0 14px 30px rgba(245, 184, 0, 0.32) !important;
}

/* Hover saat scroll: tetap kuning */
html body nav.bhd-navbar.bhd-navbar-scrolled .bhd-contact-btn:hover,
html body nav.bhd-navbar .bhd-contact-btn.bhd-contact-scrolled:hover {
  background: #f5b800 !important;
  color: #11175f !important;
}

/* Pastikan tombol Contact Us tidak punya garis bawah */
html body nav.bhd-navbar .bhd-contact-btn::after {
  display: none !important;
}

/* =========================================================
   DETAIL TEXT JUSTIFY FIX
   Merapikan paragraf panjang pada detail Blog dan Project
========================================================= */

/* Deskripsi lengkap project */
.service-detail-text {
  text-align: justify !important;
  text-justify: inter-word !important;
  text-align-last: left !important;
  line-height: 1.9 !important;
}

/* Artikel/detail blog */
.blog-detail-article,
.blog-detail-article p,
.blog-detail-article div {
  text-align: justify !important;
  text-justify: inter-word !important;
  text-align-last: left !important;
  line-height: 1.95 !important;
}

/* Agar paragraf tetap punya jarak yang rapi */
.blog-detail-article p,
.service-detail-text p {
  margin-bottom: 22px !important;
}

/* Mobile: justify kadang membuat spasi terlalu renggang, jadi normal saja */
@media (max-width: 700px) {
  .service-detail-text,
  .blog-detail-article,
  .blog-detail-article p,
  .blog-detail-article div {
    text-align: left !important;
  }
}

/* =========================================================
   BLOG DETAIL IMAGE HOVER ZOOM
   Gambar detail blog membesar halus saat cursor mengarah
========================================================= */

.blog-detail-image-wrap {
  overflow: hidden !important;
}

.blog-detail-image {
  transition: transform 0.35s ease, filter 0.35s ease !important;
}

.blog-detail-image-wrap:hover .blog-detail-image {
  transform: scale(1.045) !important;
  filter: brightness(1.03) !important;
}

.blog-detail-gallery-item {
  overflow: hidden !important;
}

.blog-detail-gallery-item img {
  transition: transform 0.35s ease, filter 0.35s ease !important;
}

.blog-detail-gallery-item:hover img {
  transform: scale(1.07) !important;
  filter: brightness(1.04) !important;
}

/* =========================================================
   BLOG DETAIL IMAGE HOVER ZOOM
   Gambar detail blog membesar halus saat cursor mengarah
========================================================= */

.blog-detail-image-wrap {
  overflow: hidden !important;
}

.blog-detail-image {
  transition: transform 0.35s ease, filter 0.35s ease !important;
  will-change: transform;
}

.blog-detail-image-wrap:hover .blog-detail-image {
  transform: scale(1.045) !important;
  filter: brightness(1.03) !important;
}

.blog-detail-gallery-item {
  overflow: hidden !important;
}

.blog-detail-gallery-item img {
  transition: transform 0.35s ease, filter 0.35s ease !important;
  will-change: transform;
}

.blog-detail-gallery-item:hover img {
  transform: scale(1.07) !important;
  filter: brightness(1.04) !important;
}

/* Samakan feel hover semua card homepage dengan About */
.hero-stats .stat-card,
.service-card,
.project-card,
.blog-card,
.portfolio-item,
.client-logo-card {
  will-change: transform, background, box-shadow;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0) !important;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease !important;
}

/* Hover ringan seperti card About */
.hero-stats .stat-card:hover,
.service-card:hover,
.project-card:hover,
.blog-card:hover,
.portfolio-item:hover,
.client-logo-card:hover {
  transform: translate3d(0, -4px, 0) !important;
}

/* Hero stat card: jangan scale, jangan lompat */
.hero-stats .stat-card:hover {
  background: rgba(255, 255, 255, 0.10) !important;
  box-shadow: none !important;
}

/* Service card */
.service-card:hover {
  box-shadow: 0 18px 42px rgba(13, 27, 110, 0.11) !important;
  border-color: rgba(13, 27, 110, 0.06) !important;
}

/* Project card */
.project-card:hover {
  box-shadow: 0 18px 42px rgba(13, 27, 110, 0.12) !important;
}

/* Blog card */
.blog-card:hover {
  box-shadow: 0 18px 42px rgba(13, 27, 110, 0.12) !important;
}

/* Portfolio card */
.portfolio-item:hover {
  box-shadow: 0 18px 42px rgba(13, 27, 110, 0.13) !important;
}

/* Client logo */
.client-logo-card:hover {
  box-shadow: 0 16px 36px rgba(13, 27, 110, 0.10) !important;
}

/* Matikan pembesaran thumbnail yang terasa terlalu agresif */
.project-card:hover .project-thumb,
.blog-card:hover .blog-thumb,
.portfolio-item:hover .portfolio-thumb {
  transform: none !important;
}

/* Service icon tetap sedikit bergerak, tapi lebih halus */
.service-card:hover .service-icon {
  transform: translateY(-2px) !important;
  transition: transform 0.3s ease !important;
}

/* Pastikan cursor custom tetap aktif */
.hero-stats .stat-card,
.service-card,
.project-card,
.blog-card,
.portfolio-item,
.client-logo-card {
  cursor: none !important;
}

.hero-stats .stat-card {
  opacity: 0;
  transform: translateY(22px);
  animation: heroStatCardEnter 0.65s ease forwards;

  transition:
    transform 0.3s ease,
    background 0.2s ease !important;

  box-shadow: none !important;
  will-change: transform;
  backface-visibility: hidden;
}

/* Delay muncul satu per satu */
.hero-stats .stat-card:nth-child(1) {
  animation-delay: 0.22s;
}

.hero-stats .stat-card:nth-child(2) {
  animation-delay: 0.34s;
}

.hero-stats .stat-card:nth-child(3) {
  animation-delay: 0.46s;
}

.hero-stats .stat-card:nth-child(4) {
  animation-delay: 0.58s;
}

.hero-stats .stat-card:nth-child(5) {
  animation-delay: 0.70s;
}

/* Animasi saat halaman direfresh */
@keyframes heroStatCardEnter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover disamakan dengan card About */
.hero-stats .stat-card:hover {
  transform: translateY(-4px) !important;
  background: rgba(255, 255, 255, 0.10) !important;
  box-shadow: none !important;
}

/* Isi card tidak ikut lompat/scale */
.hero-stats .stat-icon,
.hero-stats .stat-num,
.hero-stats .stat-label,
.hero-stats .stat-card:hover .stat-icon,
.hero-stats .stat-card:hover .stat-num,
.hero-stats .stat-card:hover .stat-label {
  transform: none !important;
}

/* Tetap pakai custom cursor */
.hero-stats .stat-card {
  cursor: none !important;
}

/* =========================================================
   HERO STAT CARD CLEAN FINAL
   Refresh animation tetap ada, hover sama seperti About
========================================================= */

/* Card Home muncul saat refresh tanpa memakai transform */
.hero-stats .stat-card {
  opacity: 0;
  filter: blur(8px);
  animation: heroStatFadeIn 0.7s ease forwards;

  transition:
    transform 0.3s ease,
    background 0.2s ease !important;

  box-shadow: none !important;
  will-change: opacity, filter, transform;
  backface-visibility: hidden;
  cursor: none !important;
}

/* Delay muncul satu per satu */
.hero-stats .stat-card:nth-child(1) {
  animation-delay: 0.20s;
}

.hero-stats .stat-card:nth-child(2) {
  animation-delay: 0.32s;
}

.hero-stats .stat-card:nth-child(3) {
  animation-delay: 0.44s;
}

.hero-stats .stat-card:nth-child(4) {
  animation-delay: 0.56s;
}

.hero-stats .stat-card:nth-child(5) {
  animation-delay: 0.68s;
}

/* Animasi refresh: fade + blur, tanpa translate/scale */
@keyframes heroStatFadeIn {
  from {
    opacity: 0;
    filter: blur(8px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}

/* Hover Home disamakan dengan About */
.hero-stats .stat-card:hover {
  transform: translateY(-4px) !important;
  background: rgba(255, 255, 255, 0.10) !important;
  box-shadow: none !important;
}

/* Isi card tidak punya animasi tambahan */
.hero-stats .stat-icon,
.hero-stats .stat-num,
.hero-stats .stat-label,
.hero-stats .stat-card:hover .stat-icon,
.hero-stats .stat-card:hover .stat-num,
.hero-stats .stat-card:hover .stat-label {
  animation: none !important;
  transform: none !important;
}

/* =========================================================
   PROJECT DETAIL EXTERNAL LINK
========================================================= */

.project-external-link {
  color: var(--navy) !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: color 0.25s ease, transform 0.25s ease !important;
}

.project-external-link:hover {
  color: var(--gold) !important;
  transform: translateX(3px) !important;
}

/* =========================================================
   PROJECT DETAIL GALLERY TOP - COMPACT VERSION
   Gallery lebih dekat ke gambar utama dan sudut tidak terlalu cekung
========================================================= */

.project-detail-gallery-top {
  margin: 18px 0 44px !important;
}

/* Jika gallery tepat setelah gambar utama, jaraknya dibuat lebih dekat */
.service-detail-image-wrap + .project-detail-gallery-top {
  margin-top: 18px !important;
}

.project-detail-gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

.project-detail-gallery-card {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: 0 12px 34px rgba(13, 27, 110, 0.09) !important;
}

.project-detail-gallery-card img {
  width: 100% !important;
  aspect-ratio: 16 / 10 !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 14px !important;
  transition: transform 0.4s ease, filter 0.4s ease !important;
}

.project-detail-gallery-card:hover img {
  transform: scale(1.045) !important;
  filter: brightness(1.04) !important;
}

.project-detail-gallery-caption {
  padding: 12px 14px !important;
  color: var(--navy) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  background: #fff !important;
}

@media (max-width: 900px) {
  .project-detail-gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .project-detail-gallery-top {
    margin: 16px 0 36px !important;
  }
}

/* =========================================================
   MOBILE JUSTIFY FIX - PROJECT & BLOG DETAIL
   Teks detail project dan blog tetap justify di layar kecil
========================================================= */

.service-detail-text,
.service-detail-text p,
.service-detail-text div,
.blog-detail-article,
.blog-detail-article p,
.blog-detail-article div {
  text-align: justify !important;
  text-justify: inter-word !important;
  text-align-last: left !important;
}

/* Override khusus mobile jika sebelumnya pernah dibuat rata kiri */
@media (max-width: 700px) {
  .service-detail-text,
  .service-detail-text p,
  .service-detail-text div,
  .blog-detail-article,
  .blog-detail-article p,
  .blog-detail-article div {
    text-align: justify !important;
    text-justify: inter-word !important;
    text-align-last: left !important;
  }
}