/* ============================================================
   Singham Multimedia - Design Tokens
   ============================================================ */
:root {
	--sg-red: #D91E24;
	--sg-red-dark: #A9151A;
	--sg-ink: #16171C;
	--sg-dark: #262B3D;
	--sg-bg: #FFFFFF;
	--sg-bg-soft: #F5F6F8;
	--sg-gray: #6B7076;
	--sg-border: #E8E9ED;
	--sg-radius: 14px;
	--sg-shadow: 0 10px 30px rgba(20, 20, 30, 0.08);
	--sg-font-head: 'Poppins', 'Segoe UI', sans-serif;
	--sg-font-body: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
}

.sg-hero, .sg-hero *,
.sg-layanan-grid, .sg-layanan-grid *,
.sg-portfolio-grid, .sg-portfolio-grid *,
.sg-logos, .sg-logos *,
.sg-wa-float, .sg-wa-float *,
.sg-btn, .sg-section-head {
	box-sizing: border-box;
}

.sg-section-head { font-family: var(--sg-font-head); }
.sg-btn {
	display: inline-flex;
	align-items: center;
	gap: .5em;
	font-family: var(--sg-font-body);
	font-weight: 600;
	font-size: 15px;
	padding: 13px 28px;
	border-radius: 999px;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
	border: 2px solid transparent;
}
.sg-btn--primary { background: var(--sg-red); color: #fff; box-shadow: 0 8px 20px rgba(217,30,36,.35); }
.sg-btn--primary:hover { background: var(--sg-red-dark); transform: translateY(-2px); color: #fff; }
.sg-btn--outline { border-color: rgba(255,255,255,.6); color: #fff; }
.sg-btn--outline:hover { background: rgba(255,255,255,.12); color: #fff; }
.sg-btn--dark { border-color: var(--sg-ink); color: var(--sg-ink); }
.sg-btn--dark:hover { background: var(--sg-ink); color: #fff; }

/* ============================================================
   Hero Parallax Slideshow
   ============================================================ */
.sg-hero {
	position: relative;
	height: min(64vh, 600px);
	min-height: 400px;
	overflow: hidden;
	background: var(--sg-ink);
}
.sg-hero__slides { position: absolute; inset: 0; }
.sg-hero__slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	opacity: 0;
	transform: scale(1.06);
	transition: opacity 1.4s ease, transform 8s ease;
}
.sg-hero__slide.is-active { opacity: 1; transform: scale(1); }
.sg-hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(10,10,14,.55) 0%, rgba(10,10,14,.35) 45%, rgba(10,10,14,.75) 100%);
}
.sg-hero__captions {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	align-items: center;
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 28px;
}
.sg-hero__caption {
	position: absolute;
	max-width: 680px;
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .8s ease .1s, transform .8s ease .1s;
	pointer-events: none;
}
.sg-hero__caption.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sg-hero__eyebrow {
	display: inline-block;
	color: #fff;
	background: var(--sg-red);
	font-family: var(--sg-font-body);
	font-weight: 700;
	font-size: 12.5px;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 999px;
	margin-bottom: 20px;
}
.sg-hero__title {
	font-family: var(--sg-font-head);
	font-weight: 700;
	font-size: clamp(26px, 3.6vw, 44px);
	line-height: 1.15;
	color: #fff;
	margin: 0 0 14px;
	text-wrap: balance;
}
.sg-hero__sub {
	font-family: var(--sg-font-body);
	font-size: clamp(14px, 1.4vw, 17px);
	color: rgba(255,255,255,.85);
	line-height: 1.6;
	margin: 0 0 24px;
	max-width: 520px;
}
.sg-hero__dots {
	position: absolute;
	z-index: 3;
	bottom: 26px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
}
.sg-hero__dot {
	width: 34px; height: 4px;
	background: rgba(255,255,255,.35);
	border: none;
	border-radius: 3px;
	cursor: pointer;
	padding: 0;
	transition: background .3s ease;
}
.sg-hero__dot.is-active { background: var(--sg-red); }
.sg-hero__scroll {
	position: absolute;
	right: 32px;
	bottom: 44px;
	z-index: 3;
	width: 26px;
	height: 42px;
	border: 2px solid rgba(255,255,255,.55);
	border-radius: 14px;
	display: none;
}
.sg-hero__scroll span {
	position: absolute;
	top: 7px; left: 50%;
	width: 4px; height: 8px;
	margin-left: -2px;
	background: #fff;
	border-radius: 2px;
	animation: sgScroll 1.6s infinite;
}
@keyframes sgScroll { 0%{ transform: translateY(0); opacity:1;} 70%{ transform: translateY(12px); opacity:0;} 100%{opacity:0;} }
@media (min-width: 900px) { .sg-hero__scroll { display: block; } }

@media (max-width: 782px) {
	.sg-hero { height: 62vh; min-height: 360px; }
	.sg-hero__slide { background-attachment: scroll; }
	.sg-hero__caption { position: absolute; max-width: 92%; }
}

@media (prefers-reduced-motion: reduce) {
	.sg-hero__slide, .sg-hero__caption { transition: opacity .4s ease; transform: none !important; }
	.sg-hero__scroll span { animation: none; }
}

/* ============================================================
   Page Header (breadcrumb) — untuk semua halaman selain Beranda
   ============================================================ */
.sg-pagehead {
	background: linear-gradient(135deg, var(--sg-ink) 0%, #2A2C35 100%);
	padding: 52px 0;
}
.sg-pagehead__inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 28px;
}
.sg-pagehead__title {
	font-family: var(--sg-font-head);
	font-weight: 700;
	font-size: clamp(24px, 3vw, 34px);
	color: #fff;
	margin: 0 0 10px;
}
.sg-breadcrumb {
	font-family: var(--sg-font-body);
	font-size: 13.5px;
	color: rgba(255,255,255,.6);
}
.sg-breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s ease; }
.sg-breadcrumb a:hover { color: var(--sg-red); }
.sg-breadcrumb__sep { margin: 0 8px; color: rgba(255,255,255,.35); }
.sg-breadcrumb__current { color: var(--sg-red); font-weight: 600; }

/* ============================================================
   Proses Kerja — flowchart
   ============================================================ */
.sg-process {
	display: grid;
	grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
	align-items: start;
	gap: 4px;
	max-width: 1080px;
	margin: 0 auto;
}
.sg-process__step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 8px; }
.sg-process__icon {
	width: 76px; height: 76px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--sg-red);
	display: flex; align-items: center; justify-content: center;
	color: var(--sg-red);
	flex-shrink: 0;
}
.sg-process__icon svg { width: 32px; height: 32px; }
.sg-process__step h3 {
	font-family: var(--sg-font-head);
	font-weight: 600;
	font-size: 15px;
	color: var(--sg-ink);
	margin: 16px 0 6px;
}
.sg-process__step p {
	font-family: var(--sg-font-body);
	font-size: 13px;
	line-height: 1.6;
	color: var(--sg-gray);
	margin: 0;
}
.sg-process__arrow {
	height: 76px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--sg-red);
	opacity: .45;
}
.sg-process__arrow svg { width: 22px; height: 22px; }
@media (max-width: 900px) {
	.sg-process { grid-template-columns: 1fr; gap: 0; max-width: 340px; }
	.sg-process__arrow { transform: rotate(90deg); height: 40px; }
	.sg-process__step { padding: 6px 8px; }
}

