/* Reset & Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-40px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(40px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

/* Animation Classes */
.animate {
	opacity: 0;
}

.animate.fade-in-up {
	animation: fadeInUp 0.8s ease forwards;
}

.animate.fade-in-left {
	animation: fadeInLeft 0.8s ease forwards;
}

.animate.fade-in-right {
	animation: fadeInRight 0.8s ease forwards;
}

.animate.fade-in {
	animation: fadeIn 0.8s ease forwards;
}

.animate.scale-in {
	animation: scaleIn 0.6s ease forwards;
}

/* Stagger delays for cards */
.animate.delay-1 {
	animation-delay: 0.1s;
}
.animate.delay-2 {
	animation-delay: 0.2s;
}
.animate.delay-3 {
	animation-delay: 0.3s;
}
.animate.delay-4 {
	animation-delay: 0.4s;
}
.animate.delay-5 {
	animation-delay: 0.5s;
}

/* Scroll-triggered animations */
.animate-on-scroll {
	opacity: 0;
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.fade-up {
	transform: translateY(40px);
}

.animate-on-scroll.slide-left {
	transform: translateX(-40px);
}

.animate-on-scroll.slide-right {
	transform: translateX(40px);
}

.animate-on-scroll.scale-up {
	transform: scale(0.9);
}

.animate-on-scroll.animated {
	opacity: 1;
	transform: translateY(0) translateX(0) scale(1);
}

/* Button hover animation */
.btn {
	position: relative;
	overflow: hidden;
}

.btn::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
	width: 300px;
	height: 300px;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
}

/* Button */
.btn {
	display: inline-block;
	padding: 12px 30px;
	background-color: #ea580c;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1rem;
	transition: background-color 0.3s ease;
}

.btn:hover {
	background-color: #c2410c;
}

/* Header / Navigation */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
}

.logo {
	font-size: 1.5rem;
	font-weight: bold;
	color: #ea580c;
}

.logo img {
	height: 50px;
	width: auto;
	display: block;
}

.nav-links {
	display: flex;
	gap: 30px;
}

.nav-links a {
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav-links a:hover {
	color: #ea580c;
}

.nav-btn {
	background-color: #ea580c;
	color: #fff !important;
	padding: 10px 25px;
	border-radius: 5px;
}

.nav-btn:hover {
	background-color: #c2410c;
	color: #fff !important;
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	background-color: #f9fafb;
	color: #333;
	padding-top: 70px;
}

.hero-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.hero-content {
	text-align: left;
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 20px;
	line-height: 1.2;
}

.hero p {
	font-size: 1.25rem;
	margin-bottom: 30px;
	opacity: 0.9;
}

.hero-buttons {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.hero .btn {
	background-color: #ea580c;
	color: #fff;
}

.hero .btn:hover {
	background-color: #c2410c;
}

.hero .btn-outline {
	background-color: #fff;
	color: #ea580c;
	border: 2px solid #ea580c;
}

.hero .btn-outline:hover {
	background-color: #ea580c;
	color: #fff;
}

.hero-image {
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-image img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	animation: float 3s ease-in-out infinite;
}

/* Kenapa Butuh Curhat Section */
.kenapa {
	padding: 100px 0;
	background-color: #f9fafb;
	position: relative;
	overflow: hidden;
}

.kenapa-decoration {
	position: absolute;
	top: 0;
	right: 50px;
	max-width: 300px;
	height: auto;
	pointer-events: none;
}

.kenapa h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 50px;
	color: #333;
}

.kenapa-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.kenapa-card {
	background-color: #fff;
	padding: 40px 25px;
	border-radius: 10px;
	text-align: center;
	transition: all 0.4s ease;
}

.kenapa-card:hover {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	transform: translateY(-8px);
}

.kenapa-card img {
	width: 80px;
	height: 80px;
	object-fit: contain;
	margin-bottom: 20px;
}

.kenapa-card h3 {
	font-size: 1.25rem;
	margin-bottom: 15px;
	color: #333;
}

.kenapa-card p {
	font-size: 0.95rem;
	color: #666;
	line-height: 1.6;
}

/* Solusi Kami Section */
.solusi {
	min-height: 100vh;
	padding: 100px 0;
	background-color: #f9fafb;
	display: flex;
	align-items: center;
}

.solusi .container {
	width: 100%;
	padding-left: 100px;
	padding-right: 100px;
}

.solusi-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 60px;
	gap: 40px;
}

