:root {
	--default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--heading-font: "Nunito", sans-serif;
	--nav-font: "Poppins", sans-serif;
	--background-color: #FFFFFF;
	--font-color: #444444;
	--fc-color: #3B5D50;
	--fc-hover-color: #096B68;
	--surface-color: #FFFFFF;
	--nav-mobile-background-color: #FFFFFF;
	--nav-dropdown-background-color: #FFFFFF;
	--nav-dropdown-color: #212529;
	scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
	color: var(--font-color);
	background-color: var(--background-color);
	font-family: var(--default-font);
}

* {
	text-decoration: none !important;
}

a {
	color: var(--fc-color);
	text-decoration: none;
	transition: 0.3s;
}

a:hover {
	color: color-mix(in srgb, var(--fc-hover-color), transparent 25%);
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--fc-color);
	font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
	color: var(--font-color);
	background-color: var(--background-color);
	padding: 20px 0;
	transition: all 0.5s;
	z-index: 997;
}

.header .logo {
	line-height: 1;
}

.header .logo img {
	max-height: 36px;
	margin-right: 8px;
}

.header .logo h1 {
	font-size: 30px;
	margin: 0;
	font-weight: 700;
	color: var(--fc-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
	color: var(--surface-color);
	background: var(--fc-hover-color);
	font-size: 15px;
	padding: 8px 25px;
	margin: 0 0 0 30px;
	border-radius: 4px;
	transition: 0.3s;
	font-weight: 500;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
	color: var(--surface-color);
	background: color-mix(in srgb, var(--fc-hover-color), transparent 15%);
}

.header .btn-logout,
.header .btn-logout:focus {
	color: var(--surface-color);
	background: #DC3545;
	font-size: 15px;
	padding: 8px 25px;
	margin: 0 0 0 30px;
	border-radius: 4px;
	transition: 0.3s;
	font-weight: 500;
}

.header .btn-logout:hover,
.header .btn-logout:focus:hover {
	color: var(--surface-color);
	background: color-mix(in srgb, #DC3545, transparent 15%);
}

@media (max-width: 1200px) {
	.header .logo {
		order: 1;
	}

	.header .btn-getstarted {
		order: 2;
		margin: 0 15px 0 0;
		padding: 6px 15px;
	}

	.header .btn-logout {
		order: 2;
		margin: 0 15px 0 0;
		padding: 6px 15px;
	}

	.header .navmenu {
		order: 3;
	}
}

.scrolled .header {
	box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.index-page .header {
	--background-color: rgba(255, 255, 255, 0);
}

.index-page.scrolled .header {
	--background-color: #FFFFFF;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
	.navmenu {
		padding: 0;
	}

	.navmenu ul {
		margin: 0;
		padding: 0;
		display: flex;
		list-style: none;
		align-items: center;
	}

	.navmenu li {
		position: relative;
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--fc-color);
		padding: 18px 12px;
		font-size: 18px;
		font-family: var(--nav-font);
		font-weight: 500;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		transition: 0.3s;
	}

	.navmenu li:last-child a {
		padding-right: 0;
	}

	.navmenu li:hover>a,
	.navmenu .active,
	.navmenu .active:focus {
		color: var(--fc-hover-color);
	}

	.navmenu .dropdown ul {
		margin: 0;
		padding: 10px 0;
		background: var(--nav-dropdown-background-color);
		display: block;
		position: absolute;
		visibility: hidden;
		left: 14px;
		top: 130%;
		opacity: 0;
		transition: 0.3s;
		border-radius: 4px;
		z-index: 99;
		box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
	}

	.navmenu .dropdown ul li {
		min-width: 200px;
	}

	.navmenu .dropdown ul a {
		padding: 10px 20px;
		font-size: 15px;
		font-weight: bold;
		text-transform: none;
		color: var(--nav-dropdown-color);
	}

	.navmenu .dropdown ul a i {
		font-size: 12px;
	}

	.navmenu .dropdown ul a:hover,
	.navmenu .dropdown ul .active:hover,
	.navmenu .dropdown ul li:hover>a {
		color: var(--fc-hover-color);
	}

	.navmenu .dropdown:hover>ul {
		opacity: 1;
		top: 100%;
		visibility: visible;
	}

	.navmenu .dropdown .dropdown ul {
		top: 0;
		left: -90%;
		visibility: hidden;
	}

	.navmenu .dropdown .dropdown:hover>ul {
		opacity: 1;
		top: 0;
		left: -100%;
		visibility: visible;
	}
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
	.mobile-nav-toggle {
		color: var(--fc-color);
		font-size: 28px;
		line-height: 0;
		margin-right: 10px;
		cursor: pointer;
		transition: color 0.3s;
	}

	.navmenu {
		padding: 0;
		z-index: 9997;
	}

	.navmenu ul {
		display: none;
		list-style: none;
		position: absolute;
		inset: 60px 20px 20px 20px;
		padding: 10px 0;
		margin: 0;
		border-radius: 6px;
		background-color: var(--nav-mobile-background-color);
		overflow-y: auto;
		transition: 0.3s;
		z-index: 9998;
		box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--nav-dropdown-color);
		padding: 10px 20px;
		font-family: var(--nav-font);
		font-size: 17px;
		font-weight: 500;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 12px;
		line-height: 0;
		margin-left: 5px;
		width: 30px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		transition: 0.3s;
		background-color: color-mix(in srgb, var(--fc-hover-color), transparent 90%);
	}

	.navmenu a i:hover,
	.navmenu a:focus i:hover {
		background-color: var(--fc-hover-color);
		color: var(--surface-color);
	}

	.navmenu a:hover,
	.navmenu .active,
	.navmenu .active:focus {
		color: var(--fc-hover-color);
	}

	.navmenu .active i,
	.navmenu .active:focus i {
		background-color: var(--fc-hover-color);
		color: var(--surface-color);
		transform: rotate(180deg);
	}

	.navmenu .dropdown ul {
		position: static;
		display: none;
		z-index: 99;
		padding: 10px 0;
		margin: 10px 20px;
		background-color: var(--nav-dropdown-background-color);
		border: 1px solid color-mix(in srgb, var(--font-color), transparent 90%);
		box-shadow: none;
		transition: all 0.5s ease-in-out;
	}

	.navmenu .dropdown ul ul {
		background-color: rgba(33, 37, 41, 0.1);
	}

	.navmenu .dropdown>.dropdown-active {
		display: block;
		background-color: rgba(33, 37, 41, 0.03);
	}

	.mobile-nav-active {
		overflow: hidden;
	}

	.mobile-nav-active .mobile-nav-toggle {
		color: var(--surface-color);
		position: absolute;
		font-size: 32px;
		top: 15px;
		right: 15px;
		margin-right: 0;
		z-index: 9999;
	}

	.mobile-nav-active .navmenu {
		position: fixed;
		overflow: hidden;
		inset: 0;
		background: rgba(33, 37, 41, 0.8);
		transition: 0.3s;
	}

	.mobile-nav-active .navmenu>ul {
		display: block;
	}
}

/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
	.navmenu .listing-dropdown {
		position: static;
	}

	.navmenu .listing-dropdown ul {
		margin: 0;
		padding: 10px;
		background: var(--nav-dropdown-background-color);
		box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
		position: absolute;
		top: 130%;
		left: 0;
		right: 0;
		visibility: hidden;
		opacity: 0;
		display: flex;
		transition: 0.3s;
		border-radius: 4px;
		z-index: 99;
	}

	.navmenu .listing-dropdown ul li {
		flex: 1;
	}

	.navmenu .listing-dropdown ul li a,
	.navmenu .listing-dropdown ul li:hover>a {
		padding: 10px 20px;
		font-weight: bold;
		font-size: 15px;
		color: var(--nav-dropdown-color);
		background-color: var(--nav-dropdown-background-color);
	}

	.navmenu .listing-dropdown ul li a:hover,
	.navmenu .listing-dropdown ul li .active,
	.navmenu .listing-dropdown ul li .active:hover {
		color: var(--fc-hover-color);
		background-color: var(--nav-dropdown-background-color);
	}

	.navmenu .listing-dropdown:hover>ul {
		opacity: 1;
		top: 100%;
		visibility: visible;
	}
}