/* ============================================================
   Stats row
   ============================================================ */
.sg-stats { display: flex; gap: 40px; margin-top: 36px; flex-wrap: wrap; }
.sg-stats__item { display: flex; flex-direction: column; gap: 4px; }
.sg-stats__num { font-family: var(--sg-font-head); font-weight: 700; font-size: 26px; color: var(--sg-red); }
.sg-stats__label { font-family: var(--sg-font-body); font-size: 13.5px; color: var(--sg-gray); }

/* ============================================================
   Legalitas grid
   ============================================================ */
.sg-legal-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	max-width: 980px;
	margin: 0 auto;
}
.sg-legal-item {
	background: #fff;
	border: 1px solid var(--sg-border);
	border-radius: 12px;
	padding: 20px 24px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.sg-legal-item__label {
	font-family: var(--sg-font-body);
	font-size: 12.5px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--sg-red);
}
.sg-legal-item__value {
	font-family: var(--sg-font-body);
	font-size: 14.5px;
	color: var(--sg-ink);
	line-height: 1.5;
}
@media (max-width: 782px) { .sg-legal-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Kenapa Pilih Kami
   ============================================================ */
.sg-why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.sg-why-item {
	border-top: 3px solid var(--sg-red);
	padding: 26px 22px;
	background: var(--sg-bg-soft);
	border-radius: 0 0 12px 12px;
}
.sg-why-item__icon {
	width: 44px; height: 44px;
	border-radius: 12px;
	background: #fff;
	color: var(--sg-red);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}
.sg-why-item__icon svg { width: 22px; height: 22px; }
.sg-why-item h3 {
	font-family: var(--sg-font-head);
	font-weight: 600;
	font-size: 17px;
	color: var(--sg-ink);
	margin: 0 0 10px;
}
.sg-why-item p {
	font-family: var(--sg-font-body);
	font-size: 14px;
	line-height: 1.6;
	color: var(--sg-gray);
	margin: 0;
}
@media (max-width: 992px) { .sg-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sg-why-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Tipe & Spesifikasi Videotron
   ============================================================ */
.sg-spec-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
}
.sg-spec-card {
	background: #fff;
	border: 1px solid var(--sg-border);
	border-radius: var(--sg-radius);
	overflow: hidden;
}
.sg-spec-card__media {
	aspect-ratio: 16 / 9;
	background-size: cover;
	background-position: center;
}
.sg-spec-card__body { padding: 30px 32px 34px; }
.sg-spec-card__icon {
	width: 52px; height: 52px;
	border-radius: 14px;
	background: var(--sg-bg-soft);
	color: var(--sg-red);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: -56px 0 18px;
	position: relative;
	z-index: 1;
	border: 3px solid #fff;
}
.sg-spec-card__icon svg { width: 26px; height: 26px; }
.sg-spec-card h3 {
	font-family: var(--sg-font-head);
	font-size: 19px;
	font-weight: 700;
	color: var(--sg-ink);
	margin: 0 0 10px;
}
.sg-spec-card p {
	font-family: var(--sg-font-body);
	font-size: 14.5px;
	color: var(--sg-gray);
	line-height: 1.7;
	margin: 0 0 18px;
}
.sg-spec-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sg-spec-tag {
	font-family: var(--sg-font-body);
	font-size: 12.5px;
	font-weight: 700;
	color: var(--sg-ink);
	background: var(--sg-bg-soft);
	border: 1px solid var(--sg-border);
	border-radius: 999px;
	padding: 6px 14px;
}
.sg-spec-note {
	font-family: var(--sg-font-body);
	font-size: 13px;
	color: var(--sg-gray);
	text-align: center;
	margin: 22px 0 0;
}
@media (max-width: 782px) {
	.sg-spec-grid { grid-template-columns: 1fr; }
	.sg-spec-card { padding: 28px; }
}

/* ============================================================
   Layanan
   ============================================================ */
.sg-layanan-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.sg-layanan-card {
	background: var(--sg-bg);
	border: 1px solid var(--sg-border);
	border-radius: var(--sg-radius);
	padding: 34px 26px;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.sg-layanan-card:hover { transform: translateY(-6px); box-shadow: var(--sg-shadow); border-color: transparent; }
.sg-layanan-card__icon {
	width: 56px; height: 56px;
	color: var(--sg-red);
	margin-bottom: 20px;
}
.sg-layanan-card__icon svg { width: 100%; height: 100%; }
.sg-layanan-card__title {
	font-family: var(--sg-font-head);
	font-weight: 600;
	font-size: 19px;
	color: var(--sg-ink);
	margin: 0 0 10px;
}
.sg-layanan-card__desc {
	font-family: var(--sg-font-body);
	font-size: 14.5px;
	line-height: 1.6;
	color: var(--sg-gray);
	margin: 0;
}
@media (max-width: 992px) { .sg-layanan-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sg-layanan-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Layanan — detail rows (halaman Layanan)
   ============================================================ */
.sg-layanan-detail { display: flex; flex-direction: column; gap: 84px; }
.sg-layanan-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}
.sg-layanan-row.is-reverse .sg-layanan-row__media { order: 2; }
.sg-layanan-row.is-reverse .sg-layanan-row__body { order: 1; }
.sg-layanan-row__media {
	border-radius: var(--sg-radius);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	box-shadow: var(--sg-shadow);
}
.sg-layanan-row__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sg-layanan-row__icon { width: 48px; height: 48px; color: var(--sg-red); margin-bottom: 18px; }
.sg-layanan-row__icon svg { width: 100%; height: 100%; }
.sg-layanan-row__body h3 {
	font-family: var(--sg-font-head);
	font-weight: 700;
	font-size: 24px;
	color: var(--sg-ink);
	margin: 0 0 14px;
}
.sg-layanan-row__lead {
	font-family: var(--sg-font-body);
	font-weight: 600;
	font-size: 15.5px;
	color: var(--sg-red);
	margin: 0 0 12px;
}
.sg-layanan-row__body p {
	font-family: var(--sg-font-body);
	font-size: 14.5px;
	line-height: 1.7;
	color: var(--sg-gray);
	margin: 0 0 18px;
}
.sg-layanan-row__list { list-style: none; margin: 0; padding: 0; }
.sg-layanan-row__list li {
	font-family: var(--sg-font-body);
	font-size: 14px;
	color: var(--sg-ink);
	padding-left: 26px;
	position: relative;
	margin-bottom: 10px;
}
.sg-layanan-row__list li::before {
	content: "";
	position: absolute;
	left: 0; top: 6px;
	width: 14px; height: 14px;
	border-radius: 50%;
	background: var(--sg-red);
	opacity: .15;
}
.sg-layanan-row__list li::after {
	content: "";
	position: absolute;
	left: 4px; top: 10px;
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--sg-red);
}
@media (max-width: 782px) {
	.sg-layanan-detail { gap: 56px; }
	.sg-layanan-row, .sg-layanan-row.is-reverse { grid-template-columns: 1fr; gap: 26px; }
	.sg-layanan-row.is-reverse .sg-layanan-row__media,
	.sg-layanan-row.is-reverse .sg-layanan-row__body { order: initial; }
}

/* ============================================================
   Portfolio
   ============================================================ */
.sg-portfolio-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}
.sg-portfolio-card {
	position: relative;
	display: block;
	border-radius: var(--sg-radius);
	overflow: hidden;
	text-decoration: none;
	aspect-ratio: 4 / 5;
	background: var(--sg-ink);
}
.sg-portfolio-card__img {
	position: absolute; inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform .5s ease;
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	padding: 0;
	margin: 0;
	font: inherit;
	background-color: transparent;
	cursor: zoom-in;
}
.sg-portfolio-card:hover .sg-portfolio-card__img { transform: scale(1.08); }
.sg-portfolio-card::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(10,10,14,0) 35%, rgba(10,10,14,.88) 100%);
}
.sg-portfolio-card__body {
	position: absolute; left: 0; right: 0; bottom: 0;
	z-index: 2;
	padding: 20px;
	font-family: var(--sg-font-body);
}
.sg-portfolio-card__body h3 {
	font-family: var(--sg-font-head);
	color: #fff;
	font-size: 16.5px;
	font-weight: 600;
	margin: 8px 0 4px;
	line-height: 1.3;
}
.sg-portfolio-card__body h3 a { color: inherit; text-decoration: none; }
.sg-portfolio-card__body h3 a:hover { opacity: .85; }
.sg-portfolio-card__body p { color: rgba(255,255,255,.78); font-size: 13px; margin: 0; }
.sg-badge {
	display: inline-block;
	background: var(--sg-red);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 999px;
}
@media (max-width: 992px) { .sg-portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sg-portfolio-grid { grid-template-columns: 1fr 1fr; gap: 12px; } }

