/* ===== RESET & VARIABLES ===== */
:root {
	--white: #ffffff;
	--warm: #f8f5e6;
	--choc: #3c1910;
	--orange: #f26822;
	--orange-dark: #d9551a;
	--gold-top: #fcd15a;
	--gold-bottom: #e89115;
	--red: #e31b23;
	--cream: #fff8ed;
	--line: rgba(60, 25, 16, 0.08);
	--bg-section-1: #f8f5e6;
	--bg-section-2: #fef9ef;
	--bg-section-3: #fcf3e6;
	--bg-section-4: #fffcf5;
	--bg-section-5: #faf2e8;
	--bg-section-6: #fef6ed;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: "Plus Jakarta Sans", sans-serif;
	color: var(--choc);
	background: var(--bg-section-1);
	-webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
.display {
	font-family: "Baloo 2", sans-serif;
}
img {
	max-width: 100%;
	display: block;
}
a {
	text-decoration: none;
	color: inherit;
}
ul {
	list-style: none;
}
button {
	font-family: inherit;
	cursor: pointer;
	border: none;
}

/* ===== STICKY HEADER ===== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--line);
}
.site-header .header-inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 14px clamp(20px, 4vw, 56px);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.logo-mark img {
	height: 56px;
	width: auto;
}
.main-nav ul {
	display: flex;
	gap: 32px;
	font-weight: 600;
	font-size: 15px;
}
.main-nav a {
	position: relative;
	padding: 6px 2px;
	transition: color 0.2s ease;
	color: var(--choc);
}
.main-nav a:hover {
	color: var(--orange);
}
.main-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	border-radius: 3px;
	background: var(--orange);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
}
.main-nav a:hover::after {
	transform: scaleX(1);
}

/* ===== SCROLL TO TOP BUTTON ===== */
#scrollTopBtn {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 999;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--orange);
	color: #fff;
	font-size: 24px;
	border: none;
	box-shadow: 0 4px 20px rgba(242, 104, 34, 0.35);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}
#scrollTopBtn.show {
	opacity: 1;
	visibility: visible;
}
#scrollTopBtn:hover {
	transform: translateY(-4px) scale(1.05);
	box-shadow: 0 8px 28px rgba(242, 104, 34, 0.5);
}

/* ===== SECTION FULL WIDTH ===== */
.section-full {
	width: 100%;
	padding: 100px 0 80px 0;
	scroll-margin-top: 85px;
}
.section-full .container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 56px);
}

/* ===== SECTION BACKGROUNDS ===== */
.section-bg-1 {
	background: var(--bg-section-1);
}
.section-bg-2 {
	background: var(--bg-section-2);
}
.section-bg-3 {
	background: var(--bg-section-3);
}
.section-bg-4 {
	background: var(--bg-section-4);
}
.section-bg-5 {
	background: var(--bg-section-5);
}
.section-bg-6 {
	background: var(--bg-section-6);
}

/* Textures - subtle & modern */
.texture-dots {
	background-image: radial-gradient(
		circle,
		rgba(60, 25, 16, 0.03) 1px,
		transparent 1px
	);
	background-size: 24px 24px;
}
.texture-lines {
	background-image: repeating-linear-gradient(
		45deg,
		rgba(60, 25, 16, 0.015) 0px,
		rgba(60, 25, 16, 0.015) 2px,
		transparent 2px,
		transparent 10px
	);
}
.texture-grid {
	background-image:
		linear-gradient(rgba(60, 25, 16, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(60, 25, 16, 0.03) 1px, transparent 1px);
	background-size: 36px 36px;
}
.texture-zigzag {
	background-image: repeating-linear-gradient(
		135deg,
		rgba(60, 25, 16, 0.015) 0px,
		rgba(60, 25, 16, 0.015) 3px,
		transparent 3px,
		transparent 14px
	);
}
.texture-cross {
	background-image:
		repeating-linear-gradient(
			45deg,
			rgba(60, 25, 16, 0.02) 0px,
			rgba(60, 25, 16, 0.02) 2px,
			transparent 2px,
			transparent 12px
		),
		repeating-linear-gradient(
			-45deg,
			rgba(60, 25, 16, 0.02) 0px,
			rgba(60, 25, 16, 0.02) 2px,
			transparent 2px,
			transparent 12px
		);
}

/* ===== TITLE STYLES ===== */
.section-title {
	font-size: clamp(26px, 3vw, 36px);
	font-weight: 800;
	color: var(--choc);
	margin-bottom: 8px;
	position: relative;
	display: inline-block;
}
.section-title .highlight {
	color: var(--orange);
	position: relative;
}
.section-title .highlight::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 4px;
	width: 100%;
	height: 8px;
	background: var(--gold-top);
	opacity: 0.35;
	border-radius: 4px;
	z-index: -1;
}
.section-title .accent-line {
	display: block;
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, var(--orange), var(--gold-top));
	border-radius: 4px;
	margin-top: 6px;
}
.section-sub {
	font-size: 15px;
	color: #8a6b5e;
	margin-bottom: 32px;
	max-width: 600px;
	line-height: 1.6;
}

