/* ==========================================================================
   STYLE.CSS - ICCRI NET LS-Pro CCQC Stylesheet
   Design: Forest Green header nav (ICCRI), Blue LS-Pro brand sections
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  /* ICCRI Color Tokens (identik dengan halaman lain) */
  --color-primary: #123524;
  --color-primary-light: #2e6f40;
  --color-secondary: #5c3e35;
  --color-accent: #d49a17;
  --color-accent-hover: #b8820e;
  --color-bg-light: #f5efe6;
  --color-bg-card: #ffffff;
  --color-border: #e2e8f0;
  --color-text-dark: #1f2937;
  --color-text-muted: #4b5563;
  --color-text-light: #ffffff;

  /* LS-Pro Brand Colors */
  --lspro-blue: #00397b;
  --lspro-blue-light: #4d74a3;
  --lspro-blue-soft: #e8f0fb;

  --container-max-width: 1200px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 20px rgba(18, 53, 36, 0.04);
  --shadow-lg: 0 20px 40px rgba(18, 53, 36, 0.08);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background-color: #fafaf9;
  line-height: 1.6;
}

*:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 12px 24px;
  z-index: 9999;
  font-weight: 700;
  border-radius: var(--border-radius-sm);
  transition: top 0.2s ease;
}
.skip-link:focus { top: 20px; }

a {
  color: var(--lspro-blue);
  text-decoration: none;
  transition: var(--transition-smooth);
}
a:hover { color: var(--lspro-blue-light); text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--border-radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-lspro {
  background-color: var(--lspro-blue);
  color: #ffffff;
}
.btn-lspro:hover {
  background-color: var(--lspro-blue-light);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,57,123,0.3);
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-primary);
}
.btn-accent:hover {
  background-color: var(--color-accent-hover);
  color: var(--color-primary);
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-outline-lspro {
  background-color: transparent;
  border-color: var(--lspro-blue);
  color: var(--lspro-blue);
}
.btn-outline-lspro:hover {
  background-color: var(--lspro-blue);
  color: #ffffff;
  text-decoration: none;
}

/* ---- Layout ---- */
.el-section { padding: 80px 0; }
.el-section.bg-alt { background-color: var(--color-bg-light); }
.el-section.bg-light { background-color: #ffffff; }
.el-section.bg-lspro { background-color: var(--lspro-blue); color: #ffffff; }
.el-section.bg-lspro-soft { background-color: var(--lspro-blue-soft); }

.el-container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 991px) {
  .el-section { padding: 60px 0; }
}

.section-header {
  margin-bottom: 50px;
  text-align: center;
}
.section-header.text-left { text-align: left; }

.section-header .subtitle {
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--lspro-blue);
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  display: block;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 850;
  color: var(--color-primary);
  line-height: 1.25;
}

.section-header h2.text-white { color: #ffffff; }

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--color-accent);
  margin: 15px auto 0;
  border-radius: 2px;
}

.section-header.text-left h2::after { margin-left: 0; }

.section-top-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --- Header / Navigation Styling --- */
.site-header {
  background-color: #ffffff;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.top-bar {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: 8px 0;
  font-size: 0.85rem;
  font-weight: 500;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  gap: 20px;
}

.top-bar-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-info a {
  color: var(--color-text-light);
}

.top-bar-info a:hover {
  color: var(--color-accent);
}

.logo-bar {
  background-color: #ffffff;
  padding: 15px 0;
}

.logo-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: clamp(40px, 5.5vw, 60px);
  width: auto;
  max-width: 100%;
  display: block;
}

.navigation-bar {
  background-color: #ffffff;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.navigation-bar-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.site-navigation {
  width: 100%;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 8px;
  width: 100%;
  justify-content: flex-start;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 12px 18px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.nav-link:hover, .nav-item:focus-within > .nav-link {
  color: var(--color-accent-hover);
  background-color: var(--color-bg-light);
}

.nav-item.current-menu-item > .nav-link {
  color: var(--color-accent-hover);
  background-color: rgba(212, 154, 23, 0.06);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-accent);
  border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
  min-width: 240px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  z-index: 100;
  padding: 8px 0;
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-dark);
}

.dropdown-link:hover {
  background-color: var(--color-bg-light);
  color: var(--color-primary-light);
  padding-left: 24px;
}

/* Hamburger Toggle for Mobile */
.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  font-size: 1.25rem;
  color: var(--color-primary);
  cursor: pointer;
  padding: 8px 12px;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.menu-toggle:hover {
  border-color: var(--color-primary);
  background-color: var(--color-bg-light);
}

@media (max-width: 991px) {
  .top-bar { display: none; }
  .menu-toggle { display: flex; }
  .logo-bar { border-bottom: 1px solid var(--color-border); }
  .navigation-bar { border: none; padding: 0; }

  .site-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--color-border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .site-navigation.is-active {
    max-height: 80vh;
    overflow-y: auto;
  }

  .nav-menu {
    flex-direction: column;
    padding: 20px;
    gap: 10px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--color-accent);
    margin-left: 15px;
    padding: 5px 0;
    background-color: var(--color-bg-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-item.dropdown-active .dropdown-menu {
    max-height: 200px;
  }
}
/* ---- Hero Section ---- */
.lspro-hero {
  background: linear-gradient(135deg, var(--lspro-blue) 0%, #001e42 100%);
  color: #ffffff;
  padding: 70px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lspro-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 25%, rgba(255,255,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.hero-lspro-logo {
  height: 90px;
  width: auto;
  border-radius: 12px;
  background: rgba(255,255,255,0.95);
  padding: 10px;
}

.hero-logo-divider {
  width: 2px;
  height: 60px;
  background: rgba(255,255,255,0.3);
}

.hero-iccri-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.15);
}

.lspro-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.lspro-hero .hero-tagline {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.65;
  max-width: 700px;
  margin: 0 auto 35px;
}

.hero-accred-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.hero-accred-badge i { color: var(--color-accent); font-size: 1.2rem; }

.hero-cta-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* ---- About Section ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 991px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 850;
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: 20px;
}

.about-content h2 span { color: var(--lspro-blue); }

.about-content p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.highlight-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.highlight-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--lspro-blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--lspro-blue);
  font-size: 1.1rem;
}