/* Listing Dropdown - Mobile */
@media (max-width: 1199px) {
	.navmenu .listing-dropdown ul {
		position: static;
		display: none;
		z-index: 99;
		padding: 10px 0;
		margin: 10px 20px;
		background-color: var(--nav-dropdown-background-color);
		border: 1px solid color-mix(in srgb, var(--font-color), transparent 90%);
		box-shadow: none;
		transition: all 0.5s ease-in-out;
	}

	.navmenu .dropdown ul a {
		padding: 10px 20px;
		font-size: 15px;
		font-weight: bold;
		text-transform: none;
		color: var(--nav-dropdown-color);
	}

	.navmenu .listing-dropdown ul li a {
		padding: 10px 20px;
		font-weight: bold;
		font-size: 15px;
		color: var(--nav-dropdown-color);
	}

	.navmenu .listing-dropdown>.dropdown-active {
		display: block;
		background-color: rgba(33, 37, 41, 0.03);
	}
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
	background-color: var(--fc-color);
	color: var(--surface-color);
	font-size: 14px;
	padding-bottom: 50px;
	position: relative;
}

.footer .footer-top {
  	padding-top: 50px;
}

.footer .footer-top a {
	display: inline-block;
	color: var(--surface-color);
	line-height: 1;
}

.footer .footer-top a:hover {
  	color: #FFEB3B;
}