/* ===== HERO ===== */
.hero {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	align-items: center;
	gap: 40px;
	padding: 20px 0 40px;
}
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--white);
	background: var(--orange);
	padding: 8px 18px;
	border-radius: 999px;
	margin-bottom: 20px;
	box-shadow: 0 4px 12px rgba(242, 104, 34, 0.25);
}
.eyebrow svg {
	width: 14px;
	height: 14px;
	stroke: var(--white);
}
.hero h1 {
	font-size: clamp(36px, 4.8vw, 56px);
	line-height: 1.04;
	font-weight: 800;
	color: var(--choc);
	letter-spacing: -0.01em;
}
.hero h1 .accent {
	background: linear-gradient(135deg, var(--orange), var(--gold-bottom));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.hero p.sub {
	margin-top: 18px;
	font-size: 17px;
	line-height: 1.65;
	color: #6b4a3e;
	max-width: 460px;
}
.hero-actions {
	margin-top: 30px;
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}
.btn-cta {
	position: relative;
	background: linear-gradient(135deg, var(--orange), var(--orange-dark));
	color: var(--white);
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 0.02em;
	padding: 18px 38px;
	border-radius: 14px;
	box-shadow: 0 8px 24px rgba(242, 104, 34, 0.3);
	transition: all 0.2s ease;
}
.btn-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(242, 104, 34, 0.4);
}
.btn-cta:active {
	transform: translateY(2px);
	box-shadow: 0 4px 16px rgba(242, 104, 34, 0.25);
}
.cta-cursor {
	position: absolute;
	right: -14px;
	bottom: -16px;
	width: 34px;
	height: 34px;
	filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.2));
	animation: point 1.8s ease-in-out infinite;
}
@keyframes point {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}
	50% {
		transform: translate(-4px, 4px) rotate(-6deg);
	}
}
.rating-pill {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--choc);
	background: rgba(255, 255, 255, 0.7);
	padding: 8px 16px;
	border-radius: 999px;
	backdrop-filter: blur(4px);
}
.rating-pill .stars {
	color: var(--gold-bottom);
	font-size: 16px;
	letter-spacing: 1px;
}
.hero-art {
	background: linear-gradient(145deg, #fffdf9, #fff3de);
	border-radius: 28px;
	padding: 20px;
	box-shadow: 0 8px 32px rgba(60, 25, 16, 0.06);
}

/* ===== ABOUT ===== */
.about-lead {
	font-size: 16px;
	line-height: 1.75;
	color: #5c4237;
	max-width: 760px;
	margin-bottom: 8px;
}
.about-lead strong {
	color: var(--choc);
}
.about-points {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 20px;
	margin-bottom: 40px;
}
.about-point {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--white);
	border-radius: 999px;
	padding: 10px 18px;
	font-size: 13px;
	font-weight: 600;
	color: var(--choc);
	box-shadow: 0 2px 8px rgba(60, 25, 16, 0.06);
}
.about-point svg {
	width: 16px;
	height: 16px;
	stroke: var(--orange);
	fill: none;
	flex-shrink: 0;
}
.vismis-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 24px;
	align-items: stretch;
}
.visi-card {
	background: linear-gradient(145deg, var(--orange), var(--orange-dark));
	border-radius: 24px;
	padding: 32px 28px;
	color: var(--white);
	box-shadow: 0 8px 24px rgba(242, 104, 34, 0.2);
}
.visi-card .kicker {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0.8;
	margin-bottom: 10px;
}
.visi-card p {
	font-size: 16px;
	line-height: 1.6;
	font-weight: 600;
}
.misi-card {
	background: var(--white);
	border-radius: 24px;
	padding: 32px 28px;
	box-shadow: 0 4px 16px rgba(60, 25, 16, 0.06);
}
.misi-card .kicker {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 14px;
}
.misi-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.misi-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14px;
	line-height: 1.5;
	font-weight: 600;
	color: var(--choc);
}
.misi-list .num {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--orange);
	color: var(--white);
	font-size: 12px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 1px;
}