/* ---- Portfolio full gallery (album per kategori) ---- */
.sg-portfolio-grid--full { grid-template-columns: repeat(3, 1fr); }
.sg-portfolio-card--full {
	aspect-ratio: auto;
	background: var(--sg-bg);
	border: 1px solid var(--sg-border);
	box-shadow: 0 2px 10px rgba(20,20,30,.05);
	transition: box-shadow .25s ease, transform .25s ease;
}
.sg-portfolio-card--full:hover { box-shadow: 0 16px 34px rgba(20,20,30,.12); transform: translateY(-3px); }
.sg-portfolio-card--full .sg-portfolio-card__img {
	position: relative;
	aspect-ratio: 4 / 3;
	width: 100%;
	height: auto;
}
.sg-portfolio-card--full::after { display: none; }
.sg-portfolio-card__zoom-hint {
	position: absolute; inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: rgba(16,17,20,0);
	opacity: 0;
	transition: opacity .25s ease, background .25s ease;
}
.sg-portfolio-card__zoom-hint svg { width: 30px; height: 30px; filter: drop-shadow(0 2px 6px rgba(0,0,0,.5)); }
.sg-portfolio-card--full .sg-portfolio-card__img:hover .sg-portfolio-card__zoom-hint {
	opacity: 1;
	background: rgba(16,17,20,.32);
}
.sg-portfolio-card--full .sg-portfolio-card__body {
	position: static;
	padding: 18px 20px 22px;
	background: none;
}
.sg-portfolio-card--full .sg-portfolio-card__body h3 {
	font-size: 17.5px;
	font-weight: 700;
	margin: 8px 0 6px;
}
.sg-portfolio-card--full .sg-portfolio-card__body h3 a { color: var(--sg-ink); text-decoration: none; }
.sg-portfolio-card--full .sg-portfolio-card__body h3 a:hover { color: var(--sg-red); }
.sg-portfolio-card--full .sg-portfolio-card__lokasi { color: #52565D !important; font-weight: 600; font-size: 13.5px; margin-bottom: 8px !important; }
.sg-portfolio-card--full .sg-portfolio-card__spek { font-size: 13px; color: #5B5F66; line-height: 1.55; margin: 0; }
.sg-portfolio-card__badges { display: flex; gap: 6px; margin-bottom: 10px; }
.sg-badge--outline { background: var(--sg-bg-soft); color: var(--sg-ink); border: 1px solid var(--sg-border); }
.sg-portfolio-card[hidden] { display: none; }
.sg-portfolio-empty {
	text-align: center;
	font-family: var(--sg-font-body);
	color: var(--sg-gray);
	padding: 60px 0;
	margin: 0;
}
@media (max-width: 992px) { .sg-portfolio-grid--full { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sg-portfolio-grid--full { grid-template-columns: 1fr; } }

.sg-portfolio-section { margin-bottom: 64px; }
.sg-portfolio-section:last-child { margin-bottom: 0; }
.sg-portfolio-section__title {
	font-family: var(--sg-font-head);
	font-size: 22px;
	font-weight: 700;
	color: var(--sg-ink);
	margin: 0 0 28px;
	padding-left: 2px;
	border-left: 4px solid var(--sg-red);
	padding-left: 14px;
}
/* ---- Album kategori (cover grid + modal) ---- */
.sg-album-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.sg-album-card {
	position: relative;
	aspect-ratio: 4 / 3;
	border-radius: var(--sg-radius);
	overflow: hidden;
	border: 0;
	padding: 0;
	cursor: pointer;
	background-size: cover;
	background-position: center;
	box-shadow: 0 2px 10px rgba(20,20,30,.08);
	transition: box-shadow .25s ease, transform .25s ease;
}
.sg-album-card:hover { box-shadow: 0 16px 34px rgba(20,20,30,.18); transform: translateY(-3px); }
.sg-album-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10,10,14,0) 40%, rgba(10,10,14,.85) 100%);
}
.sg-album-card__body {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	padding: 16px 18px;
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.sg-album-card__name {
	font-family: var(--sg-font-head);
	font-weight: 700;
	font-size: 17px;
	color: #fff;
}
.sg-album-card__count {
	font-family: var(--sg-font-body);
	font-size: 12.5px;
	color: rgba(255,255,255,.8);
}
@media (max-width: 992px) { .sg-album-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .sg-album-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

.sg-album-modal {
	position: fixed;
	inset: 0;
	z-index: 9500;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px;
	opacity: 0;
	transition: opacity .25s ease;
}
.sg-album-modal[hidden] { display: none; }
.sg-album-modal.is-open { opacity: 1; }
.sg-album-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10,10,14,.72);
}
.sg-album-modal__panel {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1140px;
	max-height: 88vh;
	overflow-y: auto;
	background: var(--sg-bg);
	border-radius: var(--sg-radius);
	padding: 40px;
	transform: translateY(16px);
	transition: transform .25s ease;
}
.sg-album-modal.is-open .sg-album-modal__panel { transform: translateY(0); }
.sg-album-modal__close {
	position: sticky;
	top: 0;
	float: right;
	margin: -10px -10px 10px 10px;
	width: 40px; height: 40px;
	border-radius: 50%;
	border: 1px solid var(--sg-border);
	background: #fff;
	color: var(--sg-ink);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 2;
}
.sg-album-modal__close:hover { border-color: var(--sg-red); color: var(--sg-red); }
.sg-album-modal__close svg { width: 18px; height: 18px; }
.sg-album-panel .sg-portfolio-section__title { margin-top: 0; }
@media (max-width: 640px) {
	.sg-album-modal { padding: 14px; }
	.sg-album-modal__panel { padding: 24px 18px; }
}