.footer .copyright {
	padding-top: 25px;
	padding-bottom: 25px;
	border-top: 1px solid color-mix(in srgb, var(--font-color), transparent 90%);
}

.footer .copyright p {
  	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
	position: fixed;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
	width: 40px;
	height: 40px;
	visibility: hidden;
	opacity: 0;
	background-color: var(--fc-hover-color);
	border-radius: 4px;
	transition: all 0.4s;
}

.scroll-top i {
	color: var(--surface-color);
	font-size: 24px;
	line-height: 0;
}

.scroll-top:hover {
	background-color: color-mix(in srgb, var(--fc-hover-color), transparent 20%);
	color: var(--surface-color);
}

.scroll-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS Animation Delay on Mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
	padding: 60px 0;
	color: var(--font-color);
	background-color: var(--background-color);
	scroll-margin-top: 98px;
	overflow: clip;
}

@media (max-width: 1199px) {
	section,
	.section {
		scroll-margin-top: 56px;
	}
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
	position: relative;
	padding-bottom: 60px;
	text-align: center;
}

.section-title h2 {
	display: inline-block;
	margin: 0;
	padding: 10px 25px;
	background: linear-gradient(135deg, color-mix(in srgb, var(--fc-hover-color), transparent 85%) 0%, color-mix(in srgb, var(--fc-hover-color), transparent 95%) 100%);
	color: var(--fc-hover-color);
	font-family: var(--default-font);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	border-radius: 8px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 15px color-mix(in srgb, var(--fc-hover-color), transparent 90%);
	transition: all 0.3s ease;
}

.section-title h2::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transition: 0.5s;
}

.section-title h2:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px color-mix(in srgb, var(--fc-hover-color), transparent 80%);
}

.section-title h2:hover::before {
  	left: 100%;
}

.section-title p {
	margin: 10px 0 0 0;
	color: var(--fc-color);
	font-family: var(--heading-font);
	font-size: 32px;
	font-weight: 700;
}