/* ===== THREE FUNCTIONS ===== */
.community-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.fungsi-card {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 28px 24px;
	border-radius: 24px;
	background: var(--white);
	box-shadow: 0 4px 16px rgba(60, 25, 16, 0.05);
	transition: all 0.25s ease;
	border: 1px solid var(--line);
}
.fungsi-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(60, 25, 16, 0.08);
	border-color: var(--gold-bottom);
}
.fungsi-card .ring {
	width: 56px;
	height: 56px;
	flex-shrink: 0;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--gold-top), var(--gold-bottom));
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(232, 145, 21, 0.25);
}
.fungsi-card .ring svg {
	width: 26px;
	height: 26px;
	stroke: var(--white);
	fill: none;
}
.fungsi-card h3 {
	font-size: 17px;
	font-weight: 800;
	color: var(--choc);
}
.fungsi-card p {
	font-size: 13.5px;
	line-height: 1.6;
	color: #6b4a3e;
}
.fungsi-card ul {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: 2px;
}
.fungsi-card ul li {
	font-size: 13px;
	font-weight: 600;
	color: var(--choc);
	display: flex;
	align-items: baseline;
	gap: 8px;
	line-height: 1.4;
}
.fungsi-card ul li::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--orange);
	flex-shrink: 0;
}

/* ===== VALUES ===== */
.values-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
}
.value-card {
	text-align: center;
	padding: 24px 12px;
	border-radius: 20px;
	background: var(--white);
	box-shadow: 0 2px 12px rgba(60, 25, 16, 0.05);
	transition: all 0.25s ease;
	border: 1px solid var(--line);
}
.value-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(60, 25, 16, 0.08);
	border-color: var(--red);
}
.value-ic {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	margin: 0 auto 12px;
	background: linear-gradient(135deg, var(--red), #c41a22);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 14px rgba(227, 27, 35, 0.25);
}
.value-ic svg {
	width: 22px;
	height: 22px;
	stroke: var(--white);
	fill: none;
}
.value-card span {
	font-size: 13px;
	font-weight: 700;
	color: var(--choc);
}

/* ===== GOALS ===== */
.goals-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.goal-card {
	display: flex;
	gap: 16px;
	padding: 24px;
	border-radius: 20px;
	background: var(--white);
	box-shadow: 0 2px 12px rgba(60, 25, 16, 0.05);
	transition: all 0.25s ease;
	border: 1px solid var(--line);
}
.goal-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(60, 25, 16, 0.08);
	border-color: var(--orange);
}
.goal-num {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--gold-top), var(--gold-bottom));
	color: var(--choc);
	font-weight: 800;
	font-size: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.goal-card h4 {
	font-size: 14.5px;
	font-weight: 800;
	color: var(--choc);
	margin-bottom: 5px;
}
.goal-card p {
	font-size: 13px;
	line-height: 1.5;
	color: #6b4a3e;
}

/* ===== MODEL BISNIS ===== */
.model-box {
	display: flex;
	align-items: center;
	gap: 32px;
	background: var(--choc);
	color: var(--white);
	border-radius: 28px;
	padding: 40px clamp(28px, 4vw, 48px);
	flex-wrap: wrap;
	box-shadow: 0 8px 32px rgba(60, 25, 16, 0.15);
}
.model-icon {
	width: 72px;
	height: 72px;
	flex-shrink: 0;
	border-radius: 20px;
	background: linear-gradient(135deg, var(--orange), var(--gold-top));
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 16px rgba(242, 104, 34, 0.3);
}
.model-icon svg {
	width: 36px;
	height: 36px;
	stroke: var(--choc);
	fill: none;
}
.model-text h3 {
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 8px;
	color: var(--gold-top);
}
.model-text p {
	font-size: 14px;
	line-height: 1.7;
	color: #e7d3c8;
	max-width: 640px;
}
.model-text p strong {
	color: var(--white);
}

