:root {
	--primary-deep: #002455;
	--text-dark: #2c3e50;
	--bg-light: #f8faff;
}

html {
	scroll-behavior: smooth !important;
	overflow-x: hidden;
}

body {
	font-family: "Poppins", sans-serif;
	color: var(--text-dark);
	background-color: #ffffff;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	text-decoration: none !important;
}

.text-primary-custom {
	color: var(--primary-deep);
}

.bg-primary-custom {
	background-color: var(--primary-deep);
}

.section-padding {
	padding: 100px 0;
}

.section-title {
	font-weight: 700;
	color: var(--primary-deep);
	margin-bottom: 10px;
	position: relative;
	display: inline-block;
}

.navbar {
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
	padding: 15px 0;
}

.navbar-brand {
	color: var(--primary-deep) !important;
	font-weight: 700;
	font-size: 1.5rem;
}

.nav-link {
	color: var(--primary-deep) !important;
	font-weight: 500;
}

.btn-login {
	background-color: var(--primary-deep);
	color: white;
	border-radius: 50px;
	padding: 8px 25px;
	transition: 0.3s;
}

.btn-login:hover {
	background-color: #001533;
	color: #fff;
	transform: translateY(-2px);
}

.hero-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: white;
	background-image: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
	padding-top: 80px;
}

section {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	color: var(--primary-deep);
	line-height: 1.2;
}

.btn-hero {
	background-color: var(--primary-deep);
	color: white;
	padding: 15px 40px;
	border-radius: 50px;
	font-weight: 600;
	border: 2px solid var(--primary-deep);
	transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.btn-hero:hover {
	background-color: white;
	color: var(--primary-deep);
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 36, 85, 0.2);
}

.btn-outline-hero {
	background: transparent;
	color: black;
	padding: 15px 40px;
	border-radius: 50px;
	font-weight: 600;
	border: 2px solid var(--primary-deep);
	transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.btn-outline-hero:hover {
	background-color: white;
	color: var(--primary-deep);
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 36, 85, 0.2);
}

.custom-card {
	background: white;
	border: none;
	border-top: 5px solid var(--primary-deep);
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	height: 100%;
	padding: 30px;
}

.custom-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 36, 85, 0.15);
}

.price-nominal {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary-deep);
}

.creator-box {
	background: var(--bg-light);
	padding: 30px;
	border-left: 5px solid var(--primary-deep);
	border-radius: 5px;
}

.form-control-custom {
	background: #f4f7f6;
	border: 1px solid #e1e1e1;
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 15px;
}

.form-control-custom:focus {
	background: white;
	border-color: var(--primary-deep);
	box-shadow: none;
}

.contact-icon-box {
	width: 50px;
	height: 50px;
	background: var(--primary-deep);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}

footer {
	background: var(--primary-deep);
	color: white;
	padding: 30px 0;
}

@media (max-width: 991.98px) {
	/* Navbar Dropdown styling */
	.navbar-collapse {
		background: #ffffff;
		padding: 20px;
		margin-top: 10px;
		border-radius: 10px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
		position: absolute;
		top: 60px;
		left: 0;
		right: 0;
		z-index: 999;
		width: 90%;
		margin-left: auto;
		margin-right: auto;
	}

	.navbar-nav .nav-link {
		padding: 10px 0;
		text-align: center;
	}

	.btn-login {
		display: block;
		width: 100%;
		margin-top: 10px;
		margin-left: 0 !important;
		text-align: center;
	}

	/* Hero Title sedikit mengecil */
	.hero-title {
		font-size: 2.8rem;
	}
}

/* Untuk Mobile Portrait (Layar < 768px) */
@media (max-width: 767.98px) {
	/* Mengatur ulang tinggi section agar tidak memaksa 100vh jika konten panjang */
	section {
		min-height: auto;
		padding-bottom: 20px;
	}

	.section-padding {
		padding: 60px 0;
	}

	/* Font Size Adjustment */
	.hero-title {
		font-size: 2rem;
	}

	.section-title {
		font-size: 1.75rem;
	}

	.lead {
		font-size: 1rem;
	}

	/* Layout Adjustments */
	.hero-section {
		padding-top: 100px;
		/* Tambah padding atas agar tidak ketutup navbar */
		text-align: center;
	}

	.creator-box {
		padding: 20px;
		margin-top: 20px;
	}

	/* Tombol Full Width di Mobile */
	.btn-hero,
	.btn-outline-hero {
		width: 100%;
		display: block;
		padding: 12px;
		margin-bottom: 10px;
	}

	/* Margin antar kartu */
	.col-lg-3,
	.col-md-6,
	.col-lg-5 {
		margin-bottom: 20px;
	}
}
