/* ===========================
   HUBUNGI KAMI SECTION
   =========================== */
.section-hubungi {
	padding: 120px 0 40px;
	background: var(--background-footer);
	margin-top: -50px;
	overflow: hidden;
}

/* ===========================
   LEFT — INFO
   =========================== */
.hubungi-info {
	padding-right: 40px;
}

.hubungi-label {
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	color: var(--text-description);
	letter-spacing: 0.4px;
	margin-bottom: 14px;
}

.hubungi-judul {
	font-size: 38px;
	font-weight: 700;
	color: var(--text-green);
	line-height: 1.25;
	margin-bottom: 16px;
}

.hubungi-desc {
	font-size: 15px;
	color: var(--text-description-2);
	line-height: 1.75;
	margin-bottom: 32px;
}
.hubungi-desc ul,
.hubungi-desc ol {
	padding-left: 20px;
	margin-bottom: 12px;
}
.hubungi-desc ul { list-style: disc; }
.hubungi-desc ol { list-style: decimal; }
.hubungi-desc li { margin-bottom: 4px; }

/* ===========================
   CONTACT DETAIL LIST
   =========================== */
.hubungi-kontak-group {
	margin-bottom: 28px;
}

.hubungi-kontak-title {
	font-size: 14px;
	font-weight: 700;
	color: var(--text-description);
	margin-bottom: 16px;
}

.hubungi-kontak-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.hubungi-kontak-item {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 16px;
	color: var(--text-description);
	line-height: 1.65;
	font-weight: 600;
	transition: transform 0.25s ease;
}

.hubungi-kontak-item:hover {
	transform: translateX(5px);
}

.hubungi-kontak-item a {
	color: var(--text-description);
	text-decoration: none;
	transition: color .2s;
	
}

.hubungi-kontak-item a:hover {
	color: var(--text-description);
}

.hubungi-kontak-icon {
	width: 20px;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
	text-align: center;
}

.hubungi-kontak-icon img {
	display: block;
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.hubungi-cta {
	font-size: 14px;
	color: var(--text-description);
	margin: 0;
}

/* ===========================
   RIGHT — FORM CARD
   =========================== */
.hubungi-form-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 16px 16px;
	box-shadow: 0 4px 32px rgba(24, 56, 50, 0.08);
}

.hubungi-form {
	display: flex;
	flex-direction: column;
}

.hubungi-form-group {
	position: relative;
	margin-bottom: 12px;
}

.hubungi-input {
	width: 100%;
	background: #ffffff;
	border: 1.5px solid #e4e4e4;
	border-radius: 8px;
	padding: 10px 12px;
	font-size: 14px;
	color: var(--text-description);
	outline: none;
	transition: border-color .25s ease, box-shadow .25s ease, transform .2s ease;
	display: block;
}

.hubungi-input:focus {
	transform: translateY(-1px);
}

.hubungi-input::placeholder {
	color: #b8bfbd;
}

.hubungi-input:focus {
	border-color: var(--text-green);
	box-shadow: 0 0 0 3px rgba(69, 131, 120, 0.08);
}

.hubungi-textarea {
	resize: none;
	min-height: 120px;
}

/* ===========================
   BUTTONS
   =========================== */
.hubungi-form-btns {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 28px;
}

.btn-hubungi-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--background-brown);
	color: #ffffff;
	border: 1.5px solid var(--background-brown);
	border-radius: 50px;
	padding: 13px 32px;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	text-decoration: none;
	transition: all .25s ease;
	position: relative;
	overflow: hidden;
}

.btn-hubungi-primary::after {
	content: '';
	position: absolute;
	top: 0;
	left: -80%;
	width: 55%;
	height: 100%;
	background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
	animation: shimmerHubungi 4s ease-in-out infinite;
	pointer-events: none;
}

@keyframes shimmerHubungi {
	0%   { left: -80%; }
	30%  { left: 125%; }
	100% { left: 125%; }
}

.btn-hubungi-primary:hover {
	background: var(--background-brown-hover);
	border-color: var(--background-brown-hover);
	color: #ffffff;
	box-shadow: 0 8px 24px rgba(185, 132, 102, 0.35);
}

.btn-hubungi-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--background-brown);
	color: #ffffff;
	border: 1.5px solid var(--background-brown);
	border-radius: 50px;
	padding: 13px 32px;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	transition: all .25s ease;
}

.btn-hubungi-secondary:hover {
	background: var(--background-brown-hover);
	border-color: var(--background-brown-hover);
	color: #ffffff;
	box-shadow: 0 8px 24px rgba(185, 132, 102, 0.35);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 991.98px) {
	.section-hubungi   { padding: 60px 0; }
	.hubungi-info      { padding-right: 0; }
	.hubungi-judul     { font-size: 30px; }
	.hubungi-form-card { padding: 32px 24px; }
}

@media (max-width: 575.98px) {
	.section-hubungi      { padding: 40px 0; }
	.hubungi-judul        { font-size: 24px; }
	.hubungi-desc         { font-size: 14px; }
	.hubungi-form-card    { padding: 28px 18px; border-radius: 16px; }
	.btn-hubungi-primary,
	.btn-hubungi-secondary { width: 100%; justify-content: center; }
}
