/* ==========================================================================
   AE Shop Themes Custom Styles
   ========================================================================== */

*, *::before, *::after {
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
}

body {
	overflow-x: hidden;
	width: 100%;
	max-width: 100vw;
	margin: 0;
	padding: 0;
	font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
	background-color: #f8fafc;
	color: #0f172a;
	-webkit-font-smoothing: antialiased;
}

/* Site Wrapper */
#page.site {
	overflow-x: hidden;
	width: 100%;
	max-width: 100%;
}

#content.site-content {
	overflow-x: hidden;
	width: 100%;
	max-width: 100%;
}

.site-main {
	overflow-x: hidden;
	width: 100%;
	max-width: 100%;
}

/* Layout Utilities */
.header-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	width: 100%;
}

/* Site Header */
.site-header {
	background-color: #ffffff;
	border-bottom: 1px solid #f1f5f9;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
	position: sticky;
	top: 0;
	z-index: 1000;
	width: 100%;
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
	width: 100%;
}

/* Branding Logo */
.site-branding {
	flex-shrink: 0;
}

.site-branding .logo-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	gap: 12px;
}

.site-branding .logo-image {
	height: 42px;
	width: auto;
	display: block;
	flex-shrink: 0;
}

.site-branding .site-title {
	font-size: 20px;
	font-weight: 800;
	color: #0f172a;
	letter-spacing: -0.5px;
	white-space: nowrap;
}

/* Menu Navigation */
.main-navigation {
	display: flex;
	align-items: center;
	flex: 1;
	justify-content: center;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 28px;
}

.main-navigation li {
	display: inline-block;
}

.main-navigation a {
	text-decoration: none;
	color: #475569;
	font-size: 15px;
	font-weight: 600;
	padding: 8px 0;
	display: block;
	transition: color 0.2s ease;
	position: relative;
	white-space: nowrap;
}

.main-navigation a:hover {
	color: #0f172a;
}

.main-navigation li.current-menu-item a,
.main-navigation li.current_page_item a {
	color: #0f172a;
}

.main-navigation li.current-menu-item a::after,
.main-navigation li.current_page_item a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 3px;
	background-color: #dc2626;
	border-radius: 2px;
}

/* Buttons CTA */
.header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.header-actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	padding: 10px 18px;
	border-radius: 6px;
	height: 40px;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.btn-emergency-wa {
	background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
	color: #ffffff !important;
	gap: 6px;
	box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
}

.btn-emergency-wa:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(34, 197, 94, 0.25);
}

.btn-emergency-wa .btn-icon {
	width: 15px;
	height: 15px;
	stroke: #ffffff;
	flex-shrink: 0;
}

.btn-pesan-aki {
	background-color: #0f172a;
	color: #ffffff !important;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.btn-pesan-aki:hover {
	background-color: #1e293b;
	transform: translateY(-1px);
}

.mobile-header-actions {
	display: none;
}

/* Hamburger Menu Toggle */
.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 24px;
	height: 18px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1001;
}

.menu-toggle .hamburger-bar {
	width: 100%;
	height: 2px;
	background-color: #0f172a;
	border-radius: 1px;
	transition: all 0.3s ease;
}

.menu-toggle.active .hamburger-bar:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .hamburger-bar:nth-child(2) {
	opacity: 0;
}

.menu-toggle.active .hamburger-bar:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   Responsive — Responsive Header & Mobile Menu
   ========================================================================== */
@media (max-width: 992px) {
	.header-container {
		padding: 0 16px;
	}

	.header-inner {
		height: 64px;
	}

	.site-branding .logo-image {
		height: 32px;
	}

	.site-branding .site-title {
		font-size: 20px;
	}

	.header-actions {
		display: none !important;
	}

	.menu-toggle {
		display: flex;
	}

	.main-navigation {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background-color: #ffffff;
		border-bottom: 1px solid #f1f5f9;
		box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
		z-index: 999;
		padding: 16px 20px;
		flex-direction: column;
		align-items: stretch;
	}

	.main-navigation.active {
		display: flex;
	}

	.main-navigation ul {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		width: 100%;
	}

	.main-navigation li {
		width: 100%;
		border-bottom: 1px solid #f1f5f9;
	}

	.main-navigation li:last-child {
		border-bottom: none;
	}

	.main-navigation a {
		font-size: 15px;
		font-weight: 600;
		color: #475569;
		padding: 12px 0;
		display: block;
		width: 100%;
	}

	.main-navigation a:hover,
	.main-navigation li.current-menu-item a,
	.main-navigation li.current_page_item a {
		color: #0f172a;
	}

	.main-navigation li.current-menu-item a::after,
	.main-navigation li.current_page_item a::after {
		display: none;
	}

	.mobile-header-actions {
		display: flex;
		flex-direction: column;
		gap: 10px;
		margin-top: 20px;
		width: 100%;
	}

	.mobile-header-actions a {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		text-decoration: none;
		font-size: 14px;
		font-weight: 700;
		padding: 10px 18px;
		border-radius: 6px;
		height: 42px;
		width: 100%;
		transition: all 0.2s ease;
		white-space: nowrap;
	}
}