/* ============================================================
   Client Logos Grid
   ============================================================ */
.sg-logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 36px 44px;
}
.sg-logos__item {
	flex: 0 0 auto;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sg-logos__item img {
	width: auto;
	height: auto;
	max-height: 100px;
	max-width: 220px;
	object-fit: contain;
}
@media (max-width: 782px) {
	.sg-logos { gap: 24px 28px; }
	.sg-logos__item { height: 70px; }
	.sg-logos__item img { max-height: 70px; max-width: 150px; }
}

/* ============================================================
   Utility bar (di atas header)
   ============================================================ */
body { margin: 0; }
.sg-utilitybar { background: var(--sg-ink); }
.sg-utilitybar__inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 9px 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	font-family: var(--sg-font-body);
	font-size: 12.5px;
}
.sg-utilitybar__left, .sg-utilitybar__right { display: flex; align-items: center; gap: 20px; }
.sg-utilitybar a { color: rgba(255,255,255,.75); text-decoration: none; transition: color .2s ease; }
.sg-utilitybar a:hover { color: #fff; }
.sg-utilitybar__right a {
	width: 22px; height: 22px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,.3);
	display: inline-flex; align-items: center; justify-content: center;
}
.sg-utilitybar__right a svg { width: 12px; height: 12px; }
@media (max-width: 680px) { .sg-utilitybar { display: none; } }