/* ===== OFFER ===== */
.offer-banner {
	position: relative;
	background: linear-gradient(135deg, var(--red), #b4141b);
	border-radius: 28px;
	padding: 36px clamp(28px, 4vw, 50px);
	color: var(--white);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	box-shadow: 0 8px 32px rgba(227, 27, 35, 0.15);
}
.offer-banner::after {
	content: "";
	position: absolute;
	right: -40px;
	top: -50px;
	width: 200px;
	height: 200px;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 50%;
}
.offer-banner::before {
	content: "";
	position: absolute;
	left: 30%;
	bottom: -60px;
	width: 160px;
	height: 160px;
	background: rgba(255, 255, 255, 0.04);
	border-radius: 50%;
}
.offer-text {
	position: relative;
	z-index: 1;
}
.offer-top {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	opacity: 0.85;
	margin-bottom: 10px;
}
.offer-top svg {
	width: 16px;
	height: 16px;
	stroke: #fff;
	fill: none;
}
.offer-banner h3 {
	font-size: 30px;
	font-weight: 800;
	margin-bottom: 6px;
}
.offer-banner p {
	font-size: 14.5px;
	line-height: 1.5;
	opacity: 0.9;
	max-width: 360px;
}
.voucher {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: rgba(255, 255, 255, 0.12);
	border: 1.5px dashed rgba(255, 255, 255, 0.4);
	border-radius: 16px;
	padding: 16px 24px;
	font-weight: 800;
	font-size: 18px;
	flex-shrink: 0;
	backdrop-filter: blur(4px);
}
.voucher .tag {
	background: var(--gold-top);
	color: var(--choc);
	font-size: 12px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 8px;
}

/* ===== REVIEWS ===== */
.reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.review-card {
	background: var(--white);
	border-radius: 20px;
	padding: 20px;
	box-shadow: 0 2px 12px rgba(60, 25, 16, 0.05);
	border: 1px solid var(--line);
	transition: all 0.25s ease;
}
.review-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(60, 25, 16, 0.08);
}
.review-stars {
	color: var(--gold-bottom);
	font-size: 14px;
	letter-spacing: 2px;
	margin-bottom: 8px;
}
.review-text {
	font-size: 13.5px;
	line-height: 1.6;
	color: #5c4237;
	margin-bottom: 12px;
}
.review-author {
	display: flex;
	align-items: center;
	gap: 12px;
}
.review-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--gold-top), var(--gold-bottom));
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 13px;
	color: var(--choc);
}
.review-author .name {
	font-size: 13px;
	font-weight: 700;
	color: var(--choc);
}
.review-author .role {
	font-size: 11.5px;
	color: #9a7c6e;
}

/* ===== SECTION SUB ROW (deskripsi + lihat semua) ===== */
.section-sub-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 32px;
}
.section-sub-row .section-sub {
	margin-bottom: 0;
}
.btn-lihat-semua {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 700;
	color: var(--orange);
	padding: 10px 22px;
	border-radius: 999px;
	border: 1.5px solid var(--orange);
	background: transparent;
	transition: all 0.25s ease;
	flex-shrink: 0;
}
.btn-lihat-semua svg {
	width: 16px;
	height: 16px;
	stroke: currentColor;
	fill: none;
	transition: transform 0.2s ease;
}
.btn-lihat-semua:hover {
	background: var(--orange);
	color: var(--white);
	box-shadow: 0 4px 16px rgba(242, 104, 34, 0.2);
}
.btn-lihat-semua:hover svg {
	transform: translateX(3px);
}

/* ===== ARTICLES ===== */
.articles-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.article-card {
	display: block;
	color: inherit;
	background: var(--white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(60, 25, 16, 0.05);
	border: 1px solid var(--line);
	transition: all 0.3s ease;
}
.article-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 36px rgba(60, 25, 16, 0.08);
	border-color: var(--orange);
}
.article-img {
	width: 100%;
	height: 180px;
	background: linear-gradient(135deg, var(--gold-top), var(--orange));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 42px;
	color: var(--choc);
	font-weight: 800;
}
.article-body {
	padding: 20px 22px 24px;
}
.article-body .badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--white);
	background: var(--orange);
	padding: 4px 14px;
	border-radius: 999px;
	margin-bottom: 10px;
}
.article-body h4 {
	font-size: 16px;
	font-weight: 800;
	color: var(--choc);
	margin-bottom: 6px;
}
.article-body p {
	font-size: 13.5px;
	line-height: 1.5;
	color: #6b4a3e;
}

/* ===== FOOTER ===== */
footer.site-footer {
	background: var(--choc);
	color: var(--white);
	margin-top: 0;
	width: 100%;
	border-top: 4px solid var(--gold-top);
}
.footer-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 40px;
	padding: 48px clamp(20px, 4vw, 56px) 32px;
}
.footer-logo img {
	height: 80px;
	margin-bottom: 14px;
}
.footer-inner p {
	font-size: 14px;
	line-height: 1.7;
	color: #d4c0b6;
	max-width: 320px;
}
.footer-col h4 {
	font-family: "Baloo 2", sans-serif;
	font-size: 16px;
	margin-bottom: 14px;
	color: var(--gold-top);
}
.footer-col ul li {
	margin-bottom: 10px;
}
.footer-col a {
	font-size: 14px;
	color: #d4c0b6;
	transition: color 0.2s;
}
.footer-col a:hover {
	color: var(--gold-top);
}
.footer-contact li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	color: #d4c0b6;
	margin-bottom: 12px;
}
.footer-contact svg {
	width: 18px;
	height: 18px;
	stroke: var(--gold-top);
	fill: none;
	flex-shrink: 0;
}