@media (max-width: 480px) {
	.header-container {
		padding: 0 12px;
	}

	.site-branding .logo-image {
		height: 28px;
	}

	.site-branding .site-title {
		font-size: 18px;
	}
}

@media (max-width: 360px) {
	.header-container {
		padding: 0 8px;
	}

	.site-branding .logo-image {
		height: 24px;
	}

	.site-branding .site-title {
		font-size: 16px;
	}
}

/* ==========================================================================
   Hero Section Styling
   ========================================================================== */
.hero-section {
	background-color: #ffffff;
	background-image: radial-gradient(#e2e8f0 1.5px, transparent 1.5px);
	background-size: 24px 24px;
	padding: 80px 0;
	width: 100%;
	overflow: hidden;
}

.hero-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
	width: 100%;
}

.hero-content {
	flex: 1;
	max-width: 620px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: #0f172a;
	color: #ffffff;
	padding: 6px 14px;
	border-radius: 50px;
	margin-bottom: 24px;
}

.hero-badge .badge-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 14px;
	color: #ffffff;
}

.hero-badge .badge-icon svg {
	width: 100%;
	height: 100%;
}

.hero-badge .badge-text {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.5px;
}

.hero-title {
	font-size: 48px;
	font-weight: 800;
	line-height: 1.15;
	color: #0f172a;
	margin: 0 0 20px 0;
	letter-spacing: -1px;
}

.highlight-red {
	color: #dc2626;
}

.hero-description {
	font-size: 18px;
	line-height: 1.6;
	color: #475569;
	margin-bottom: 36px;
}

.hero-buttons {
	display: flex;
	align-items: center;
	gap: 16px;
}

.btn-pesan-sekarang {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: #0f172a;
	color: #ffffff !important;
	font-size: 14px;
	font-weight: 700;
	padding: 14px 24px;
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.2s ease;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
}

.btn-pesan-sekarang .btn-icon {
	width: 18px;
	height: 18px;
	stroke: #ffffff;
}

.btn-pesan-sekarang:hover {
	background-color: #1e293b;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(15, 23, 42, 0.25);
}

.btn-lihat-katalog {
	display: inline-flex;
	align-items: center;
	background-color: #ffffff;
	color: #0f172a !important;
	border: 1.5px solid #0f172a;
	font-size: 14px;
	font-weight: 700;
	padding: 14px 24px;
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.2s ease;
}

.btn-lihat-katalog:hover {
	background-color: #f8fafc;
	transform: translateY(-2px);
}