.solusi-header h2 {
	font-size: 2.5rem;
	color: #333;
	margin: 0;
	flex-shrink: 0;
}

.solusi-header p {
	font-size: 1.1rem;
	color: #666;
	max-width: 500px;
	text-align: right;
	margin: 0;
}

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

.solusi-card {
	background-color: #fff;
	padding: 35px 30px;
	border-radius: 15px;
	text-align: left;
	transition: all 0.15s ease;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.solusi-card:hover {
	background-color: #fb923c;
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(234, 88, 12, 0.3);
}

.solusi-card:hover h3,
.solusi-card:hover p {
	color: #fff;
}

.solusi-card img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 50%;
	margin-bottom: 20px;
	transition: transform 0.15s ease;
}

.solusi-card:hover img {
	transform: scale(1.1) rotate(5deg);
}

.solusi-card h3 {
	font-size: 1.25rem;
	margin-bottom: 12px;
	color: #333;
	transition: color 0.15s ease;
}

.solusi-card p {
	font-size: 0.95rem;
	color: #666;
	line-height: 1.7;
	transition: color 0.15s ease;
}

/* Circle Divider */
.circle-divider {
	position: relative;
	height: 0;
	overflow: visible;
}

.circle-divider-left {
	position: absolute;
	width: 350px;
	height: 350px;
	background-color: transparent;
	border: 25px solid #fdba74;
	border-radius: 50%;
	left: -175px;
	top: -175px;
	z-index: 5;
}

/* Mulai Curhat Section */
.mulai {
	padding: 100px 0;
	background-color: #f9fafb;
}

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

.mulai-subtitle {
	display: block;
	font-size: 1rem;
	color: #ea580c;
	margin-bottom: 10px;
}

.mulai-header h2 {
	font-size: 2.5rem;
	color: #333;
	margin-bottom: 15px;
}

.mulai-header p {
	font-size: 1.1rem;
	color: #ea580c;
	max-width: 500px;
	margin: 0 auto;
}

.mulai-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	margin-top: 60px;
}

.mulai-card {
	background-color: #fff;
	border-radius: 8px 8px 30px 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	border-top: 4px solid #fdba74;
}

.mulai-card:hover {
	background-color: #fdba74;
	transform: translateY(-8px);
}

.mulai-card:hover .mulai-card-content h3,
.mulai-card:hover .mulai-card-content p {
	color: #fff;
}

.mulai-card-top {
	padding: 20px 20px 0 20px;
	display: flex;
	justify-content: flex-end;
}

.mulai-number {
	width: 28px;
	height: 28px;
	background-color: #e5e7eb;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875rem;
	font-weight: bold;
	color: #fb923c;
}

.mulai-card-content {
	padding: 25px 20px;
}

.mulai-card-content h3 {
	font-size: 1.1rem;
	color: #ea580c;
	margin-bottom: 10px;
	transition: color 0.3s ease;
}

.mulai-card-content p {
	font-size: 0.9rem;
	color: #333;
	line-height: 1.6;
	transition: color 0.3s ease;
}

/* User Review Section */
.review {
	padding: 100px 0;
	background-color: #fff;
	position: relative;
	overflow: hidden;
}

.review-header {
	text-align: center;
	margin-bottom: 50px;
}

.review-header h2 {
	font-size: 2.5rem;
	color: #333;
	margin-bottom: 15px;
}

.review-header p {
	font-size: 1.1rem;
	color: #666;
	max-width: 500px;
	margin: 0 auto;
}

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

.review-card {
	background-color: #f9fafb;
	padding: 30px;
	border-radius: 15px;
	transition: all 0.3s ease;
}

.review-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.review-stars {
	margin-bottom: 20px;
}

.review-stars i {
	color: #fbbf24;
	font-size: 1rem;
	margin-right: 2px;
}

.review-text {
	font-size: 1rem;
	color: #333;
	line-height: 1.7;
	margin-bottom: 25px;
	font-style: italic;
}

.review-author {
	display: flex;
	align-items: center;
	gap: 15px;
}

.review-avatar {
	width: 50px;
	height: 50px;
	background-color: #e5e7eb;
	border-radius: 50%;
}

.review-info h4 {
	font-size: 1rem;
	color: #333;
	margin-bottom: 3px;
}

.review-info span {
	font-size: 0.85rem;
	color: #666;
}

/* Coming Soon Overlay */
.coming-soon-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.9);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
}

.coming-soon-content {
	text-align: center;
	padding: 40px;
}

