/* ============================================================
   site.css – Surya Abadi Printing
   Class names matched to index.html
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --blue-primary:   #1A3A8F;
  --blue-secondary: #2550C0;
  --blue-dark:      #0D2766;
  --blue-light:     #EEF2FF;
  --gold:           #FFD700;
  --gold-dark:      #E6B800;
  --text-main:      #1e2d4d;
  --text-muted:     #6B7280;
  --white:          #ffffff;
  --bg-light:       #F4F8FF;
  --radius:         14px;
  --shadow-sm:      0 2px 12px rgba(26,58,143,.08);
  --shadow-md:      0 8px 32px rgba(26,58,143,.14);
  --shadow-lg:      0 16px 48px rgba(26,58,143,.18);
  --transition:     0.3s ease;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--text-main);
  overflow-x: hidden;
}
a { text-decoration: none; }
img { max-width: 100%; }

/* ================================================================
   NAVBAR
   ================================================================ */
#mainNavbar {
  padding: .9rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  background: transparent;
}
#mainNavbar.scrolled {
  background: var(--white) !important;
  box-shadow: 0 2px 20px rgba(26,58,143,.12);
  padding: .5rem 0;
}

.brand-icon-wrap {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #fff;
}
#mainNavbar.scrolled .brand-icon-wrap {
  background: var(--blue-light);
  color: var(--blue-primary);
}
.brand-name-block { line-height: 1.15; }
.brand-name { display: block; font-size: .95rem; font-weight: 800; color: #fff; letter-spacing: .03em; }
.brand-sub  { display: block; font-size: .65rem; font-weight: 600; color: rgba(255,255,255,.7); letter-spacing: .12em; text-transform: uppercase; }
#mainNavbar.scrolled .brand-name { color: var(--blue-primary); }
#mainNavbar.scrolled .brand-sub  { color: var(--text-muted); }
.brand-logo { border-radius: 6px; }

#mainNavbar .nav-link {
  color: rgba(255,255,255,.9) !important;
  font-weight: 600;
  font-size: .92rem;
  padding: .45rem .1rem !important;
  margin: 0 .6rem;
  position: relative;
  transition: color var(--transition);
}
#mainNavbar.scrolled .nav-link { color: var(--text-main) !important; }
#mainNavbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width var(--transition);
}
#mainNavbar .nav-link:hover::after { width: 100%; }
#mainNavbar.scrolled .nav-link::after { background: var(--blue-secondary); }

.btn-cta-nav {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,.4);
  color: #fff !important;
  font-weight: 700;
  font-size: .88rem;
  padding: .48rem 1.25rem !important;
  border-radius: 50px;
  margin-left: .4rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-cta-nav:hover { background: rgba(255,255,255,.28); transform: translateY(-2px); }
#mainNavbar.scrolled .btn-cta-nav {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  color: #fff !important;
}
#mainNavbar.scrolled .btn-cta-nav:hover { background: var(--blue-dark); border-color: var(--blue-dark); }

/* ================================================================
   HERO V1 – Full Screen Overlay Carousel
   ================================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#heroCarousel,
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item { height: 100vh; }

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-default { position: relative; min-height: 100vh; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,39,102,.9) 0%, rgba(26,58,143,.78) 50%, rgba(37,80,192,.62) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 160px;
  padding-bottom: 80px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: .38rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.4rem;
  width: fit-content;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.1rem;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  max-width: 520px;
  line-height: 1.72;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

.btn-hero-primary {
  background: var(--gold);
  color: var(--blue-dark);
  font-weight: 800;
  font-size: .95rem;
  padding: .82rem 2.1rem;
  border-radius: 50px;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn-hero-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,215,0,.45);
  color: var(--blue-dark);
}

.btn-hero-outline {
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: .8rem 2rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.5);
  display: inline-flex;
  align-items: center;
  transition: background var(--transition), border-color var(--transition);
}
.btn-hero-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; color: #fff; }

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
  width: 46px; height: 46px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
  margin: 0 1.25rem;
  transition: background var(--transition);
}
.carousel-control-prev:hover,
.carousel-control-next:hover { background: rgba(255,255,255,.3); }
.carousel-control-prev-icon,
.carousel-control-next-icon { width: 18px; height: 18px; }

.hero-dots { bottom: 90px !important; }
.hero-dots [data-bs-target] {
  width: 8px !important; height: 8px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,.45) !important;
  border: 0 !important;
  transition: background .3s, transform .3s;
}
.hero-dots .active {
  background: var(--gold) !important;
  transform: scale(1.4);
}

/* Stats Bar */
.hero-stats-bar {
  position: relative;
  z-index: 3;
  background: rgba(13,39,102,.88);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: auto;
}
.stat-item {
  text-align: center;
  padding: 1.25rem .75rem;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,.15);
}
.stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .06em;
  display: block;
  margin-top: .3rem;
}