.hero-image-wrapper {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	max-width: 580px;
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hero-image-wrapper::after {
	content: '';
	position: absolute;
	top: 0;
	left: -150%;
	width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
	transform: skewX(-25deg);
	pointer-events: none;
	animation: shine-anim 4s infinite ease-in-out;
}

@keyframes shine-anim {
	0% {
		left: -150%;
	}
	30% {
		left: 150%;
	}
	100% {
		left: 150%;
	}
}

.hero-image {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.hero-image-wrapper:hover .hero-image {
	transform: scale(1.03);
}

/* ==========================================================================
   Responsive — Hero Section
   ========================================================================== */
@media (max-width: 992px) {
	.hero-section {
		padding: 50px 0;
	}

	.hero-container {
		flex-direction: column;
		gap: 36px;
		text-align: center;
	}

	.hero-content {
		max-width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.hero-badge {
		margin-bottom: 16px;
	}

	.hero-title {
		font-size: 36px;
	}

	.hero-description {
		font-size: 16px;
		margin-bottom: 24px;
	}

	.hero-buttons {
		justify-content: center;
		width: 100%;
	}

	.hero-image-wrapper {
		max-width: 100%;
		justify-content: center;
	}
}

@media (max-width: 576px) {
	.hero-title {
		font-size: 28px;
	}

	.hero-buttons {
		flex-direction: column;
		gap: 12px;
		width: 100%;
	}

	.btn-pesan-sekarang,
	.btn-lihat-katalog {
		width: 100%;
		justify-content: center;
	}
}

/* ==========================================================================
   Why Choose Us Section Styling
   ========================================================================== */
.why-section {
	background-color: #ffffff;
	border-top: 1px solid #f1f5f9;
	border-bottom: 1px solid #f1f5f9;
	padding: 40px 0;
	width: 100%;
}

.why-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	width: 100%;
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	width: 100%;
}

.why-card {
	padding: 40px 48px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
}

.why-card:not(:last-child) {
	border-right: 1px solid #f1f5f9;
}

.why-icon-wrapper {
	background-color: #0f172a;
	border-radius: 6px;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	transition: transform 0.3s ease;
}

.why-card:hover .why-icon-wrapper {
	transform: translateY(-2px);
}

.why-icon {
	width: 22px;
	height: 22px;
	stroke: #ffffff;
	display: block;
}

.why-card-title {
	font-size: 18px;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 12px 0;
	letter-spacing: -0.3px;
}

.why-card-description {
	font-size: 14px;
	line-height: 1.6;
	color: #64748b;
	margin: 0;
}

/* ==========================================================================
   Responsive — Why Choose Us
   ========================================================================== */
@media (max-width: 992px) {
	.why-section {
		padding: 20px 0;
	}

	.why-grid {
		grid-template-columns: 1fr;
	}

	.why-card {
		padding: 32px 20px;
		align-items: center;
		text-align: center;
	}

	.why-card:not(:last-child) {
		border-right: none;
		border-bottom: 1px solid #f1f5f9;
	}

	.why-icon-wrapper {
		margin-bottom: 16px;
	}
}

/* ==========================================================================
   About Section Styling
   ========================================================================== */
.about-section {
	background-color: #ffffff;
	padding: 80px 0;
	width: 100%;
}

.about-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	width: 100%;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 64px;
}

.about-image-side {
	width: 100%;
}

.about-image-wrapper {
	position: relative;
	width: 100%;
	max-width: 540px;
	display: block;
}

.about-image {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
	display: block;
	object-fit: cover;
}

/* About Slider */
.about-slider {
	position: relative;
	width: 100%;
	height: 450px;
	border-radius: 12px;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
	overflow: hidden;
	background-color: #0f172a;
}

.about-slides {
	position: relative;
	width: 100%;
	height: 100%;
}

.about-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.about-slide.active {
	opacity: 1;
	visibility: visible;
}

.about-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Slider Controls */
.about-slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(15, 23, 42, 0.6);
	backdrop-filter: blur(4px);
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 5;
}

.about-slider-btn svg {
	width: 20px;
	height: 20px;
}

.about-slider-btn.prev {
	left: 16px;
}

.about-slider-btn.next {
	right: 16px;
}

.about-slider:hover .about-slider-btn {
	opacity: 1;
	visibility: visible;
}

.about-slider-btn:hover {
	background: #0f172a;
	transform: translateY(-50%) scale(1.1);
}

.about-slider-dots {
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 5;
}

.about-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	transition: all 0.3s ease;
}

.about-dot.active {
	background: #ffffff;
	transform: scale(1.2);
	width: 20px;
	border-radius: 4px;
}

@media (max-width: 768px) {
	.about-slider {
		height: 350px;
	}
	.about-slider-btn {
		opacity: 1;
		visibility: visible;
		width: 36px;
		height: 36px;
	}
}

.experience-card {
	position: absolute;
	bottom: -30px;
	right: -20px;
	background-color: #0f172a;
	color: #ffffff;
	padding: 24px 28px;
	border-radius: 12px;
	box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.3), 0 10px 10px -5px rgba(15, 23, 42, 0.2);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	z-index: 10;
}

.exp-number {
	font-size: 36px;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 6px;
}

.exp-text {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1px;
	line-height: 1.4;
}