.coming-soon-content i {
	font-size: 4rem;
	color: #ea580c;
	margin-bottom: 20px;
}

.coming-soon-content h3 {
	font-size: 2.5rem;
	color: #333;
	margin-bottom: 15px;
}

.coming-soon-content p {
	font-size: 1.1rem;
	color: #666;
	max-width: 400px;
}

/* Download App Section */
.download {
	min-height: 100vh;
	background-color: #ea580c;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.download-decoration-left {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	max-width: 300px;
	height: auto;
	pointer-events: none;
}

.download-decoration-right {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	max-width: 300px;
	height: auto;
	pointer-events: none;
}

.download-content {
	text-align: center;
	color: #fff;
	max-width: 600px;
	margin: 0 auto;
}

.download-content h2 {
	font-size: 3rem;
	margin-bottom: 20px;
}

.download-content p {
	font-size: 1.25rem;
	margin-bottom: 40px;
	opacity: 0.9;
	line-height: 1.7;
}

.btn-download {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background-color: #fff;
	color: #ea580c;
	padding: 15px 35px;
	border-radius: 10px;
	font-size: 1.1rem;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-download:hover {
	background-color: #fff7ed;
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-download img {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

/* Footer */
.footer {
	padding: 60px 0 0 0;
	background-color: #1e293b;
	color: #fff;
}

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

.footer-col h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 10px;
}

.footer-col h4 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 15px;
}

.footer-col p {
	font-size: 0.9rem;
	line-height: 1.7;
	color: #cbd5e1;
}

.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-contact a {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #cbd5e1;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

.footer-contact a:hover {
	color: #fff;
}

.footer-contact i {
	font-size: 1rem;
	width: 20px;
}

.footer-bottom {
	margin-top: 40px;
	padding: 20px 0;
	border-top: 1px solid #334155;
	text-align: center;
}

.footer-bottom p {
	font-size: 0.85rem;
	color: #94a3b8;
}

.footer-legal {
	margin-top: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 0.82rem;
	color: #64748b;
}

.footer-legal a {
	color: #94a3b8;
	text-decoration: none;
	transition: color 0.2s;
}

.footer-legal a:hover {
	color: #FF6B35;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-links {
		display: none;
	}

	.hero-container {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-content {
		text-align: center;
		order: 1;
	}

	.hero-image {
		order: 0;
		margin-bottom: 30px;
	}

	.hero-buttons {
		justify-content: center;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero p {
		font-size: 1rem;
	}

	.kenapa h2,
	.solusi h2,
	.mulai-header h2,
	.download-content h2,
	.review-header h2,
	.coming-soon-content h3 {
		font-size: 2rem;
	}

	.review-grid {
		grid-template-columns: 1fr;
		max-width: 500px;
		margin: 0 auto;
	}

	.download-content p {
		font-size: 1rem;
	}

	.kenapa-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.solusi .container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.solusi-header {
		flex-direction: column;
		text-align: center;
		gap: 20px;
	}

	.solusi-header h2 {
		font-size: 2rem;
	}

	.solusi-header p {
		text-align: center;
		max-width: 100%;
	}

	.solusi-grid {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin: 0 auto;
	}

	.solusi-card {
		text-align: center;
		align-items: center;
	}

	.mulai-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 30px;
		text-align: center;
	}

	.footer-contact {
		align-items: center;
	}
}

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

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

/* ===== Trust Section ===== */
.trust-section {
	background: linear-gradient(135deg, #fff8f4, #fff3ec);
	border-top: 1px solid #ffe0cc;
	border-bottom: 1px solid #ffe0cc;
	padding: 64px 0;
	text-align: center;
}

.trust-section .trust-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	margin-bottom: 28px;
	flex-wrap: wrap;
}

.trust-section .trust-shield {
	font-size: 3.5rem;
	color: #FF6B35;
	filter: drop-shadow(0 2px 8px rgba(255,107,53,0.25));
	flex-shrink: 0;
}

.trust-section .trust-text h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #FF6B35;
	margin-bottom: 8px;
}

.trust-section .trust-text p {
	font-size: 0.95rem;
	color: #555;
	line-height: 1.6;
}

.trust-section .trust-text p strong {
	color: #FF6B35;
}

.trust-section .trust-buttons {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

@media (max-width: 640px) {
	.trust-section .trust-content {
		flex-direction: column;
	}

	.trust-section .trust-text h3 {
		font-size: 1.2rem;
	}
}