/* ===== FOOTER CONTACT CARD (WhatsApp CTA) ===== */
.modern-contact-card {
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.1),
		rgba(255, 255, 255, 0.03)
	);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 20px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
}
.modern-contact-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	background: linear-gradient(
		to right,
		transparent,
		rgba(255, 255, 255, 0.1),
		transparent
	);
	transform: skewX(-25deg);
	transition: 0.6s;
}
.modern-contact-card:hover::before {
	left: 150%;
}
.modern-contact-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 40px rgba(37, 211, 102, 0.25);
	border-color: rgba(37, 211, 102, 0.5);
}
.modern-contact-card .contact-card-header {
	display: flex;
	align-items: center;
	gap: 16px;
}
.icon-pulse {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(37, 211, 102, 0.15);
	position: relative;
	flex-shrink: 0;
}
.icon-pulse::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: rgba(37, 211, 102, 0.4);
	z-index: -1;
	animation: pulse 2s infinite cubic-bezier(0.25, 0.8, 0.25, 1);
}
@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	100% {
		transform: scale(1.7);
		opacity: 0;
	}
}
.icon-pulse svg {
	width: 24px;
	height: 24px;
}
.contact-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.contact-text .gradient-text {
	font-size: 16px;
	font-weight: 800;
	background: linear-gradient(135deg, #ffffff, #e0e0e0);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.contact-text span {
	font-size: 13.5px;
	color: #d4c0b6;
	font-weight: 500;
}
.btn-wa-modern {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 14px 24px;
	border-radius: 12px;
	background: linear-gradient(135deg, #25d366, #1da851);
	color: #fff !important;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.03em;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
	text-transform: uppercase;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.btn-wa-modern svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	transition: transform 0.3s ease;
}
.btn-wa-modern:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
	color: #fff;
}
.btn-wa-modern:hover svg {
	transform: scale(1.15) rotate(-5deg);
}
.btn-wa-modern:active {
	transform: translateY(1px);
	box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	text-align: center;
	font-size: 13px;
	color: #a08478;
	padding: 20px 20px 24px;
	max-width: 1100px;
	margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
	.hero {
		grid-template-columns: 1fr;
	}
	.hero-art {
		order: -1;
	}
	.vismis-grid {
		grid-template-columns: 1fr;
	}
	.community-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.values-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.goals-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.reviews-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.articles-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.footer-inner {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 640px) {
	.main-nav {
		display: none;
	}
	.community-grid {
		grid-template-columns: 1fr;
	}
	.values-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.goals-grid {
		grid-template-columns: 1fr;
	}
	.reviews-grid {
		grid-template-columns: 1fr;
	}
	.articles-grid {
		grid-template-columns: 1fr;
	}
	.offer-banner {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}
	.model-box {
		flex-direction: column;
		align-items: flex-start;
	}
	.section-full {
		padding: 40px 0;
	}
}

/* ===== LIST ARTIKEL SPESIFIC ===== */

/* --- Page Header --- */
.list-header {
	padding: 40px 0 0;
}
.list-header .container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 56px);
}
.list-header .breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #9a7c6e;
	margin-bottom: 16px;
}
.list-header .breadcrumb a {
	color: var(--orange);
	font-weight: 600;
	transition: color 0.2s;
}
.list-header .breadcrumb a:hover {
	color: var(--orange-dark);
}
.list-header .breadcrumb .sep {
	color: #d4c0b6;
}