.section-title p .description-title {
  	color: var(--fc-hover-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 100vh;
	padding: 80px 0 60px 0;
	background: url(../img/landing-bg.png) top center no-repeat;
	background-size: cover;
}

.hero h1 {
	margin: 0;
	font-size: 48px;
	font-weight: 700;
	line-height: 56px;
}

.hero p {
	margin: 5px 0 30px 0;
	color: color-mix(in srgb, var(--font-color), transparent 30%);
	font-size: 20px;
	font-weight: 400;
}

.hero .btn-get-started {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 40px;
	background: var(--fc-hover-color);
	color: var(--surface-color);
	font-family: var(--heading-font);
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 1px;
	border-radius: 4px;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
	transition: 0.5s;
}

.hero .btn-get-started i {
	margin-left: 5px;
	font-size: 18px;
	transition: 0.3s;
}

.hero .btn-get-started:hover {
	background: color-mix(in srgb, var(--fc-hover-color), transparent 15%);
	color: var(--surface-color);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover i {
  	transform: translateX(5px);
}

.hero .btn-watch-video {
	color: var(--font-color);
	font-size: 16px;
	font-weight: 600;
	transition: 0.5s;
}

.hero .btn-watch-video i {
	margin-right: 8px;
	color: var(--fc-hover-color);
	font-size: 32px;
	line-height: 0;
	transition: 0.3s;
}

.hero .btn-watch-video:hover {
  	color: var(--fc-hover-color);
}

.hero .btn-watch-video:hover i {
  	color: color-mix(in srgb, var(--fc-hover-color), transparent 15%);
}

.hero .animated {
  	animation: up-down 2s ease-in-out infinite alternate-reverse both;
    max-height: 600px;
}

@media (max-width: 640px) {
	.hero h1 {
		font-size: 28px;
		line-height: 36px;
	}

	.hero p {
		margin-bottom: 30px;
		font-size: 18px;
		line-height: 24px;
	}
}

@keyframes up-down {
	0% {
		transform: translateY(10px);
	}
	100% {
		transform: translateY(-10px);
	}
}

/*--------------------------------------------------------------
# Benefits Section
--------------------------------------------------------------*/
.benefit-card {
    background: var(--background-color);
    border-radius: 8px;
    padding: 50px 30px;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-color);
    z-index: -1;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--background-color);
    z-index: -2;
    transition: all 0.6s ease;
}

.benefit-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--surface-color);
    border-radius: 20px;
    background: linear-gradient(135deg, var(--fc-color) 0%, var(--fc-hover-color) 100%);
    box-shadow: 0 10px 25px rgba(58, 123, 213, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.benefit-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 60%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.benefit-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    position: relative;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.benefit-card h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--fc-color), var(--fc-hover-color));
    margin: 15px auto 0;
    border-radius: 3px;
    transition: all 0.4s ease;
}

