﻿/*
  Alfasolusindo Global Theme
  Version: 20260525g
  Purpose: Centralized styling for all mirrored pages.
*/

:root {
  --primary: #0a76da;
  --primary-hover: #075da9;
  --accent: #10b981;
  --heading: #0f172a;
  --text: #334155;
  --text-muted: #64748b;
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-2: #f1f5f9;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --dark: #0b1428;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 22px 50px rgba(15, 23, 42, 0.14);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --ease: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

#wdc-wrapper {
  background: var(--bg);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: var(--heading);
  font-family: "Montserrat", "Open Sans", sans-serif;
  letter-spacing: -0.02em;
}

a {
  transition: color var(--ease), background-color var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

a:hover,
a:focus {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Topbar */
#topbar-wrapper {
  background: #f4f9ff;
  color: var(--text);
  padding: 0;
  border-bottom: 1px solid var(--border);
}

#topbar-wrapper .topbar-left,
#topbar-wrapper .topbar-right {
  min-height: 38px;
  display: flex;
  align-items: center;
}

#topbar-wrapper .topbar-left ul,
#topbar-wrapper .topbar-right ul {
  margin: 0;
}

#topbar-wrapper .topbar-left li {
  display: inline-flex;
  align-items: center;
  margin-right: 18px;
}

#topbar-wrapper .topbar-hightlight {
  color: var(--heading);
  font-size: 14px;
  font-weight: 600;
}

#topbar-wrapper .topbar-label {
  color: var(--primary);
  margin-right: 7px;
}

#topbar-wrapper .wdc-social a {
  color: var(--text-muted);
  font-size: 15px;
  padding: 0 7px;
}

#topbar-wrapper .wdc-social a:hover {
  color: var(--primary);
}

/* Header middle */
#header {
  background: var(--surface);
}

#header-wrapper {
  background: var(--surface);
  border-bottom: 0;
}

#header-wrapper .header-container {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.header-logo .wdc-logo img {
  max-height: 58px;
  width: auto;
}

.header-right {
  display: flex;
  align-items: center;
}

.header-top {
  display: flex;
  align-items: center;
}

.header-left-info {
  display: none;
}

.header-button,
a.header-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--primary), #1495ff);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(10, 118, 218, 0.3);
}

.header-button:hover,
a.header-button:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-hover), var(--primary));
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(10, 118, 218, 0.34);
}

/* Navigation */
#nav-wrapper.header-stick,
#nav-wrapper.affix {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

#nav-wrapper .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  gap: 12px;
}

#primary-nav {
  flex: 1 1 auto;
  min-width: 0;
}

ul#primary-menu,
ul.primary-menu {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
}

ul#primary-menu > li,
ul.primary-menu > li {
  float: none;
  margin-right: 0;
}

ul#primary-menu > li > a,
ul.primary-menu > li > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  white-space: nowrap;
  padding: 0 14px;
  color: var(--heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

ul#primary-menu > li > a::after,
ul.primary-menu > li > a::after {
  border-bottom-color: var(--primary);
  border-bottom-width: 2px;
  bottom: 0;
}

ul#primary-menu > li:hover > a,
ul.primary-menu > li:hover > a,
ul#primary-menu > li.current-menu-item > a,
ul.primary-menu > li.current-menu-item > a,
ul#primary-menu > li.current-menu-parent > a,
ul.primary-menu > li.current-menu-parent > a {
  color: var(--primary);
}

ul#primary-menu ul,
ul.primary-menu ul {
  margin-top: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  background: #ffffff;
  min-width: 240px;
}

ul#primary-menu ul li,
ul.primary-menu ul li {
  line-height: normal;
}

ul#primary-menu ul li a,
ul.primary-menu ul li a {
  color: var(--heading);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
}

ul#primary-menu ul li a:hover,
ul.primary-menu ul li a:hover {
  background: var(--surface-2);
  color: var(--primary);
}

.header-search .search-icon {
  color: var(--text-muted);
  padding: 0 10px;
}

.header-search .search-icon:hover {
  color: var(--primary);
}

.header-search .search-form {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.header-search .search-form form input {
  padding: 12px 14px;
  font-size: 14px;
}

/* Mobile nav */
#toggle-mobile-menu {
  display: none;
  right: 0;
  top: auto;
  transform: none;
  width: 28px;
  height: 20px;
}

#mobile-container {
  left: 0;
  right: 0;
  top: 100%;
  border: 1px solid var(--border);
  border-top: 2px solid var(--primary);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: var(--shadow-md);
}

#mobile-menu {
  display: none;
}

.mobile-menu li a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--heading);
  border-bottom: 1px solid var(--surface-2);
}

.mobile-menu li a:hover,
.mobile-menu li > a.active {
  color: var(--primary);
  background: #f8fbff;
}

.mobile-menu .sub-menu {
  background: var(--surface-2);
}