/* --- Filter / Search Bar --- */
.list-toolbar {
	padding: 20px 0 32px;
}
.list-toolbar .container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 56px);
}
.toolbar-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.toolbar-inner .filter-group {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.toolbar-inner .filter-btn {
	font-size: 13px;
	font-weight: 600;
	padding: 8px 20px;
	border-radius: 999px;
	background: var(--white);
	color: var(--choc);
	border: 1px solid var(--line);
	cursor: pointer;
	transition: all 0.2s ease;
}
.toolbar-inner .filter-btn:hover {
	border-color: var(--orange);
	color: var(--orange);
}
.toolbar-inner .filter-btn.active {
	background: var(--orange);
	color: var(--white);
	border-color: var(--orange);
	box-shadow: 0 4px 12px rgba(242, 104, 34, 0.2);
}
.search-wrap {
	position: relative;
	display: flex;
	align-items: center;
}
.search-wrap input {
	font-family: inherit;
	font-size: 14px;
	padding: 10px 16px 10px 42px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: var(--white);
	color: var(--choc);
	width: 260px;
	outline: none;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}
.search-wrap input:focus {
	border-color: var(--orange);
	box-shadow: 0 0 0 3px rgba(242, 104, 34, 0.1);
}
.search-wrap input::placeholder {
	color: #b8a094;
}
.search-wrap .search-icon {
	position: absolute;
	left: 14px;
	width: 18px;
	height: 18px;
	stroke: #b8a094;
	fill: none;
	pointer-events: none;
}

/* --- Article List --- */
.article-list-section {
	padding: 0 0 48px;
}
.article-list-section .container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 56px);
}
.article-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.article-list-item {
	display: flex;
	gap: 36px;
	background: var(--white);
	border-radius: 20px;
	padding: 20px;
	border: 1px solid var(--line);
	box-shadow: 0 2px 12px rgba(60, 25, 16, 0.04);
	transition: all 0.25s ease;
}
.article-list-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 28px rgba(60, 25, 16, 0.08);
	border-color: var(--orange);
}
.article-list-item .thumb {
	width: 280px;
	min-height: 180px;
	flex-shrink: 0;
	border-radius: 14px;
	overflow: hidden;
	background: linear-gradient(135deg, var(--gold-top), var(--orange));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 48px;
}
.article-list-item .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.article-list-item .content {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.article-list-item .content .badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--white);
	background: var(--orange);
	padding: 4px 14px;
	border-radius: 999px;
	margin-bottom: 10px;
	align-self: flex-start;
}
.article-list-item .content h3 {
	font-family: "Baloo 2", sans-serif;
	font-size: clamp(18px, 1.8vw, 22px);
	font-weight: 800;
	color: var(--choc);
	margin-bottom: 8px;
	line-height: 1.2;
}
.article-list-item .content .excerpt {
	font-size: 14px;
	line-height: 1.65;
	color: #6b4a3e;
	margin-bottom: 14px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.article-list-item .content .meta-bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
}
.article-list-item .content .tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.article-list-item .content .tags .tag {
	font-size: 11px;
	font-weight: 600;
	color: var(--orange);
	background: rgba(242, 104, 34, 0.08);
	padding: 3px 12px;
	border-radius: 999px;
}
.article-list-item .content .date {
	font-size: 13px;
	color: #9a7c6e;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 6px;
}
.article-list-item .content .date svg {
	width: 14px;
	height: 14px;
	stroke: #b8a094;
	fill: none;
}

/* --- Load More --- */
.load-more-wrap {
	text-align: center;
	margin-top: 36px;
}
.btn-load-more {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: inherit;
	font-size: 15px;
	font-weight: 700;
	color: var(--white);
	background: linear-gradient(135deg, var(--orange), var(--orange-dark));
	padding: 14px 36px;
	border-radius: 14px;
	border: none;
	cursor: pointer;
	box-shadow: 0 6px 20px rgba(242, 104, 34, 0.25);
	transition: all 0.2s ease;
}
.btn-load-more:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(242, 104, 34, 0.35);
}
.btn-load-more:active {
	transform: translateY(1px);
}
.btn-load-more svg {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	fill: none;
}
.load-more-wrap .info-text {
	font-size: 13px;
	color: #9a7c6e;
	margin-top: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
	.article-list-item {
		flex-direction: column;
	}
	.article-list-item .thumb {
		width: 100%;
		height: 200px;
		min-height: unset;
	}
	.search-wrap input {
		width: 100%;
	}
	.toolbar-inner {
		flex-direction: column;
		align-items: stretch;
	}
}
@media (max-width: 640px) {
	.article-list-item .thumb {
		height: 160px;
	}
	.article-list-item .content .meta-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ===== DETAIL ARTIKEL SPESIFIC ===== */

/* --- Article Hero / Header --- */
.article-detail-hero {
	padding: 24px 0 0;
}
.article-detail-hero .container {
	max-width: 820px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 56px);
}
.article-detail-hero .thumbnail-wrap {
	width: 100%;
	border-radius: 24px;
	overflow: hidden;
	margin-bottom: 28px;
	box-shadow: 0 8px 32px rgba(60, 25, 16, 0.08);
}
.article-detail-hero .thumbnail-wrap img {
	width: 100%;
	height: auto;
	max-height: 460px;
	object-fit: cover;
	display: block;
}
.article-detail-hero .badge-category {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--white);
	background: var(--orange);
	padding: 6px 18px;
	border-radius: 999px;
	margin-bottom: 14px;
}
.article-detail-hero h1 {
	font-family: "Baloo 2", sans-serif;
	font-size: clamp(28px, 3.6vw, 40px);
	font-weight: 800;
	color: var(--choc);
	line-height: 1.12;
	margin-bottom: 16px;
}
.article-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	font-size: 14px;
	color: #8a6b5e;
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--line);
}
.article-meta .meta-item {
	display: flex;
	align-items: center;
	gap: 6px;
}
.article-meta .meta-item svg {
	width: 16px;
	height: 16px;
	stroke: var(--orange);
	fill: none;
	flex-shrink: 0;
}
.article-meta .meta-item strong {
	color: var(--choc);
	font-weight: 600;
}