.about-content-side {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.about-label {
	color: #dc2626;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 2px;
	margin-bottom: 16px;
	display: block;
}

.about-title {
	font-size: 36px;
	font-weight: 800;
	color: #0f172a;
	line-height: 1.2;
	margin: 0 0 24px 0;
	letter-spacing: -0.5px;
}

.about-description p {
	font-size: 15px;
	line-height: 1.7;
	color: #475569;
	margin: 0 0 16px 0;
}

.about-description p:last-child {
	margin-bottom: 0;
}

.about-action {
	width: 100%;
	display: flex;
	justify-content: flex-start;
}

.about-divider {
	width: 100%;
	border: none;
	border-top: 1px solid #f1f5f9;
	margin: 28px 0;
}

.about-stats {
	display: flex;
	align-items: center;
	gap: 60px;
	width: 100%;
}

.stat-item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.stat-number {
	font-size: 32px;
	font-weight: 800;
	color: #0f172a;
	line-height: 1;
	margin-bottom: 8px;
}

.stat-label {
	font-size: 11px;
	font-weight: 800;
	color: #64748b;
	letter-spacing: 1px;
}

/* ==========================================================================
   Responsive — About Section
   ========================================================================== */
@media (max-width: 992px) {
	.about-section {
		padding: 60px 0;
	}

	.about-grid {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.about-image-side {
		display: flex;
		justify-content: center;
		padding-right: 20px;
	}

	.about-image-wrapper {
		max-width: 480px;
	}

	.experience-card {
		bottom: -20px;
		right: -10px;
		padding: 18px 22px;
	}

	.exp-number {
		font-size: 30px;
	}

	.about-content-side {
		align-items: center;
		text-align: center;
	}

	.about-title {
		font-size: 28px;
	}

	.about-stats {
		justify-content: center;
		gap: 48px;
	}

	.stat-item {
		align-items: center;
	}

	.about-action {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.about-section {
		padding: 40px 0;
	}

	.about-grid {
		gap: 40px;
	}

	.about-image-side {
		padding-right: 10px;
	}

	.experience-card {
		padding: 12px 16px;
		bottom: -15px;
		right: -5px;
	}

	.exp-number {
		font-size: 24px;
	}

	.exp-text {
		font-size: 9px;
	}

	.about-title {
		font-size: 24px;
	}

	.about-stats {
		flex-direction: column;
		gap: 24px;
	}
}

/* ==========================================================================
   Services Section Styling
   ========================================================================== */
.services-section {
	background-color: #f8fafc;
	padding: 80px 0;
	width: 100%;
}

.services-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	width: 100%;
}

.services-header {
	margin-bottom: 48px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.services-section-title {
	font-size: 36px;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 12px 0;
	letter-spacing: -0.5px;
}

.services-section-subtitle {
	font-size: 16px;
	line-height: 1.6;
	color: #64748b;
	max-width: 700px;
	margin: 0;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	width: 100%;
}

.service-card {
	background-color: #ffffff;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	transition: all 0.3s ease;
	overflow: hidden;
}

.service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 20px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
	border-color: #cbd5e1;
}

.service-card-image-wrapper {
	width: 100%;
	height: 180px;
	overflow: hidden;
	position: relative;
}

.service-card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
	display: block;
}

.service-card:hover .service-card-image {
	transform: scale(1.05);
}

.service-card-content {
	padding: 24px;
	width: 100%;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.service-card-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	width: 100%;
}

.service-icon-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 6px;
	flex-shrink: 0;
}

.service-icon-wrapper.mobil {
	background-color: #fef2f2;
	color: #dc2626;
}

.service-icon-wrapper.motor {
	background-color: #fffbeb;
	color: #d97706;
}

.service-icon-wrapper.selis {
	background-color: #f0fdf4;
	color: #16a34a;
}

.service-icon-wrapper.truck {
	background-color: #eff6ff;
	color: #2563eb;
}

.service-icon-wrapper.heavy {
	background-color: #faf5ff;
	color: #9333ea;
}

.service-icon-wrapper.genset {
	background-color: #ecfeff;
	color: #0891b2;
}

.service-icon {
	width: 14px;
	height: 14px;
	display: block;
}

.service-title {
	font-size: 18px;
	font-weight: 800;
	color: #0f172a;
	margin: 0;
}

.service-description {
	font-size: 14px;
	line-height: 1.6;
	color: #64748b;
	margin: 0 0 20px 0;
	flex-grow: 1;
}

.service-footer {
	width: 100%;
}

.btn-cek-harga {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	background-color: #0f172a;
	color: #ffffff !important;
	border: 1.5px solid #0f172a;
	font-size: 14px;
	font-weight: 700;
	padding: 10px 16px;
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.2s ease;
}