/* ============================================================
   Header — bar solid terpisah, tidak menempel di atas hero
   ============================================================ */
.sg-header {
	position: sticky;
	top: 0; left: 0; right: 0;
	z-index: 999;
	background: #fff;
	box-shadow: 0 2px 16px rgba(20,20,30,.06);
	padding: 16px 0;
}
.sg-header__inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.sg-header__logo { display: flex; align-items: center; gap: 14px; }
.sg-header__logo img { display: block; height: 62px; width: auto; flex-shrink: 0; }
.sg-header__brand {
	font-family: var(--sg-font-head);
	font-weight: 700;
	font-size: 16px;
	line-height: 1.28;
	letter-spacing: .015em;
	text-transform: uppercase;
	color: var(--sg-ink);
}
@media (max-width: 480px) {
	.sg-header__logo img { height: 44px; }
	.sg-header__brand { font-size: 13px; }
}

.sg-menu { list-style: none; display: flex; gap: 34px; margin: 0; padding: 0; }
.sg-menu a {
	font-family: var(--sg-font-body);
	font-weight: 600;
	font-size: 14.5px;
	color: var(--sg-ink);
	text-decoration: none;
	transition: color .2s ease;
}
.sg-menu a:hover { color: var(--sg-red); }

.sg-header__actions { display: flex; align-items: center; gap: 16px; }
.sg-header__cta { padding: 11px 22px; font-size: 14px; }
.sg-header__toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 34px; height: 34px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
}
.sg-header__toggle span { display: block; width: 100%; height: 2px; background: var(--sg-ink); border-radius: 2px; transition: all .3s ease; }
.sg-header__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sg-header__toggle.is-open span:nth-child(2) { opacity: 0; }
.sg-header__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
	.sg-header__nav {
		position: fixed;
		top: 0; right: -100%;
		width: min(320px, 84vw);
		height: 100vh;
		background: #fff;
		box-shadow: -10px 0 30px rgba(0,0,0,.15);
		padding: 100px 32px 32px;
		transition: right .35s ease;
	}
	.sg-header__nav.is-open { right: 0; }
	.sg-menu { flex-direction: column; gap: 22px; }
	.sg-menu a { color: var(--sg-ink); font-size: 16px; }
	.sg-header__toggle { display: flex; }
	.sg-header__cta { display: none; }
}