/* --- Article Content --- */
.article-content-wrap {
	padding: 0 0 40px;
}
.article-content-wrap .container {
	max-width: 820px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 56px);
}
.article-body-content {
	font-size: 16px;
	line-height: 1.85;
	color: #4a352c;
}
.article-body-content p {
	margin-bottom: 20px;
}
.article-body-content h2 {
	font-family: "Baloo 2", sans-serif;
	font-size: clamp(22px, 2.6vw, 28px);
	font-weight: 800;
	color: var(--choc);
	margin-top: 36px;
	margin-bottom: 14px;
}
.article-body-content h3 {
	font-family: "Baloo 2", sans-serif;
	font-size: clamp(18px, 2vw, 22px);
	font-weight: 700;
	color: var(--choc);
	margin-top: 28px;
	margin-bottom: 10px;
}
.article-body-content ul,
.article-body-content ol {
	margin-bottom: 20px;
	padding-left: 24px;
}
.article-body-content ul li {
	list-style: disc;
	margin-bottom: 8px;
}
.article-body-content ol li {
	list-style: decimal;
	margin-bottom: 8px;
}
.article-body-content blockquote {
	border-left: 4px solid var(--orange);
	background: var(--bg-section-2);
	padding: 18px 24px;
	margin: 24px 0;
	border-radius: 0 16px 16px 0;
	font-style: italic;
	color: #5c4237;
}
.article-body-content blockquote strong {
	color: var(--choc);
}
.article-body-content img {
	width: 100%;
	border-radius: 16px;
	margin: 24px 0;
	box-shadow: 0 4px 16px rgba(60, 25, 16, 0.06);
}
.article-body-content .img-caption {
	font-size: 13px;
	color: #9a7c6e;
	text-align: center;
	margin-top: -16px;
	margin-bottom: 24px;
}

/* --- Tags --- */
.article-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
}
.article-tags .tag {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	color: var(--orange);
	background: rgba(242, 104, 34, 0.08);
	padding: 6px 16px;
	border-radius: 999px;
	transition: all 0.2s ease;
}
.article-tags .tag:hover {
	background: var(--orange);
	color: var(--white);
}

/* --- Article Navigation (Prev / Next) --- */
.article-nav-section {
	padding: 0 0 48px;
}
.article-nav-section .container {
	max-width: 820px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 56px);
}
.article-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.article-nav a {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 20px 24px;
	border-radius: 16px;
	background: var(--white);
	border: 1px solid var(--line);
	box-shadow: 0 2px 12px rgba(60, 25, 16, 0.04);
	transition: all 0.25s ease;
}
.article-nav a:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(60, 25, 16, 0.08);
	border-color: var(--orange);
}
.article-nav .nav-label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--orange);
	display: flex;
	align-items: center;
	gap: 6px;
}
.article-nav .nav-label svg {
	width: 14px;
	height: 14px;
	stroke: currentColor;
	fill: none;
}
.article-nav .nav-title {
	font-size: 14px;
	font-weight: 700;
	color: var(--choc);
	line-height: 1.4;
}
.article-nav .nav-next {
	text-align: right;
}
.article-nav .nav-next .nav-label {
	justify-content: flex-end;
}