.benefit-card p {
    text-align: center;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-top: 25px;
    padding: 0 10px;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.benefit-card:hover::after {
    transform: scale(1.1);
}

.benefit-card:hover .benefit-icon {
    transform: rotateY(180deg) scale(1.1);
    box-shadow: 0 15px 35px rgba(58, 123, 213, 0.4);
}

.benefit-card:hover .benefit-icon::before {
    transform: rotate(90deg);
    top: -20px;
    left: -20px;
}

.benefit-card:hover h3::after {
    width: 70px;
    height: 4px;
}

@media (max-width: 992px) {
    .benefit-card {
        padding: 40px 25px;
    }

    .benefit-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .benefits {
        padding: 80px 0;
    }

    .benefit-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .benefit-card {
        padding: 35px 20px;
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .benefit-card h3 {
        font-size: 1.4rem;
    }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.categories .category-item {
	background-color: var(--surface-color);
	box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
	height: 100%;
	padding: 60px 30px;
	text-align: center;
	transition: 0.3s;
	border-radius: 8px;
}

.categories .category-item .icon {
	font-size: 36px;
	padding: 20px 20px;
	border-radius: 8px;
	position: relative;
	margin-bottom: 25px;
	display: inline-block;
	line-height: 0;
	transition: 0.3s;
}

.categories .category-item h3 {
	font-size: 24px;
	font-weight: 700;
}

.categories .category-item .read-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 16px;
	padding: 8px 20px;
}

.categories .category-item .read-more i {
	line-height: 0;
	margin-left: 5px;
	font-size: 18px;
}

.categories .category-item.item-cyan {
	border-bottom: 3px solid var(--fc-hover-color);
}

.categories .category-item.item-cyan .icon {
	color: var(--fc-hover-color);
	background: rgba(13, 202, 240, 0.1);
}

.categories .category-item.item-cyan .read-more {
	color: var(--fc-hover-color);
}

.categories .category-item.item-cyan:hover {
	background: var(--fc-hover-color);
}

.categories .category-item.item-orange {
	border-bottom: 3px solid #FD7E14;
}

.categories .category-item.item-orange .icon {
	color: #FD7E14;
	background: rgba(253, 126, 20, 0.1);
}

.categories .category-item.item-orange .read-more {
	color: #FD7E14;
}

.categories .category-item.item-orange:hover {
	background: #FD7E14;
}

.categories .category-item.item-teal {
	border-bottom: 3px solid #20C997;
}

.categories .category-item.item-teal .icon {
	color: #20C997;
	background: rgba(32, 201, 151, 0.1);
}

.categories .category-item.item-teal .read-more {
	color: #20C997;
}

.categories .category-item.item-teal:hover {
	background: #20C997;
}

.categories .category-item.item-red {
	border-bottom: 3px solid #DF1529;
}

.categories .category-item.item-red .icon {
	color: #DF1529;
	background: rgba(223, 21, 4, 0.1);
}

.categories .category-item.item-red .read-more {
	color: #DF1529;
}

.categories .category-item.item-red:hover {
	background: #DF1529;
}

.categories .category-item.item-indigo {
	border-bottom: 3px solid #6610F2;
}

.categories .category-item.item-indigo .icon {
	color: #6610F2;
	background: rgba(102, 16, 242, 0.1);
}

.categories .category-item.item-indigo .read-more {
	color: #6610F2;
}

.categories .category-item.item-indigo:hover {
	background: #6610F2;
}

.categories .category-item.item-pink {
	border-bottom: 3px solid #F3268C;
}

.categories .category-item.item-pink .icon {
	color: #F3268C;
	background: rgba(243, 38, 140, 0.1);
}

.categories .category-item.item-pink .read-more {
	color: #F3268C;
}

.categories .category-item.item-pink:hover {
	background: #F3268C;
}

.categories .category-item:hover h3,
.categories .category-item:hover p,
.categories .category-item:hover .read-more {
	color: var(--surface-color);
}

.categories .category-item:hover .icon {
	background: var(--background-color);
}

/*--------------------------------------------------------------
# Testimoni Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
	background-color: var(--surface-color);
	box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
	box-sizing: content-box;
	padding: 30px;
	margin: 40px 30px;
	min-height: 320px;
	display: flex;
	flex-direction: column;
	text-align: center;
	transition: 0.3s;
	border-radius: 8px;
}

.testimonials .testimonial-item .stars {
	margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
	color: #ffc107;
	margin: 0 1px;
	font-size: 16px;
}

.testimonials .testimonial-item .testimonial-img {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	border: 4px solid var(--background-color);
	margin: 0 auto 15px auto;
	object-fit: cover;
}

.testimonials .testimonial-item h3 {
	font-size: 18px;
	font-weight: bold;
	margin: 10px 0 5px 0;
	font-family: var(--heading-font);
}

.testimonials .testimonial-item h4 {
	font-size: 14px;
	color: color-mix(in srgb, var(--font-color), transparent 40%);
	margin: 0;
}

.testimonials .testimonial-item p {
	font-style: italic;
	margin: 0 auto 15px auto;
	flex-grow: 1;
	line-height: 1.6;
}

.testimonials .swiper-wrapper {
	height: auto;
}

.testimonials .swiper-pagination {
	margin-top: 20px;
	position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: color-mix(in srgb, var(--font-color), transparent 85%);
	opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--fc-color);
}

.testimonials .swiper-slide {
	opacity: 0.4;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.testimonials .swiper-slide-active {
	opacity: 1;
	transform: scale(1.05);
}

.testimonials .swiper-slide-prev,
.testimonials .swiper-slide-next {
	opacity: 0.6;
}

.testimonials .testimonial-item {
	margin: 20px 10px;
	height: 400px;
}

@media (max-width: 767px) {
	.testimonials .swiper-slide {
		opacity: 1;
		transform: none;
	}

	.testimonials .testimonial-item {
		margin: 40px 20px;
		height: auto;
	}
}

/*--------------------------------------------------------------
# Step Section
--------------------------------------------------------------*/
.steps .step-card {
    background: var(--surface-color);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.steps .step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border-color: rgba(0,0,0,0.1);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-badge {
    background: var(--fc-hover-color);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--heading-font);
    flex-shrink: 0;
}

.step-icon-box {
    background: rgba(0,0,0,0.03);
    width: 56px;
    height: 56px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fc-hover-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.steps .step-card:hover .step-icon-box {
    background: rgba(0,0,0,0.05);
    transform: scale(1.05);
}

.steps .step-card h3 {
    color: var(--font-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--heading-font);
    position: relative;
}

.steps .step-card h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--fc-hover-color);
    transition: width 0.3s ease;
}

.steps .step-card:hover h3::after {
    width: 60px;
}

.steps .step-card p {
    color: var(--font-color);
    line-height: 1.6;
    opacity: 0.9;
    font-family: var(--default-font);
    transition: all 0.3s ease;
}

.steps .step-card:hover p {
    opacity: 1;
}

@media (max-width: 768px) {
    .steps .step-card {
        padding: 1.5rem;
    }

    .step-icon-box {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.accordion {
	max-width: 800px;
	margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-radius: 8px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
    background-color: var(--surface-color);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.accordion-button {
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--font-color);
    background-color: var(--surface-color);
    padding: 1rem 1.25rem;
    border-radius: 8px 8px 0 0 !important;
}

.accordion-button:not(.collapsed) {
    color: var(--fc-color);
    background-color: rgba(59, 93, 80, 0.05);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(59, 93, 80, 0.1);
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233B5D50'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: scale(1.1);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233B5D50'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.25rem;
    color: var(--font-color);
    font-family: var(--default-font);
    line-height: 1.6;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.accordion-button .fas {
    color: var(--fc-color);
    transition: color 0.2s;
}

.accordion-button:hover .fas,
.accordion-button:not(.collapsed) .fas {
    color: var(--fc-hover-color);
}

@media (max-width: 576px) {
    .accordion-button {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .accordion-body {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/*--------------------------------------------------------------
# CTA Form
--------------------------------------------------------------*/
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f6f9ff 0%, #edf2ff 100%);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
}

.cta-box h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.cta-box p {
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 30px;
}

.cta-action {
	margin: auto;
	max-width: 300px;
}

.cta-note {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    color: #7a7a7a;
}

.cta-note i {
    margin-right: 5px;
}

/*--------------------------------------------------------------
# Select Form
--------------------------------------------------------------*/
.form-control {
	color: var(--font-color) !important;
	border-color: var(--fc-hover-color) !important;
	border-radius: 0.25rem !important;
}

.form-control:focus {
	box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--fc-hover-color), transparent 50%) !important;
}

.form-control::placeholder {
	color: var(--font-color) !important;
}

.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    height: 38px !important;
    border-color: var(--fc-hover-color) !important;
    border-radius: 0.25rem !important;
    background-color: var(--background-color) !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    padding-left: 0.75rem !important;
    padding-right: 2.25rem !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: var(--font-color) !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px !important;
    right: 0.75rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #6C757D transparent transparent transparent !important;
    border-style: solid !important;
    border-width: 5px 4px 0 4px !important;
    height: 0 !important;
    left: 50% !important;
    margin-left: -4px !important;
    margin-top: -2px !important;
    position: absolute !important;
    top: 50% !important;
    width: 0 !important;
}

.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--fc-hover-color) !important;
    outline: 0 !important;
    box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--fc-hover-color), transparent 50%) !important;
}