.btn-cek-harga:hover {
	background-color: #1e293b;
	border-color: #1e293b;
}

/* ==========================================================================
   Responsive — Services Section
   ========================================================================== */
@media (max-width: 992px) {
	.services-section {
		padding: 60px 0;
	}

	.services-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.services-section-title {
		font-size: 28px;
	}
}

@media (max-width: 640px) {
	.services-grid {
		grid-template-columns: 1fr;
	}

	.services-header {
		text-align: center;
	}

	.services-section-title {
		font-size: 24px;
	}

	.services-section-subtitle {
		font-size: 14px;
	}

	.service-card {
		padding: 24px;
	}
}

/* ==========================================================================
   Testimoni Section Styling
   ========================================================================== */
.testimoni-section {
	background-color: #ffffff;
	padding: 80px 0;
	width: 100%;
}

.testimoni-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	width: 100%;
}

.testimoni-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	width: 100%;
}

.testimoni-card {
	border-left: 3px solid #dc2626;
	padding: 16px 0 16px 28px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}

.testimoni-quote {
	font-size: 15px;
	font-style: italic;
	font-weight: 500;
	line-height: 1.6;
	color: #0f172a;
	margin: 0 0 24px 0;
}

.testimoni-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.author-avatar {
	background-color: #0f172a;
	color: #ffffff;
	font-weight: 700;
	font-size: 13px;
	width: 28px;
	height: 28px;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
}

.author-info {
	font-family: monospace;
	font-size: 12px;
	color: #475569;
	letter-spacing: -0.2px;
}

/* ==========================================================================
   Responsive — Testimoni Section
   ========================================================================== */
@media (max-width: 992px) {
	.testimoni-section {
		padding: 60px 0;
	}

	.testimoni-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.testimoni-card {
		padding: 8px 0 8px 20px;
	}
}

/* ==========================================================================
   Gallery Section Styling
   ========================================================================== */
.gallery-section {
	background-color: #0f172a;
	padding: 80px 0;
	width: 100%;
	overflow: hidden;
}

.gallery-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	width: 100%;
}

.gallery-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 40px;
}

.gallery-title {
	font-size: 36px;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 12px 0;
	letter-spacing: -0.5px;
}

.gallery-subtitle {
	font-size: 16px;
	color: #94a3b8;
	margin: 0;
}

.gallery-nav {
	display: flex;
	gap: 12px;
}

.gallery-nav-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
	padding: 0;
	outline: none;
}

.gallery-nav-btn.prev {
	background-color: transparent;
	border: 1.5px solid rgba(255, 255, 255, 0.2);
	color: #ffffff;
}

.gallery-nav-btn.prev:hover {
	border-color: #ffffff;
	background-color: rgba(255, 255, 255, 0.05);
}

.gallery-nav-btn.next {
	background-color: #dc2626;
	border: 1.5px solid #dc2626;
	color: #ffffff;
	box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.gallery-nav-btn.next:hover {
	background-color: #b91c1c;
	border-color: #b91c1c;
	transform: scale(1.05);
}

.gallery-nav-btn svg {
	width: 20px;
	height: 20px;
	stroke: currentColor;
}

.gallery-track-container {
	width: 100%;
	overflow: visible;
}

.gallery-track {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.gallery-track::-webkit-scrollbar {
	display: none;
}

.gallery-item {
	flex: 0 0 calc((100% - 48px) / 3);
	scroll-snap-align: start;
	border-radius: 12px;
	overflow: hidden;
	height: 260px;
	position: relative;
}

.gallery-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
	transform: scale(1.05);
}

/* ==========================================================================
   Responsive — Gallery Section
   ========================================================================== */
@media (max-width: 992px) {
	.gallery-section {
		padding: 60px 0;
	}

	.gallery-item {
		flex: 0 0 calc((100% - 24px) / 2);
	}

	.gallery-title {
		font-size: 28px;
	}
}

@media (max-width: 640px) {
	.gallery-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.gallery-nav {
		width: 100%;
		justify-content: flex-end;
	}

	.gallery-item {
		flex: 0 0 85%;
	}

	.gallery-title {
		font-size: 24px;
	}

	.gallery-subtitle {
		font-size: 14px;
	}
}

/* ==========================================================================
   CTA Section Styling
   ========================================================================== */
.cta-section {
	background-color: #ffffff;
	padding: 80px 0;
	width: 100%;
}

.cta-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	width: 100%;
}