/* --- Related Articles --- */
.related-section {
	padding: 48px 0;
	background: var(--bg-section-2);
}
.related-section .container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 56px);
}
.related-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
	flex-wrap: wrap;
	gap: 12px;
}
.related-header h3 {
	font-family: "Baloo 2", sans-serif;
	font-size: 22px;
	font-weight: 800;
	color: var(--choc);
	display: flex;
	align-items: center;
	gap: 10px;
}
.related-header h3 svg {
	width: 22px;
	height: 22px;
	stroke: var(--orange);
	fill: none;
}
.related-header .lihat-semua {
	font-size: 14px;
	font-weight: 700;
	color: var(--orange);
	display: flex;
	align-items: center;
	gap: 6px;
	transition: gap 0.2s ease;
}
.related-header .lihat-semua:hover {
	gap: 10px;
}
.related-header .lihat-semua svg {
	width: 16px;
	height: 16px;
	stroke: currentColor;
	fill: none;
}
.related-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.related-card {
	display: flex;
	gap: 16px;
	background: var(--white);
	border-radius: 16px;
	padding: 16px;
	border: 1px solid var(--line);
	box-shadow: 0 2px 12px rgba(60, 25, 16, 0.04);
	transition: all 0.25s ease;
}
.related-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(60, 25, 16, 0.08);
	border-color: var(--orange);
}
.related-card .thumb {
	width: 100px;
	height: 80px;
	flex-shrink: 0;
	border-radius: 12px;
	overflow: hidden;
	background: linear-gradient(135deg, var(--gold-top), var(--orange));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
}
.related-card .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.related-card .info {
	flex: 1;
	min-width: 0;
}
.related-card .info .badge {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--white);
	background: var(--orange);
	padding: 3px 12px;
	border-radius: 999px;
	margin-bottom: 6px;
}
.related-card .info h4 {
	font-size: 14px;
	font-weight: 700;
	color: var(--choc);
	line-height: 1.4;
	margin-bottom: 4px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.related-card .info .date {
	font-size: 12px;
	color: #9a7c6e;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
	.article-nav {
		grid-template-columns: 1fr;
	}
	.related-grid {
		grid-template-columns: 1fr;
	}
	.related-card .thumb {
		width: 80px;
		height: 64px;
	}
}
@media (max-width: 640px) {
	.article-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
}

/* Star Rating */
.star-rating {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	gap: 4px;
}
.star-rating input {
	display: none;
}
.star-rating label {
	font-size: 32px;
	color: #e0d6cc;
	cursor: pointer;
	transition: color 0.2s;
}
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
	color: var(--gold-bottom);
}

/* Review Slider Wrap */
.review-slider-wrap {
	position: relative;
	width: 100%;
	margin: 0 auto;
}
.review-slider-wrap .swiper {
	width: 100%;
	padding: 10px 0;
	overflow: hidden;
}
.review-slider-wrap .swiper-slide {
	height: auto;
	box-sizing: border-box;
}
.review-slider-wrap .review-card {
	margin: 0 auto;
	padding: 18px 20px;
	height: 100%;
	display: flex;
	flex-direction: column;
	min-height: 180px;
	max-height: 200px;
	width: 100%;
	box-sizing: border-box;
}
.review-slider-wrap .review-card .review-text {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	font-size: 13px;
	margin-bottom: 10px;
	flex: 1;
}
.review-slider-wrap .review-card .review-stars {
	font-size: 13px;
	margin-bottom: 6px;
}

/* Navigation Buttons (overlaid on swiper) */
.review-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--white);
	border: 2px solid var(--choc);
	color: var(--choc);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	pointer-events: auto;
}
.review-prev {
	left: -20px;
}
.review-next {
	right: -20px;
}
.review-nav svg {
	width: 20px;
	height: 20px;
	stroke: currentColor;
	fill: none;
}
.review-nav:hover {
	background: var(--orange);
	border-color: var(--orange);
	color: var(--white);
}

/* Pagination */
.review-pagination {
	text-align: center;
	margin-top: 8px;
}
.review-pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--choc);
	opacity: 0.2;
	margin: 0 4px;
	display: inline-block;
	cursor: pointer;
	transition: all 0.2s;
}
.review-pagination .swiper-pagination-bullet-active {
	background: var(--orange);
	opacity: 1;
	width: 24px;
	border-radius: 4px;
}

@media (max-width: 640px) {
	.review-nav {
		display: none;
	}
}

/* ===== RESPONSIVE MENU ===== */
.mobile-menu-btn {
	display: none;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 1001;
	flex-direction: column;
	gap: 6px;
}

.mobile-menu-btn span {
	display: block;
	width: 26px;
	height: 3px;
	background-color: var(--choc);
	border-radius: 3px;
	transition: all 0.3s ease;
}

@media (max-width: 1024px) {
	.mobile-menu-btn {
		display: flex;
	}

	.main-nav {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: rgba(255, 255, 255, 0.98);
		box-shadow: 0 10px 20px rgba(60, 25, 16, 0.08);
		border-top: 1px solid var(--line);
		border-bottom: 1px solid var(--line);
		padding: 30px 24px;
		display: flex;
		flex-direction: column;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-15px);
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		pointer-events: none;
	}

	.main-nav.active {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		pointer-events: auto;
	}

	.main-nav ul {
		flex-direction: column;
		gap: 20px;
		align-items: center;
		width: 100%;
	}

	.main-nav a {
		font-size: 16px;
		display: block;
		text-align: center;
		width: 100%;
		padding: 8px;
	}

	/* Hamburger Animation */
	.mobile-menu-btn.active span:nth-child(1) {
		transform: translateY(9px) rotate(45deg);
	}
	.mobile-menu-btn.active span:nth-child(2) {
		opacity: 0;
	}
	.mobile-menu-btn.active span:nth-child(3) {
		transform: translateY(-9px) rotate(-45deg);
	}
}