.select2-container--default .select2-selection--single:hover {
    border-color: color-mix(in srgb, var(--fc-hover-color), transparent 50%) !important;
}

.select2-dropdown {
    border-color: var(--fc-hover-color) !important;
    border-radius: 0.25rem !important;
	border: var(--background-color) !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    z-index: 1056 !important;
}

.select2-search--dropdown .select2-search__field {
    border-color: var(--fc-hover-color) !important;
    border-radius: 0.25rem !important;
    padding: 0.375rem 0.75rem !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    color: var(--font-color) !important;
    background-color: var(--background-color) !important;
    margin: 0.5rem !important;
    width: calc(100% - 1rem) !important;
}

.select2-search--dropdown .select2-search__field:focus {
    border-color: var(--fc-hover-color) !important;
    outline: 0 !important;
    box-shadow: 0 0 0 0.15rem color-mix(in srgb, var(--fc-hover-color), transparent 50%) !important;
}

.select2-results__option {
    padding: 0.375rem 0.75rem !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    color: var(--font-color) !important;
}

.select2-results__option--highlighted {
    background-color: var(--fc-hover-color) !important;
    color: var(--surface-color) !important;
}

.select2-results__option--selected {
    background-color: var(--background-color) !important;
    color: var(--font-color) !important;
}