/* ================================================================
   SECTIONS COMMON
   ================================================================ */
.section-py { padding: 90px 0; }
.bg-light-site { background: var(--bg-light); }

.section-tag {
  display: inline-flex;
  align-items: center;
  background: var(--blue-light);
  color: var(--blue-secondary);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 50px;
  margin-bottom: .85rem;
}
.section-title {
  font-size: clamp(1.65rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.22;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.75;
  margin: 0 auto;
}
.section-text {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: .97rem;
}

/* ================================================================
   ABOUT
   ================================================================ */
.about-img-wrap { position: relative; }

.about-img-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--blue-light);
  min-height: 340px;
}
.about-img-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about-img-card.img-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 340px;
}

.about-badge {
  position: absolute;
  bottom: -20px; right: -16px;
  background: var(--blue-primary);
  color: #fff;
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 90px;
}
.ab-since {
  display: block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .75;
}
.ab-year {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
}

.about-highlights { margin-top: 1.25rem; }
.hl-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .5rem 0;
  font-weight: 600;
  font-size: .93rem;
  color: var(--text-main);
  border-bottom: 1px solid rgba(26,58,143,.07);
}
.hl-item:last-child { border-bottom: 0; }
.hl-item i { color: var(--blue-secondary); font-size: 1rem; flex-shrink: 0; }

/* ================================================================
   VISI & MISI
   ================================================================ */
.visimisi-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 100%);
}

.visi-box {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-top: 1.5rem;
}
.visi-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: .65rem;
}
.visi-box p { color: rgba(255,255,255,.88); line-height: 1.8; margin: 0; }

.misi-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.misi-list { display: flex; flex-direction: column; gap: .75rem; }
.misi-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 1rem 1.25rem;
}
.misi-num {
  min-width: 32px; height: 32px;
  background: var(--gold);
  color: var(--blue-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .85rem;
  flex-shrink: 0;
}
.misi-text { color: rgba(255,255,255,.88); line-height: 1.7; font-size: .95rem; }

/* ================================================================
   WHY
   ================================================================ */
.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,58,143,.06);
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 58px; height: 58px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.why-icon i { font-size: 1.5rem; color: var(--blue-primary); }
.why-title { font-size: 1rem; font-weight: 800; color: var(--text-main); margin-bottom: .6rem; }
.why-desc  { font-size: .9rem; color: var(--text-muted); line-height: 1.75; margin: 0; }

/* ================================================================
   SERVICES
   ================================================================ */
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,58,143,.06);
  height: 100%;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.svc-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 2;
  background: var(--blue-primary);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(26,58,143,.35);
}

.svc-img-wrap {
  height: 210px;
  overflow: hidden;
  background: var(--blue-light);
}
.svc-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.service-card:hover .svc-img-wrap img { transform: scale(1.05); }

.svc-img-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.svc-img-ph i { font-size: 3.5rem; color: var(--blue-secondary); opacity: .35; }

.svc-body { padding: 1.5rem; }
.svc-title    { font-size: 1.1rem; font-weight: 800; color: var(--text-main); margin-bottom: .4rem; }
.svc-subtitle { font-size: .82rem; font-weight: 600; color: var(--blue-secondary); margin-bottom: .65rem; }
.svc-desc     { font-size: .9rem; color: var(--text-muted); line-height: 1.75; margin: 0; }

.product-types-box {
  background: var(--blue-light);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  margin-top: 1rem;
}
.pt-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1.25rem;
}
.pt-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem .5rem;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(26,58,143,.08);
  gap: .5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pt-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.pt-item i    { font-size: 1.5rem; color: var(--blue-primary); }
.pt-item span { font-size: .78rem; font-weight: 600; color: var(--text-main); line-height: 1.35; }