.cta-box {
	display: flex;
	align-items: stretch;
	min-height: 380px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

.cta-content-side {
	flex: 1.2;
	padding: 60px 80px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	background-color: #0f172a;
}

.cta-title {
	font-size: 36px;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 16px 0;
	letter-spacing: -0.5px;
}

.cta-description {
	font-size: 16px;
	line-height: 1.7;
	color: #94a3b8;
	margin-bottom: 32px;
}

.cta-action {
	width: 100%;
	display: flex;
	justify-content: flex-start;
}

.btn-cta-pesan {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background-color: #dc2626;
	color: #ffffff !important;
	font-size: 15px;
	font-weight: 700;
	padding: 14px 28px;
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.2s ease;
	box-shadow: 0 4px 14px rgba(220, 38, 38, 0.3);
}

.btn-cta-pesan:hover {
	background-color: #b91c1c;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.btn-cta-pesan .btn-icon {
	width: 20px;
	height: 20px;
	stroke: #ffffff;
}

.cta-image-side {
	flex: 1;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* ==========================================================================
   Responsive — CTA Section
   ========================================================================== */
@media (max-width: 992px) {
	.cta-section {
		padding: 60px 0;
	}

	.cta-box {
		flex-direction: column;
		min-height: auto;
	}

	.cta-content-side {
		padding: 40px;
		align-items: center;
		text-align: center;
	}

	.cta-title {
		font-size: 28px;
	}

	.cta-action {
		justify-content: center;
	}

	.cta-image-side {
		height: 240px;
		width: 100%;
	}
}

@media (max-width: 480px) {
	.cta-section {
		padding: 40px 0;
	}

	.cta-content-side {
		padding: 32px 20px;
	}

	.cta-title {
		font-size: 24px;
	}

	.cta-description {
		font-size: 14px;
		margin-bottom: 24px;
	}

	.btn-cta-pesan {
		width: 100%;
		justify-content: center;
	}

	.cta-image-side {
		height: 200px;
	}
}

/* ==========================================================================
   Footer Section Styling
   ========================================================================== */
.site-footer {
	background-color: #ffffff;
	border-top: 1px solid #f1f5f9;
	padding: 80px 0 60px 0;
	width: 100%;
}

.footer-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	width: 100%;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 60px;
	width: 100%;
}

.footer-brand-title {
	font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
	font-size: 24px;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 24px 0;
	letter-spacing: -0.5px;
}

.footer-section-title {
	font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
	font-size: 11px;
	font-weight: 700;
	color: #64748b;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	border-bottom: 1px solid #f1f5f9;
	padding-bottom: 10px;
	margin: 0 0 20px 0;
	width: 100%;
}

.footer-contact-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer-contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.footer-contact-list .contact-icon {
	color: #dc2626;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
}

.footer-contact-list .contact-icon svg {
	width: 100%;
	height: 100%;
	stroke: currentColor;
}

.footer-contact-list .contact-text {
	font-size: 14px;
	line-height: 1.6;
	color: #475569;
}

.footer-contact-list .contact-text a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-contact-list .contact-text a:hover {
	color: #dc2626;
}

/* Payment badges */
.payment-badges {
	display: flex;
	gap: 12px;
	margin-bottom: 24px;
	flex-wrap: wrap;
}

.payment-badge {
	background-color: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 6px;
	padding: 8px 16px;
	font-size: 12px;
	font-weight: 800;
	color: #0f172a;
	letter-spacing: 0.5px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 80px;
	height: 38px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

/* Warning box */
.payment-security-alert {
	background-color: #f5f8ff;
	border-left: 4px solid #dc2626;
	border-radius: 4px;
	padding: 16px 20px;
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.payment-security-alert .alert-icon {
	color: #eab308;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
}

.payment-security-alert .alert-icon svg {
	width: 100%;
	height: 100%;
	stroke: currentColor;
	fill: none;
}

.payment-security-alert .alert-text {
	font-size: 13px;
	line-height: 1.5;
	color: #334155;
	margin: 0;
}

.payment-security-alert .alert-text strong {
	color: #0f172a;
}

.payment-security-alert .alert-text strong:first-of-type {
	color: #dc2626;
	text-transform: uppercase;
}

/* Footer Bottom */
.footer-bottom {
	border-top: 1px solid #f1f5f9;
	margin-top: 48px;
	padding-top: 24px;
	text-align: center;
	width: 100%;
}

.footer-bottom p {
	font-size: 13px;
	line-height: 1.5;
	color: #64748b;
	margin: 0;
}

/* Floating WhatsApp Button */
.floating-buttons-container {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 9999;
}

.floating-wa-button {
	background: #22c55e;
	color: #ffffff;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	text-decoration: none;
}

.floating-wa-button:hover {
	background: #15803d;
	transform: scale(1.1) translateY(-2px);
	box-shadow: 0 8px 24px rgba(21, 128, 61, 0.5);
}

.floating-wa-icon {
	width: 26px;
	height: 26px;
	stroke: #ffffff;
	fill: none;
}

/* Responsive Footer */
@media (max-width: 992px) {
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.site-footer {
		padding: 60px 0 40px 0;
	}
	
	.footer-bottom {
		margin-top: 32px;
	}
	
	.floating-buttons-container {
		bottom: 20px;
		right: 20px;
	}
	
	.floating-wa-button {
		width: 48px;
		height: 48px;
	}
	
	.floating-wa-icon {
		width: 22px;
		height: 22px;
	}
}

/* ==========================================================================
   Mitra Section Styling (Partner Logo Marquee)
   ========================================================================== */
.mitra-section {
	background-color: #ffffff;
	padding: 50px 0;
	border-top: 1px solid #f1f5f9;
	border-bottom: 1px solid #f1f5f9;
	overflow: hidden;
	width: 100%;
}

.mitra-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.mitra-header {
	margin-bottom: 48px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.mitra-section-title {
	font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
	font-size: 36px;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 12px 0;
	letter-spacing: -0.5px;
	text-align: center;
}

.mitra-section-subtitle {
	font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #64748b;
	max-width: 700px;
	margin: 0;
	text-align: center;
}

.mitra-slider {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.mitra-slider::before,
.mitra-slider::after {
	content: "";
	position: absolute;
	top: 0;
	width: 120px;
	height: 100%;
	z-index: 2;
	pointer-events: none;
}

.mitra-slider::before {
	left: 0;
	background: linear-gradient(to right, #ffffff, transparent);
}

.mitra-slider::after {
	right: 0;
	background: linear-gradient(to left, #ffffff, transparent);
}

.mitra-track {
	display: flex;
	width: max-content;
	animation: scroll-marquee 30s linear infinite;
	gap: 60px;
}

.mitra-slide {
	width: 180px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.mitra-slide img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.5;
	transition: all 0.3s ease;
}

.mitra-slide img:hover {
	filter: grayscale(0%);
	opacity: 1;
	transform: scale(1.05);
}

@keyframes scroll-marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

@media (max-width: 768px) {
	.mitra-section {
		padding: 40px 0;
	}
	
	.mitra-header {
		margin-bottom: 32px;
	}
	
	.mitra-section-title {
		font-size: 28px;
	}
	
	.mitra-section-subtitle {
		font-size: 14px;
	}
	
	.mitra-slide {
		width: 130px;
		height: 50px;
	}
	
	.mitra-track {
		gap: 40px;
	}
}

/* ==========================================================================
   Mobile Bottom Navigation Bar Styling
   ========================================================================== */
.mobile-nav-bar {
	display: none;
}

@media (max-width: 768px) {
	.mobile-nav-bar {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		height: 64px;
		background-color: #ffffff;
		border-top: 1px solid #f1f5f9;
		display: flex;
		justify-content: space-around;
		align-items: center;
		z-index: 999;
		box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
		padding: 0 10px;
	}
	
	.mobile-nav-item {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-decoration: none;
		color: #64748b;
		gap: 4px;
		flex: 1;
		height: 100%;
		transition: all 0.2s ease;
	}
	
	.mobile-nav-item:hover,
	.mobile-nav-item:active {
		color: #0f172a;
	}
	
	.mobile-nav-icon {
		width: 20px;
		height: 20px;
		stroke: currentColor;
		fill: none;
	}
	
	.mobile-nav-label {
		font-size: 11px;
		font-weight: 700;
		letter-spacing: -0.2px;
	}
	

	
	/* Push floating WA button up on mobile so it doesn't overlap */
	.floating-buttons-container {
		bottom: 84px !important;
	}
	
	/* Add bottom padding to body so content isn't cut off by the navigation bar */
	body {
		padding-bottom: 64px !important;
	}
}