/* Hero slider and section shells */
.vc_custom_1450139176121,
.vc_custom_1450139176121 .container,
.vc_custom_1450139176121 .row,
.vc_custom_1450139176121 .wpb_column,
.vc_custom_1450139176121 .vc_column-inner,
.vc_custom_1450139176121 .wpb_wrapper {
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.vc_custom_1450139176121 .container {
  width: 100% !important;
  max-width: 100% !important;
}

.vc_custom_1450139176121 {
  padding: 0 !important;
}

/* Force hero slider to break out from Bootstrap fixed container width */
.vc_custom_1450139176121 > .container {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.vc_custom_1450139176121 sr7-module#SR7_17_1 {
  position: relative;
  width: 100vw !important;
  max-width: 100vw !important;
  left: 50%;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
}

.vc_custom_1450139176121 sr7-module#SR7_17_1 > sr7-content {
  width: 100vw !important;
  left: 0 !important;
}

sr7-module {
  display: block;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
}

sr7-module.sr7-fallback-active sr7-bg {
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

sr7-module.sr7-fallback-active sr7-prl,
sr7-module.sr7-fallback-active .sr7-prl,
sr7-module.sr7-fallback-active .tp-loader,
sr7-module.sr7-fallback-active .rs-loader {
  display: none !important;
}

/* Generic section spacing */
.vc_custom_1480690325180,
.vc_custom_1477547929095,
.vc_custom_1471192270839,
.vc_custom_1479135457110 {
  padding-top: 84px !important;
  padding-bottom: 84px !important;
}

.vc_custom_1480755966064 {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* Heading block */
.wdc-heading .box-title {
  font-size: clamp(26px, 2.4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.wdc-heading .box-title::after {
  width: 52px;
  border-top-width: 3px;
  border-top-color: var(--primary);
  margin-top: 12px;
}

.wdc-heading .box-content {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

/* Icon boxes */
.wdc-iconbox.style-3 {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0 24px 30px;
  margin-top: 44px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.wdc-iconbox.style-3:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #bfdcff;
}

.wdc-iconbox.style-3 .box-icon {
  width: 84px;
  height: 84px;
  line-height: 84px;
  font-size: 36px;
  margin-top: -42px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #2ea8ff);
  box-shadow: 0 12px 26px rgba(10, 118, 218, 0.34);
}

.wdc-iconbox.style-3 .box-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.wdc-iconbox.style-3 .box-content {
  font-size: 14px;
  color: var(--text-muted);
}

.wdc-iconbox .box-link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #ecf5ff;
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wdc-iconbox .box-link a:hover {
  background: var(--primary);
  color: #ffffff;
}

/* Service cards */
.wdc-service .serviceHolder {
  margin-left: -10px;
  margin-right: -10px;
}

.wdc-service .post-item {
  padding: 10px !important;
  margin-bottom: 0 !important;
}

.wdc-service .service-container.style-2 {
  margin-bottom: 0 !important;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.wdc-service .service-container.style-2:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #b7dcff;
}

.wdc-service .service-container.style-2 .service-image {
  margin-bottom: 0;
  overflow: hidden;
}

.wdc-service .service-container.style-2 .service-image a::after {
  display: none;
}

.wdc-service .service-container.style-2 .service-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.wdc-service .service-container.style-2:hover .service-image img {
  transform: scale(1.04);
}

.wdc-service .service-container.style-2 .service-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.wdc-service .service-container.style-2 .service-content h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: none;
  line-height: 1.3;
}

.wdc-service .service-container.style-2 .service-content h4 a {
  color: var(--heading);
}

.wdc-service .service-container.style-2 .service-content h4 a:hover {
  color: var(--primary);
}

.wdc-service .service-container.style-2 .service-content > div:first-of-type {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.wdc-service .service-container.style-2 .service-link {
  margin-top: auto;
  display: block;
}

.wdc-service .service-container.style-2 .service-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 152px;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--primary), #1495ff);
  color: #ffffff !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(10, 118, 218, 0.25);
}

.wdc-service .service-container.style-2 .service-link a:hover {
  background: linear-gradient(135deg, var(--primary-hover), var(--primary));
  color: #ffffff !important;
  transform: translateY(-1px);
}

/* Core button components only */
.wdc-button.style-1,
.wdc-pricingbox .box-link a,
.more-link a,
.portfolio-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--primary), #1495ff);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.wdc-button.style-1:hover,
.wdc-pricingbox .box-link a:hover,
.more-link a:hover,
.portfolio-link a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-hover), var(--primary));
}

.wdc-button.style-2 {
  border-color: var(--primary);
  color: var(--primary);
  background: #ffffff;
  border-radius: 999px;
}

.wdc-button.style-2:hover {
  background: var(--primary);
  color: #ffffff;
}

/* Testimonials */
.wdc-testimonial-slider .testimonial-container {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
}