/* ================================================================
   GALLERY
   ================================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--blue-light);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,39,102,.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-title { color: #fff; font-weight: 700; font-size: .88rem; display: block; }
.gallery-cat   { color: var(--gold); font-size: .75rem; font-weight: 600; display: block; margin-top: .2rem; }

/* ================================================================
   CLIENTS
   ================================================================ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.client-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,58,143,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.client-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.client-item img {
  max-height: 50px;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(1);
  transition: filter var(--transition);
}
.client-item:hover img { filter: grayscale(0); }
.client-name {
  font-weight: 700;
  font-size: .8rem;
  text-align: center;
  color: var(--text-main);
  line-height: 1.3;
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,58,143,.07);
  height: 100%;
}
.ct-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.ct-icon {
  width: 44px; height: 44px;
  background: var(--blue-light);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ct-icon i { font-size: 1.05rem; color: var(--blue-primary); }
.ct-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: .2rem;
}
.ct-val {
  font-weight: 600;
  color: var(--text-main);
  font-size: .93rem;
  line-height: 1.5;
}
.ct-val a { color: var(--text-main); transition: color var(--transition); }
.ct-val a:hover { color: var(--blue-secondary); }

.btn-wa-main {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: .93rem;
  padding: .82rem 1.75rem;
  border-radius: 50px;
  border: 0;
  box-shadow: 0 4px 18px rgba(37,211,102,.35);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-wa-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.48);
  color: #fff;
}

.map-ph {
  height: 390px;
  background: var(--bg-light);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border: 2px dashed rgba(26,58,143,.15);
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 100%);
  padding: 70px 0 0;
  color: rgba(255,255,255,.8);
}
.ft-brand-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: .03em;
}
.ft-brand-sub {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.ft-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-top: .25rem;
}

.ft-social { display: flex; gap: .55rem; margin-top: 1rem; }
.soc-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1rem;
  transition: background var(--transition), transform var(--transition);
}
.soc-icon:hover { background: rgba(255,255,255,.25); transform: translateY(-3px); }

.ft-heading {
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #fff;
  margin-bottom: 1rem;
}
.ft-links, .ft-contact {
  list-style: none;
  padding: 0; margin: 0;
}
.ft-links li { margin-bottom: .5rem; }
.ft-links li a {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  transition: color var(--transition), padding-left var(--transition);
}
.ft-links li a:hover { color: var(--gold); padding-left: .3rem; }
.ft-contact li {
  display: flex;
  gap: .6rem;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  margin-bottom: .6rem;
  line-height: 1.55;
}
.ft-contact li i { flex-shrink: 0; color: var(--gold); margin-top: .15rem; }

.ft-bottom {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
}
.ft-bottom p { margin: 0; font-size: .82rem; color: rgba(255,255,255,.5); }
.ft-area { font-size: .78rem !important; color: rgba(255,255,255,.4) !important; }

/* ================================================================
   FLOATING BUTTONS
   ================================================================ */
.wa-float {
  position: fixed;
  bottom: 88px; right: 24px;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 6px 22px rgba(37,211,102,.48);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover { transform: scale(1.1); color: #fff; }

.wa-tip {
  display: none;
  position: absolute;
  right: 66px;
  background: #1b7a42;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: .35rem .75rem;
  border-radius: 8px;
  white-space: nowrap;
}
.wa-float:hover .wa-tip { display: block; }

.back-top {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 998;
  width: 44px; height: 44px;
  background: var(--blue-primary);
  color: #fff;
  border: 0;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.back-top.show { opacity: 1; pointer-events: auto; }
.back-top:hover { transform: translateY(-3px); background: var(--blue-dark); }

/* ================================================================
   HALAMAN DEDICATED – Page Hero (Layanan & Galeri)
   ================================================================ */
.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 100%);
  padding-top: 80px; /* offset navbar */
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 0;
}
.page-breadcrumb { margin: 0; }
.page-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .85rem; }
.page-breadcrumb .breadcrumb-item a:hover { color: var(--gold); }
.page-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,.85); font-size: .85rem; }
.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.35); }
.page-hero-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(255,215,0,.15);
  border: 1px solid rgba(255,215,0,.3);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .28rem .85rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.page-hero-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.18;
  margin-bottom: .9rem;
}
.page-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  line-height: 1.75;
  margin: 0;
}

/* Active nav link pada halaman dedicated */
#mainNavbar .nav-link.active-page {
  color: var(--gold) !important;
}
#mainNavbar .nav-link.active-page::after {
  width: 100%;
  background: var(--gold);
}
#mainNavbar.scrolled .nav-link.active-page { color: var(--blue-secondary) !important; }
#mainNavbar.scrolled .nav-link.active-page::after { background: var(--blue-secondary); }

/* Gallery filter buttons */
.glr-filter {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
}
.glr-filter-btn {
  background: var(--blue-light);
  border: 1.5px solid transparent;
  color: var(--text-muted);
  font-size: .85rem;
  font-weight: 600;
  padding: .4rem 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.glr-filter-btn:hover { background: var(--blue-light); color: var(--blue-primary); border-color: var(--blue-primary); }
.glr-filter-btn.active { background: var(--blue-primary); color: #fff; border-color: var(--blue-primary); }

/* CTA section on dedicated pages */
.lyr-cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 100%);
}
.lyr-cta-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 991px) {
  .section-py { padding: 64px 0; }
  .hero-content { padding-top: 130px; padding-bottom: 60px; }
  .about-badge { bottom: 0; right: 0; }
  #mainNavbar .nav-link { margin: .15rem 0; }
  .btn-cta-nav { margin: .5rem 0 !important; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-title { font-size: 1.9rem; }
}

@media (max-width: 575px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .product-types-box { padding: 1.25rem; }
}