/* ============================================================
   Footer
   ============================================================ */
.sg-footer { background: var(--sg-dark); color: rgba(255,255,255,.65); padding: 72px 0 0; }
.sg-footer__inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 28px 48px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}
.sg-footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.sg-footer__logo { height: 52px; width: auto; filter: invert(1); border-radius: 6px; }
.sg-footer__brandname {
	font-family: var(--sg-font-head);
	font-weight: 700;
	font-size: 15px;
	line-height: 1.28;
	letter-spacing: .015em;
	text-transform: uppercase;
	color: #fff;
}
.sg-footer__col p { font-family: var(--sg-font-body); font-size: 13.5px; line-height: 1.7; }
.sg-footer__col h4 {
	font-family: var(--sg-font-head);
	color: #fff;
	font-size: 13.5px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	margin: 0 0 20px;
}
.sg-footer__col ul { list-style: none; margin: 0; padding: 0; }
.sg-footer__col ul li { margin-bottom: 12px; font-family: var(--sg-font-body); font-size: 13.5px; line-height: 1.5; }
.sg-footer__col ul li a { color: rgba(255,255,255,.65); text-decoration: none; transition: color .2s ease; }
.sg-footer__col ul li a:hover { color: var(--sg-red); }
.sg-footer__contact li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
.sg-footer__contact svg {
	width: 17px; height: 17px;
	flex-shrink: 0;
	margin-top: 1px;
	color: #fff;
}
.sg-footer__social { display: flex; gap: 12px; margin-top: 18px; }
.sg-footer__social a {
	width: 36px; height: 36px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,.2);
	display: flex; align-items: center; justify-content: center;
	color: #fff; text-decoration: none;
	transition: background .2s ease, border-color .2s ease;
}
.sg-footer__social a svg { width: 17px; height: 17px; }
.sg-footer__social a:hover { background: var(--sg-red); border-color: var(--sg-red); }
.sg-footer__bottom {
	border-top: 1px solid rgba(255,255,255,.1);
	padding: 22px 28px;
	text-align: center;
}
.sg-footer__bottom p { font-family: var(--sg-font-body); font-size: 13px; margin: 0; color: rgba(255,255,255,.45); }
@media (max-width: 900px) {
	.sg-footer__inner { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}
@media (max-width: 560px) {
	.sg-footer__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   WhatsApp Floating Button
   ============================================================ */
.sg-wa-float {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 9999;
	width: 58px; height: 58px;
	border-radius: 50%;
	background: #25D366;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 26px rgba(37,211,102,.45);
	transition: transform .2s ease;
}
.sg-wa-float:hover { transform: scale(1.08); color: #fff; }

/* ============================================================
   Scroll to top
   ============================================================ */
.sg-scrolltop {
	position: fixed;
	right: 26px;
	bottom: 22px;
	z-index: 9999;
	width: 44px; height: 44px;
	border-radius: 50%;
	border: 0;
	background: var(--sg-ink);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(20,20,30,.25);
	opacity: 0;
	transform: translateY(10px);
	pointer-events: none;
	transition: opacity .25s ease, transform .25s ease, background .2s ease;
}
.sg-scrolltop svg { width: 18px; height: 18px; }
.sg-scrolltop.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sg-scrolltop:hover { background: var(--sg-red); }
@media (max-width: 900px) {
	.sg-scrolltop { right: 18px; bottom: 88px; width: 40px; height: 40px; }
}

/* ============================================================
   Mobile Bottom Navigation (app-style, quick access)
   ============================================================ */
.sg-mobile-nav {
	display: none;
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 9998;
	background: #fff;
	box-shadow: 0 -6px 20px rgba(20,20,30,.1);
	align-items: flex-end;
	justify-content: space-around;
	padding: 6px 4px calc(6px + env(safe-area-inset-bottom));
}
.sg-mobile-nav__item {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
	padding: 6px 2px;
	font-family: var(--sg-font-body);
	font-size: 11px;
	font-weight: 600;
	color: var(--sg-gray);
	text-decoration: none;
	text-align: center;
}
.sg-mobile-nav__item svg { width: 22px; height: 22px; flex-shrink: 0; }
.sg-mobile-nav__item.is-active { color: var(--sg-red); }
.sg-mobile-nav__item--wa { position: relative; top: -16px; color: var(--sg-ink); }
.sg-mobile-nav__wa-circle {
	width: 50px; height: 50px;
	border-radius: 50%;
	background: #25D366;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 16px rgba(37,211,102,.45);
}
.sg-mobile-nav__wa-circle svg { width: 24px; height: 24px; }

@media (max-width: 900px) {
	.sg-mobile-nav { display: flex; }
	.sg-wa-float { display: none; }
	body { padding-bottom: 76px; }
}
@media (max-width: 380px) {
	.sg-mobile-nav__item { font-size: 10px; }
}

/* ============================================================
   Portfolio Lightbox (zoom + slide)
   ============================================================ */
.sg-lightbox {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: none;
	align-items: center;
	justify-content: center;
}
.sg-lightbox.is-open { display: flex; }
.sg-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10,10,14,.92);
}
.sg-lightbox__stage {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 70px 70px 90px;
}
.sg-lightbox__frame {
	max-width: 100%;
	max-height: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sg-lightbox__img {
	max-width: 100%;
	max-height: calc(100vh - 160px);
	object-fit: contain;
	cursor: zoom-in;
	transition: transform .3s ease;
	user-select: none;
	border-radius: 4px;
}
.sg-lightbox__img.is-zoomed { cursor: zoom-out; }
.sg-lightbox__close,
.sg-lightbox__prev,
.sg-lightbox__next {
	position: absolute;
	border: 0;
	background: rgba(255,255,255,.1);
	color: #fff;
	width: 46px; height: 46px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background .2s ease;
}
.sg-lightbox__close:hover,
.sg-lightbox__prev:hover,
.sg-lightbox__next:hover { background: rgba(255,255,255,.22); }
.sg-lightbox__close svg,
.sg-lightbox__prev svg,
.sg-lightbox__next svg { width: 20px; height: 20px; }
.sg-lightbox__close { top: 20px; right: 20px; }
.sg-lightbox__prev { left: 16px; top: 50%; transform: translateY(-50%); }
.sg-lightbox__next { right: 16px; top: 50%; transform: translateY(-50%); }
.sg-lightbox__toolbar {
	position: absolute;
	bottom: 22px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 14px;
	background: rgba(255,255,255,.1);
	padding: 8px 16px;
	border-radius: 999px;
}
.sg-lightbox__zoomin,
.sg-lightbox__zoomout {
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 20px;
	line-height: 1;
	width: 28px; height: 28px;
	cursor: pointer;
	font-family: var(--sg-font-body);
}
.sg-lightbox__counter {
	color: rgba(255,255,255,.85);
	font-family: var(--sg-font-body);
	font-size: 13px;
	min-width: 46px;
	text-align: center;
}
@media (max-width: 640px) {
	.sg-lightbox__stage { padding: 60px 20px 100px; }
	.sg-lightbox__prev { left: 6px; }
	.sg-lightbox__next { right: 6px; }
}

/* ============================================================
   Kontak
   ============================================================ */
.sg-kontak-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 48px;
	align-items: start;
}
.sg-kontak-info h3, .sg-kontak-form-card h3 {
	font-family: var(--sg-font-head);
	font-size: 22px;
	font-weight: 700;
	color: var(--sg-ink);
	margin: 0 0 14px;
}
.sg-kontak-info p {
	font-family: var(--sg-font-body);
	color: var(--sg-gray);
	font-size: 15px;
	line-height: 1.7;
	margin: 0 0 28px;
}
.sg-kontak-list {
	list-style: none;
	margin: 0 0 30px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.sg-kontak-list li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	font-family: var(--sg-font-body);
	font-size: 14.5px;
	color: var(--sg-ink);
	line-height: 1.5;
}
.sg-kontak-list svg { flex: none; width: 22px; height: 22px; color: var(--sg-red); margin-top: 2px; }
.sg-kontak-form-card {
	background: var(--sg-bg-soft);
	border: 1px solid var(--sg-border);
	border-radius: var(--sg-radius);
	padding: 36px;
}
.sg-contact-form p { margin: 0 0 18px; }
.sg-contact-form label {
	display: block;
	font-family: var(--sg-font-body);
	font-weight: 600;
	font-size: 13.5px;
	color: var(--sg-ink);
	margin-bottom: 7px;
}
.sg-contact-form input[type="text"],
.sg-contact-form input[type="email"],
.sg-contact-form input[type="tel"],
.sg-contact-form textarea {
	width: 100%;
	border: 1px solid var(--sg-border);
	border-radius: 10px;
	padding: 12px 14px;
	font-family: var(--sg-font-body);
	font-size: 14px;
	color: var(--sg-ink);
	background: #fff;
	transition: border-color .2s ease;
}
.sg-contact-form input:focus, .sg-contact-form textarea:focus { outline: none; border-color: var(--sg-red); }
.sg-contact-form textarea { min-height: 120px; resize: vertical; }
.sg-contact-form input[type="submit"] {
	background: var(--sg-red);
	color: #fff;
	border: 0;
	border-radius: 999px;
	padding: 13px 30px;
	font-family: var(--sg-font-body);
	font-weight: 700;
	font-size: 14.5px;
	cursor: pointer;
	transition: background .2s ease;
}
.sg-contact-form input[type="submit"]:hover { background: var(--sg-red-dark); }
.sg-contact-form .wpcf7-not-valid-tip { color: var(--sg-red); font-size: 12.5px; margin-top: 5px; }
.sg-contact-form .wpcf7-response-output { border-radius: 10px; margin-top: 16px; font-family: var(--sg-font-body); font-size: 13.5px; }
.sg-kontak-map { border-radius: var(--sg-radius); overflow: hidden; box-shadow: var(--sg-shadow); }
.sg-kontak-map iframe { width: 100%; height: 420px; display: block; }
@media (max-width: 900px) {
	.sg-kontak-grid { grid-template-columns: 1fr; gap: 36px; }
	.sg-kontak-form-card { padding: 26px; }
}
.sg-wa-float svg { width: 30px; height: 30px; }