.wdc-testimonial-slider .testimonial-content {
  color: var(--text);
  font-size: 15px;
  line-height: 1.9;
}

.wdc-testimonial-slider .testimonial-meta h4 {
  font-size: 16px;
  font-weight: 800;
}

.wdc-testimonial-slider .testimonial-position {
  color: var(--text-muted);
}

/* Client logos */
.wdc-client-slider .client-container img {
  opacity: 0.65;
  filter: grayscale(1);
  transition: transform var(--ease), opacity var(--ease), filter var(--ease);
}

.wdc-client-slider .client-container:hover img {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.03);
}

/* Footer */
#footer {
  background: #091327;
  color: rgba(255, 255, 255, 0.76);
  border-top: 3px solid var(--primary);
}

#footer-wrapper {
  padding-top: 66px;
  padding-bottom: 44px;
}

#footer .widget-title {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#footer .widget-title::after {
  border-top-color: var(--primary);
}

#footer a {
  color: rgba(255, 255, 255, 0.78);
}

#footer a:hover {
  color: #ffffff;
}

#footer .wdc-social a {
  color: #7dc2ff;
}

#footer .wdc-social a:hover {
  color: #ffffff;
}

#copyright-wrapper {
  background: rgba(0, 0, 0, 0.26);
}

/* Forms */
input,
textarea,
select {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
}

input:focus,
textarea:focus,
select:focus {
  outline: none !important;
  border-color: #8ecbff !important;
  box-shadow: 0 0 0 3px rgba(10, 118, 218, 0.12) !important;
}

/* Sharedaddy fixes */
.sharedaddy .sd-content ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.sharedaddy .sd-content ul li {
  margin: 0 !important;
  float: none !important;
}

.sharedaddy .sd-content ul li::before {
  display: none !important;
}

.sharedaddy .sd-content ul li a.sd-button {
  box-shadow: none !important;
  border-radius: 999px !important;
  min-height: 36px;
}

/* Scroll reveal classes (enabled by JS only) */
.js-reveal-ready .reveal-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js-reveal-ready .reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1360px) {
  ul#primary-menu > li > a,
ul.primary-menu > li > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  white-space: nowrap;
  padding: 0 14px;
  color: var(--heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
}

@media (max-width: 1200px) {
  .header-button,
  a.header-button {
    padding: 10px 20px;
    font-size: 11px;
  }

  .wdc-service .service-container.style-2 .service-image img {
    height: 188px;
  }
}

@media (max-width: 991px) {
  #topbar-wrapper {
  background: #f4f9ff;
  color: var(--text);
  padding: 0;
  border-bottom: 1px solid var(--border);
}

  #topbar-wrapper .topbar-left,
  #topbar-wrapper .topbar-right {
    min-height: 32px;
  }

  #topbar-wrapper .topbar-hightlight {
    font-size: 12px;
  }

  #header-wrapper .header-container {
    min-height: 78px;
  }

  .header-logo .wdc-logo img {
    max-height: 50px;
  }

  .header-button,
  a.header-button {
    padding: 10px 16px;
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  #toggle-mobile-menu {
    display: block;
    position: relative;
  }

  #primary-nav {
    display: none;
  }

  .header-search {
    display: none;
  }

  .wdc-service .service-container.style-2 .service-content h4 {
    font-size: 19px;
  }
}

@media (max-width: 767px) {
  #topbar-wrapper .topbar-left ul {
    display: block;
  }

  #topbar-wrapper .topbar-left li {
    margin-right: 0;
    display: block;
    line-height: 1.4;
  }

  #topbar-wrapper .topbar-right {
    justify-content: flex-start;
    margin-top: 4px;
  }

  .header-top {
    gap: 10px;
  }

  .header-button,
  a.header-button {
    padding: 8px 12px;
    font-size: 9px;
  }

  .wdc-heading .box-content {
    font-size: 15px;
  }

  .wdc-service .post-item {
    padding: 8px !important;
  }

  .wdc-service .service-container.style-2 .service-image img {
    height: 182px;
  }

  .wdc-service .service-container.style-2 .service-content h4 {
    font-size: 18px;
  }

  .vc_custom_1480690325180,
  .vc_custom_1477547929095,
  .vc_custom_1471192270839,
  .vc_custom_1479135457110 {
    padding-top: 62px !important;
    padding-bottom: 62px !important;
  }
}

@media (max-width: 480px) {
  .header-logo .wdc-logo img {
    max-height: 44px;
  }

  .header-button,
  a.header-button {
    padding: 7px 10px;
    letter-spacing: 0.03em;
  }

  .wdc-service .service-container.style-2 .service-content {
    padding: 14px;
  }

  .wdc-service .service-container.style-2 .service-image img {
    height: 168px;
  }

  .wdc-iconbox.style-3 {
    padding: 0 16px 24px;
  }
}