.highlight-text h4 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text-dark);
  margin-bottom: 3px;
}

.highlight-text p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.about-cert-card {
  background: #ffffff;
  border-radius: var(--border-radius-md);
  padding: 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  text-align: center;
}

.about-cert-card img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 20px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-border);
}

.cert-caption {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* ---- Gallery Section ---- */
.gallery-slider-wrapper {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  max-height: 480px;
  box-shadow: var(--shadow-lg);
}

.gallery-slide {
  display: none;
  position: relative;
}

.gallery-slide.is-active {
  display: block;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: scale(1.02); }
  to { opacity: 1; transform: scale(1); }
}

.gallery-slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #ffffff;
  padding: 30px 25px 20px;
  font-size: 0.95rem;
  font-weight: 600;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.gallery-dot.is-active {
  background: var(--lspro-blue);
  transform: scale(1.3);
}

/* ---- Services Grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

@media (max-width: 767px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service-card-lspro {
  background: #ffffff;
  border-radius: var(--border-radius-md);
  padding: 35px;
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--lspro-blue);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.service-card-lspro:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--color-accent);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--lspro-blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lspro-blue);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.service-card-lspro h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.service-card-lspro p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--lspro-blue);
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-link:hover { color: var(--lspro-blue-light); text-decoration: none; }

/* ---- Clients Section ---- */
.clients-section { padding: 60px 0; overflow: hidden; }

.clients-ticker {
  overflow: hidden;
  position: relative;
}

.clients-ticker::before,
.clients-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.clients-ticker::before {
  left: 0;
  background: linear-gradient(to right, #fafaf9, transparent);
}

.clients-ticker::after {
  right: 0;
  background: linear-gradient(to left, #fafaf9, transparent);
}

.clients-ticker-inner {
  display: flex;
  gap: 40px;
  align-items: center;
  width: max-content;
  animation: tickerScroll 28s linear infinite;
}

.clients-ticker-inner:hover {
  animation-play-state: paused;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 80px;
  background: #ffffff;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--color-border);
  padding: 12px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.client-logo-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--lspro-blue);
}

.client-logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ---- Contact Section ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}

@media (max-width: 991px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info-block h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 850;
  color: #ffffff;
  margin-bottom: 30px;
}

.contact-office {
  background: rgba(255,255,255,0.08);
  border-radius: var(--border-radius-md);
  padding: 25px;
  border: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 20px;
}

.contact-office h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}

.contact-detail-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

.contact-detail-row i {
  color: var(--color-accent);
  margin-top: 3px;
  width: 16px;
  flex-shrink: 0;
}

.contact-card-action {
  background: #ffffff;
  border-radius: var(--border-radius-md);
  padding: 35px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.contact-card-action h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 850;
  color: var(--lspro-blue);
  margin-bottom: 8px;
}

.contact-card-action p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 25px;
}

.btn-wa-lspro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 15px 30px;
  border-radius: var(--border-radius-sm);
  margin-bottom: 15px;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-wa-lspro:hover {
  background: #20ba56;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.btn-email-lspro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--lspro-blue);
  color: var(--lspro-blue);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 25px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-email-lspro:hover {
  background: var(--lspro-blue);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
}

.divider-dot {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
  margin: 8px 0;
}

/* ---- External CTA ---- */
.ext-cta-section {
  padding: 60px 0;
  text-align: center;
  background: var(--lspro-blue-soft);
}

.ext-cta-section h2 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 850;
  color: var(--lspro-blue);
  margin-bottom: 12px;
}

.ext-cta-section p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
  font-size: 0.9rem;
}

.site-footer h4 {
  font-family: var(--font-heading);
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}

.site-footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: var(--color-accent);
}

.footer-widgets {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 991px) {
  .footer-widgets { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 575px) {
  .footer-widgets { grid-template-columns: 1fr; }
}

.footer-widget ul { list-style: none; }
.footer-widget ul li { margin-bottom: 12px; }
.footer-widget ul li a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition-smooth);
}
.footer-widget ul li a:hover {
  color: var(--color-accent);
  text-decoration: none;
  padding-left: 4px;
}

.footer-info-col { display: flex; flex-direction: column; gap: 20px; }
.footer-info-logo img { height: 48px; width: auto; }
.footer-info-text { font-size: 0.85rem; opacity: 0.85; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  align-items: flex-start;
}

.footer-contact-item i { color: var(--color-accent); margin-top: 4px; }
.footer-contact-item span { flex: 1; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  font-size: 0.8rem;
  opacity: 0.8;
}

.footer-bottom-links { display: flex; gap: 20px; list-style: none; }
.footer-bottom-links a { color: rgba(255,255,255,0.7); }
.footer-bottom-links a:hover { color: var(--color-accent); }

@media (max-width: 767px) {
  .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}