.select2-results__option--selected.select2-results__option--highlighted {
    background-color: var(--fc-hover-color) !important;
    color: var(--surface-color) !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    color: var(--font-color) !important;
    cursor: pointer !important;
    float: right !important;
    font-weight: bold !important;
    margin-right: 1.5rem !important;
    margin-top: 0.5rem !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear:hover {
    color: var(--font-color) !important;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: var(--background-color) !important;
    cursor: not-allowed !important;
    opacity: 1 !important;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__rendered {
    color: var(--font-color) !important;
}

.select2-container--default .select2-selection--single .select2-selection__loading {
    margin-right: 2rem !important;
}

.select2-results > .select2-results__options {
    max-height: 200px !important;
    overflow-y: auto !important;
}

.select2-results__message {
    padding: 0.375rem 0.75rem !important;
    color: var(--font-color) !important;
    font-size: 1rem !important;
}

.select2-container--default .select2-dropdown--above {
    border-bottom: 1px solid var(--border-color) !important;
    border-top: none !important;
    border-radius: 0.25rem 0.25rem 0 0 !important;
}

@media (max-width: 576px) {
    .select2-container--default .select2-selection--single {
        height: 40px !important;
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 38px !important;
    }
}

.select2-container--default .select2-selection--multiple {
    min-height: 38px !important;
    border-color: var(--fc-hover-color) !important;
    border-radius: 0.25rem !important;
    background-color: var(--background-color) !important;
    padding: 0rem 0.5rem !important;
    display: flex !important;
    align-items: center;
}

.select2-container--default .select2-search--inline .select2-search__field {
    min-height: 38px !important;
    padding: 0.5rem 0.2rem !important;
    margin: 0 !important;
}

/*--------------------------------------------------------------
# Search Element
--------------------------------------------------------------*/
.search-container {
	max-width: 550px;
	margin: left;
}

.search-input-group {
	position: relative;
}

.search-icon {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--font-color);
	z-index: 5;
}

.search-input {
	padding-left: 45px;
	border-radius: 8px;
	height: 48px;
	font-size: 16px;
	transition: all 0.3s ease;
}

/*--------------------------------------------------------------
# Items Product
--------------------------------------------------------------*/
.product-card {
	transition: all 0.3s ease;
	border: 1px solid #e9ecef;
}

.product-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.seller-image {
	object-fit: cover;
	height: 150px;
	width: 100%;
}

.product-image {
	object-fit: cover;
	height: 200px;
	width: 100%;
}

.filter-sidebar {
	top: 110px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	z-index: 1;
}

.modal-filter {
	position: absolute;
	bottom: 0;
	margin: 0;
	width: 100%;
	height: 35vh;
	max-height: 70vh;
}

.line-clamp-2 {
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (max-width: 768px) {
	.product-image {
		height: 150px;
	}
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumb {
	background: transparent;
	padding: 0.75rem 0;
	border-bottom: 1px solid rgba(59, 93, 80, 0.1);
}

.breadcrumb ol {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.25rem;
}

.breadcrumb li {
	display: flex;
	align-items: center;
	font-family: var(--default-font);
	font-size: 0.875rem;
}

.breadcrumb li:not(:last-child)::after {
	content: '/';
	color: var(--fc-color);
	margin: 0 0.5rem;
	opacity: 0.6;
}

.breadcrumb a {
	color: var(--fc-color);
	text-decoration: none;
	transition: color 0.3s ease;
}

.breadcrumb a:hover {
	color: var(--fc-hover-color);
	text-decoration: underline;
}

.breadcrumb .current {
	color: var(--font-color);
	font-weight: 500;
}

/*--------------------------------------------------------------
# Custom Element
--------------------------------------------------------------*/
.content {
	min-height: 100vh;
}

.fc-card {
	box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	border-radius: 8px;
	transition: 0.3s;
}

.clickable-card {
    cursor: pointer;
}

.fc-text-success {
	color: var(--fc-color);
}

.logo-shop {
	width: 100px !important;
	width: auto;
	border-radius: 4px;
}

@media (max-width: 768px) {
	.logo-shop {
		width: 100px;
	}
}

.carousel-item img {
    max-height: 500px !important;
}

.text-justify {
	text-align: justify;
}

.error-container {
	background: white;
	border-radius: 8px;
	padding: 3rem 2rem;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	max-width: 500px;
	width: 90%;
}

.error-illustration {
	width: 200px;
	height: 200px;
	margin: 0 auto 2rem;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
