:root {
	--forest: #1a6b3c;
	--forest-dark: #145530;
	--sage: #e8ede9;
	--cream: #fafbfa;
	--charcoal: #2d2d2d;
	--slate: #5a5a5a;
	--border-light: #dee2e6;
}

@keyframes heroFadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes floatItem {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-8px);
	}
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Source Sans 3", sans-serif;
	background: linear-gradient(180deg, var(--cream) 0%, var(--sage) 100%);
	color: var(--charcoal);
	line-height: 1.6;
}

h1,
h2,
h3,
.display-title {
	font-family: "Playfair Display", Georgia, serif;
	font-weight: 400;
}

/* Hero Navbar Section */
.hero-navbar-section {
	height: 600px;
}

/* Navbar Section */
.header-logo-img {
	height: 40px;
	width: auto;
}

.header-logo-text {
	font-size: 0.9rem;
	line-height: 1.3;
	color: var(--charcoal);
	max-width: 160px;
}

.navbar-links {
	border: 1px solid var(--forest);
}

.navbar-main .nav-link {
	color: var(--charcoal);
	transition: color 0.2s;
}

.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
	color: var(--forest);
}

.btn-login {
	background: var(--bs-white);
	color: var(--charcoal);
	border: 1px solid var(--forest);
	transition: all 0.2s;
}
.btn-login:hover {
	background: var(--forest-dark);
	color: #fff;
}

/* Hero Section */
.hero-navbar-section {
	margin-bottom: 5rem;
}
.hero-navbar-section .carousel,
.hero-navbar-section .carousel-inner,
.hero-navbar-section .carousel-item {
	height: 100%;
}

.hero-image {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-overlay {
	background: linear-gradient(
		90deg,
		rgba(26, 107, 60, 0.9) 0%,
		rgba(26, 107, 60, 0.5) 50%,
		transparent 100%
	);
	padding: 2.5rem 0;
}

.hero-overlay-alt {
	background: linear-gradient(
		90deg,
		rgba(20, 85, 48, 0.92) 0%,
		rgba(26, 107, 60, 0.6) 50%,
		rgba(26, 107, 60, 0.2) 100%
	);
}

.hero-overlay-column {
	background-image: url("../imgs/oval.png");
	background-repeat: repeat;
	width: 106px;
	opacity: 0.4;
}

.hero-content {
	max-width: 520px;
	animation: heroFadeIn 0.8s ease-out;
}

.carousel-item.active .hero-content {
	animation: heroFadeIn 0.8s ease-out;
}

.hero-title {
	font-size: 2.75rem;
	line-height: 1.2;
}

.hero-description {
	max-width: 450px;
}

.hero-description p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.0625rem;
	line-height: 1.7;
	margin: 0;
}

.btn-hero {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: #fff;
	color: var(--forest);
	border-radius: 50px;
	padding: 0.85rem 1.75rem;
	font-size: 0.9375rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-hero:hover {
	background: var(--forest-dark);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero i {
	transition: transform 0.3s ease;
}

.btn-hero:hover i {
	transform: translateX(4px);
}

/* Hero Carousel Controls */
.hero-carousel-controls {
	position: absolute;
	bottom: 2rem;
	right: 2rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	z-index: 10;
}

.hero-control-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 1rem;
}

.hero-control-btn:hover {
	background: #fff;
	border-color: #fff;
	color: var(--forest);
}

.hero-indicators {
	display: flex;
	gap: 0.5rem;
}

.hero-indicators button {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.5);
	background: transparent;
	padding: 0;
	cursor: pointer;
	transition: all 0.3s ease;
}

.hero-indicators button.active {
	background: #fff;
	border-color: #fff;
	width: 32px;
	border-radius: 6px;
}

.hero-indicators button:hover:not(.active) {
	background: rgba(255, 255, 255, 0.3);
}

.btn-explore {
	background: var(--forest);
	color: #fff;
	border-radius: 50px;
	padding: 0.75rem 1.5rem;
	font-size: 0.9rem;
	font-weight: 500;
	border: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	width: fit-content;
	transition: all 0.2s;
}

.btn-explore:hover {
	background: var(--forest-dark);
	color: #fff;
	transform: translateY(-1px);
}

.btn-explore .arrow-icon {
	width: 20px;
	height: 20px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Statistics Section */
.section-stats {
	padding-bottom: 1rem;
	margin-bottom: 2rem;
	border-bottom: 1px solid var(--border-light);
}

.section-stats:last-child {
	margin-bottom: 0;
}

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.section-title {
	font-size: 2.5rem;
	color: var(--charcoal);
	line-height: 1.2;
}

.section-label {
	font-size: 1rem;
	color: var(--slate);
	margin-bottom: 0.25rem;
}

.stat-highlight {
	text-align: right;
}

.stat-highlight .value {
	font-size: 2.5rem;
	color: var(--forest);
	font-weight: 600;
}

.stat-highlight .label {
	font-size: 0.75rem;
	color: var(--slate);
}

/* View Data Button */
.btn-view-data {
	background: #fff;
	border: 1px solid var(--border-light);
	border-radius: 50px;
	padding: 0.6rem 1.25rem;
	font-size: 0.85rem;
	color: var(--charcoal);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.2s;
}

.btn-view-data:hover {
	border-color: var(--forest);
	color: var(--forest);
}

/* Updates Section */
.section-updates {
	padding: 3rem 0;
}

.update-card {
	text-align: left;
}

.update-card-image {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 120px 120px 120px 120px;
	margin-bottom: 1rem;
}

.update-card-title {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--charcoal);
	margin-bottom: 0.5rem;
}

.update-card-text {
	font-size: 0.8rem;
	color: var(--slate);
	line-height: 1.5;
}

/* Carousel Controls */
.carousel-controls {
	display: flex;
	gap: 0.5rem;
	justify-content: flex-end;
	margin-top: 1.5rem;
}

.carousel-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--border-light);
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s;
}

.carousel-btn:hover {
	border-color: var(--forest);
	color: var(--forest);
}

/* Partners Section */
.partners-section {
	margin-top: 3rem;
}

.partners-header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.partners-label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--forest);
	font-weight: 600;
}

.partners-title {
	font-size: 2rem;
	color: var(--charcoal);
	margin-top: 0.5rem;
}

.partners-grid {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
	padding: 1rem 0;
}

.partner-logo-card {
	background: #fff;
	border-radius: 16px;
	padding: 1.5rem 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	min-height: 120px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
	text-decoration: none;
}

.partner-logo-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(26, 107, 60, 0.12);
}

.partner-logo {
	max-width: 120px;
	max-height: 60px;
	object-fit: contain;
	filter: grayscale(30%);
	transition: filter 0.3s ease;
}

.partner-logo-card:hover .partner-logo {
	filter: grayscale(0%);
}

.partner-name {
	font-size: 0.75rem;
	color: var(--slate);
	margin-top: 0.75rem;
	font-weight: 500;
	text-align: center;
}

.ministry-logo {
	width: 60px;
	height: 60px;
	background: var(--sage);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--forest);
	font-size: 1.5rem;
	transition: all 0.3s ease;
}

.partner-logo-card:hover .ministry-logo {
	background: var(--forest);
	color: #fff;
}

.partners-carousel-controls {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin-top: 2rem;
}

.carousel-control-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--border-light);
	background: #fff;
	color: var(--charcoal);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s;
}

.carousel-control-btn:hover {
	border-color: var(--forest);
	color: var(--forest);
	background: #fff;
}

.carousel-indicators-custom {
	display: flex;
	gap: 0.5rem;
}

.carousel-indicators-custom button {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	background: var(--border-light);
	padding: 0;
	cursor: pointer;
	transition: all 0.3s ease;
}

.carousel-indicators-custom button.active {
	background: var(--forest);
	width: 24px;
	border-radius: 4px;
}

/* About Intro Section */
.about-intro {
	padding: 0 0 5rem;
}

.intro-content {
	padding-right: 3rem;
}

.intro-label {
	display: inline-block;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--forest);
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.intro-title {
	font-size: 2.5rem;
	color: var(--charcoal);
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.intro-text {
	color: var(--slate);
	line-height: 1.8;
	margin-bottom: 1rem;
}

.intro-text strong {
	color: var(--charcoal);
}

/* Lifecycle Visual */
.lifecycle-visual {
	position: relative;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lifecycle-center {
	position: absolute;
	width: 140px;
	height: 140px;
	background: var(--forest);
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	z-index: 2;
	box-shadow: 0 8px 32px rgba(26, 107, 60, 0.3);
}

.lifecycle-icon {
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.lifecycle-center span {
	font-size: 0.75rem;
	line-height: 1.3;
}

.lifecycle-items {
	position: absolute;
	width: 100%;
	height: 100%;
}

.lifecycle-item {
	position: absolute;
	width: 90px;
	height: 90px;
	background: #fff;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	animation: floatItem 3s ease-in-out infinite;
	animation-delay: calc(var(--i) * 0.3s);
}

.lifecycle-item:hover {
	transform: scale(1.1);
	box-shadow: 0 8px 30px rgba(26, 107, 60, 0.15);
}

@keyframes floatItem {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-8px);
	}
}

.lifecycle-item i {
	font-size: 1.5rem;
	color: var(--forest);
	margin-bottom: 0.25rem;
}

.lifecycle-item span {
	font-size: 0.7rem;
	color: var(--charcoal);
	font-weight: 500;
}

/* Position lifecycle items in a circle */
.lifecycle-item:nth-child(1) {
	top: 10%;
	left: 50%;
	transform: translateX(-50%);
}
.lifecycle-item:nth-child(2) {
	top: 25%;
	right: 10%;
}
.lifecycle-item:nth-child(3) {
	bottom: 25%;
	right: 10%;
}
.lifecycle-item:nth-child(4) {
	bottom: 10%;
	left: 50%;
	transform: translateX(-50%);
}
.lifecycle-item:nth-child(5) {
	top: 40%;
	left: 5%;
}

/* Programmes Grid */
.programmes-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	position: relative;
}

.programme-card {
	background: #fff;
	border-radius: 20px;
	padding: 1.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
}

.programme-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(26, 107, 60, 0.12);
}

.programme-card.featured {
	grid-column: span 2;
	background: var(--forest);
	color: #fff;
}

.programme-card.featured .programme-icon {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}

.programme-card.featured h4 {
	color: #fff;
}

.programme-card.featured p {
	color: rgba(255, 255, 255, 0.85);
}

.programme-icon {
	width: 50px;
	height: 50px;
	background: var(--sage);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--forest);
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.programme-card h4 {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.125rem;
	color: var(--charcoal);
	margin-bottom: 0.5rem;
}

.programme-card p {
	font-size: 0.875rem;
	color: var(--slate);
	line-height: 1.5;
	margin: 0;
}

/* Upgrade Section */
.upgrade-section {
	padding: 3rem 0 5rem;
}

.upgrade-card {
	background: linear-gradient(135deg, #fefefe 0%, var(--sage) 100%);
	border-radius: 24px;
	padding: 3rem;
	border: 1px solid rgba(26, 107, 60, 0.2);
}

.upgrade-header {
	text-align: center;
	margin-bottom: 3rem;
}

.upgrade-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--forest);
	color: #fff;
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 1rem;
}

.upgrade-badge i {
	font-size: 1rem;
}

.upgrade-header h3 {
	font-size: 2rem;
	color: var(--charcoal);
	margin-bottom: 0.75rem;
}

.upgrade-header p {
	color: var(--slate);
	font-size: 1rem;
	max-width: 500px;
	margin: 0 auto;
}

.upgrade-features {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.upgrade-feature {
	text-align: center;
}

.feature-number {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 2.5rem;
	color: var(--forest);
	opacity: 0.3;
	margin-bottom: 0.5rem;
}

.feature-content h5 {
	font-size: 1rem;
	color: var(--charcoal);
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.feature-content p {
	font-size: 0.875rem;
	color: var(--slate);
	line-height: 1.5;
	margin: 0;
}

/* Process Section */
.process-section {
	padding: 5rem 0;
	background: linear-gradient(180deg, var(--sage) 0%, var(--cream) 100%);
}

.process-header {
	text-align: center;
	margin-bottom: 4rem;
}

.process-label {
	display: inline-block;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--forest);
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.process-title {
	font-size: 2.5rem;
	color: var(--charcoal);
	margin-bottom: 1rem;
}

.process-subtitle {
	font-size: 1.125rem;
	color: var(--slate);
	max-width: 600px;
	margin: 0 auto;
}

/* Process Timeline */
.process-timeline {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
}

.timeline-line {
	position: absolute;
	left: 28px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(
		180deg,
		var(--forest) 0%,
		var(--forest-dark) 100%
	);
	opacity: 0.2;
}

.process-step {
	display: flex;
	gap: 2rem;
	margin-bottom: 2rem;
	position: relative;
	animation: fadeInUp 0.6s ease-out;
	animation-fill-mode: both;
}

.process-step:last-child {
	margin-bottom: 0;
}

.process-step:nth-child(1) {
	animation-delay: 0.1s;
}
.process-step:nth-child(2) {
	animation-delay: 0.2s;
}
.process-step:nth-child(3) {
	animation-delay: 0.3s;
}
.process-step:nth-child(4) {
	animation-delay: 0.4s;
}
.process-step:nth-child(5) {
	animation-delay: 0.5s;
}
.process-step:nth-child(6) {
	animation-delay: 0.6s;
}
.process-step:nth-child(7) {
	animation-delay: 0.7s;
}
.process-step:nth-child(8) {
	animation-delay: 0.8s;
}

.step-marker {
	width: 56px;
	height: 56px;
	background: var(--forest);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	position: relative;
	z-index: 2;
	box-shadow: 0 4px 20px rgba(26, 107, 60, 0.3);
}

.step-marker span {
	color: #fff;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.25rem;
	font-weight: 600;
}

.step-content {
	background: #fff;
	border-radius: 20px;
	padding: 1.75rem;
	flex: 1;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
}

.step-content:hover {
	box-shadow: 0 8px 30px rgba(26, 107, 60, 0.12);
	transform: translateX(8px);
}

.step-icon {
	width: 44px;
	height: 44px;
	background: var(--sage);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--forest);
	font-size: 1.25rem;
	margin-bottom: 1rem;
}

.step-content h4 {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.25rem;
	color: var(--charcoal);
	margin-bottom: 0.75rem;
}

.step-content p {
	color: var(--slate);
	font-size: 0.9375rem;
	line-height: 1.6;
	margin: 0;
}

.step-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1rem;
}

.step-tags .tag {
	background: var(--sage);
	color: var(--forest);
	font-size: 0.75rem;
	padding: 0.35rem 0.75rem;
	border-radius: 50px;
	font-weight: 500;
}

/* BOMS Features Section */
.boms-features-section {
	padding: 5rem 0;
	background: linear-gradient(180deg, var(--cream) 0%, var(--sage) 100%);
}

.boms-features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.boms-feature-card {
	background: #fff;
	border-radius: 20px;
	padding: 2rem 1.5rem;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
	animation: fadeInUp 0.6s ease-out;
	animation-fill-mode: both;
}

.boms-feature-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(26, 107, 60, 0.12);
}

.boms-feature-card:nth-child(1) {
	animation-delay: 0.1s;
}
.boms-feature-card:nth-child(2) {
	animation-delay: 0.15s;
}
.boms-feature-card:nth-child(3) {
	animation-delay: 0.2s;
}
.boms-feature-card:nth-child(4) {
	animation-delay: 0.25s;
}
.boms-feature-card:nth-child(5) {
	animation-delay: 0.3s;
}
.boms-feature-card:nth-child(6) {
	animation-delay: 0.35s;
}
.boms-feature-card:nth-child(7) {
	animation-delay: 0.4s;
}

.boms-feature-card.featured {
	background: var(--forest);
	color: #fff;
	grid-column: span 2;
}

.boms-feature-card.featured .feature-icon-wrapper {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}

.boms-feature-card.featured h4 {
	color: #fff;
}

.boms-feature-card.featured p {
	color: rgba(255, 255, 255, 0.85);
}

.feature-icon-wrapper {
	width: 60px;
	height: 60px;
	background: var(--sage);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--forest);
	font-size: 1.5rem;
	margin: 0 auto 1rem;
}

.boms-feature-card h4 {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.125rem;
	color: var(--charcoal);
	margin-bottom: 0.75rem;
}

.boms-feature-card p {
	font-size: 0.875rem;
	color: var(--slate);
	line-height: 1.6;
	margin: 0;
}

/* Integration Banner */
.integration-banner {
	padding: 3rem 0;
}

.integration-card {
	background: linear-gradient(
		135deg,
		var(--forest) 0%,
		var(--forest-dark) 100%
	);
	border-radius: 24px;
	padding: 3rem;
	color: #fff;
}

.integration-content {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
}

.integration-icon {
	width: 64px;
	height: 64px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	flex-shrink: 0;
}

.integration-text h3 {
	font-size: 1.5rem;
	margin-bottom: 0.75rem;
}

.integration-text p {
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.6;
	margin: 0;
}

.integration-flow {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.flow-item {
	text-align: center;
	padding: 1.25rem 2rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	backdrop-filter: blur(10px);
}

.flow-label {
	display: block;
	font-weight: 600;
	font-size: 1rem;
	margin-bottom: 0.25rem;
}

.flow-desc {
	display: block;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.7);
}

.flow-arrow {
	font-size: 1.5rem;
	color: rgba(255, 255, 255, 0.5);
}

/* Dashboard Section */
.dashboard-section {
	padding: 5rem 0;
}

.dashboard-header {
	text-align: center;
	margin-bottom: 3rem;
}

.dashboard-label {
	display: inline-block;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--forest);
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.dashboard-title {
	font-size: 2.5rem;
	color: var(--charcoal);
	margin-bottom: 1rem;
}

.dashboard-subtitle {
	font-size: 1.125rem;
	color: var(--slate);
}

/* Contact Section */
.contact-section {
	padding: 5rem 0;
}

.contact-info-wrapper {
	padding-right: 2rem;
}

.contact-intro-text {
	color: var(--slate);
	line-height: 1.7;
	margin-bottom: 2rem;
}

.contact-cards {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-card {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.25rem;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
	transition: all 0.3s ease;
	animation: fadeInUp 0.5s ease-out;
	animation-fill-mode: both;
}

.contact-card:nth-child(1) {
	animation-delay: 0.1s;
}
.contact-card:nth-child(2) {
	animation-delay: 0.15s;
}
.contact-card:nth-child(3) {
	animation-delay: 0.2s;
}
.contact-card:nth-child(4) {
	animation-delay: 0.25s;
}

.contact-card:hover {
	transform: translateX(8px);
	box-shadow: 0 4px 20px rgba(26, 107, 60, 0.1);
}

.contact-icon {
	width: 48px;
	height: 48px;
	background: var(--sage);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--forest);
	font-size: 1.25rem;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
	background: var(--forest);
	color: #fff;
}

.contact-details h4 {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1rem;
	color: var(--charcoal);
	margin-bottom: 0.25rem;
}

.contact-details p {
	font-size: 0.9rem;
	color: var(--slate);
	line-height: 1.5;
	margin: 0;
}

.contact-details a {
	color: var(--forest);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s;
}

.contact-details a:hover {
	color: var(--forest-dark);
	text-decoration: underline;
}

/* Contact Form */
.contact-form-wrapper {
	background: #fff;
	border-radius: 24px;
	padding: 2.5rem;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.form-header {
	margin-bottom: 2rem;
}

.form-header h3 {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.5rem;
	color: var(--charcoal);
	margin-bottom: 0.5rem;
}

.form-header p {
	color: var(--slate);
	font-size: 0.9rem;
	margin: 0;
}

.form-group {
	margin-bottom: 0.5rem;
}

.form-group label {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--charcoal);
	margin-bottom: 0.5rem;
}

.input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	background: var(--cream);
	border: 2px solid transparent;
	border-radius: 12px;
	transition: all 0.3s ease;
}

.input-wrapper.focused {
	border-color: var(--forest);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(26, 107, 60, 0.1);
}

.input-wrapper i {
	position: absolute;
	left: 1rem;
	color: var(--slate);
	font-size: 1rem;
	transition: color 0.3s ease;
}

.input-wrapper.focused i {
	color: var(--forest);
}

.input-wrapper.textarea {
	align-items: flex-start;
}

.input-wrapper.textarea i {
	top: 1rem;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
	width: 100%;
	padding: 0.875rem 1rem 0.875rem 2.75rem;
	border: none;
	background: transparent;
	font-family: "Source Sans 3", sans-serif;
	font-size: 0.9375rem;
	color: var(--charcoal);
	outline: none;
}

.input-wrapper select {
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%235a5a5a' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	padding-right: 2.5rem;
}

.input-wrapper textarea {
	resize: vertical;
	min-height: 120px;
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
	color: #a0a0a0;
}

.btn-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	width: 100%;
	padding: 1rem 2rem;
	background: var(--forest);
	color: #fff;
	border: none;
	border-radius: 12px;
	font-family: "Source Sans 3", sans-serif;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-submit:hover {
	background: var(--forest-dark);
	transform: translateY(-2px);
	box-shadow: 0 4px 20px rgba(26, 107, 60, 0.3);
}

.btn-submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	transform: none;
}

.btn-submit.success {
	background: #2d8b54;
}

.btn-submit i {
	font-size: 1.125rem;
}

/* Support Section */
.support-section {
	padding: 4rem 0;
	background: linear-gradient(180deg, var(--cream) 0%, var(--sage) 100%);
}

.support-header {
	text-align: center;
	margin-bottom: 3rem;
}

.support-header p {
	color: var(--slate);
	font-size: 1.125rem;
	max-width: 500px;
	margin: 0 auto;
}

.support-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	max-width: 900px;
	margin: 0 auto;
}

.support-card {
	background: #fff;
	border-radius: 20px;
	padding: 2rem;
	display: flex;
	gap: 1.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
}

.support-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 30px rgba(26, 107, 60, 0.12);
}

.support-card.featured {
	background: var(--forest);
	color: #fff;
}

.support-card.featured .support-icon {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}

.support-card.featured h4 {
	color: #fff;
}

.support-card.featured p {
	color: rgba(255, 255, 255, 0.85);
}

.support-card.featured .tag {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}

.support-icon {
	width: 56px;
	height: 56px;
	background: var(--sage);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--forest);
	font-size: 1.5rem;
	flex-shrink: 0;
}

.support-content h4 {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.125rem;
	color: var(--charcoal);
	margin-bottom: 0.5rem;
}

.support-content p {
	font-size: 0.875rem;
	color: var(--slate);
	line-height: 1.6;
	margin-bottom: 1rem;
}

.support-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.support-tags .tag {
	background: var(--sage);
	color: var(--forest);
	font-size: 0.75rem;
	padding: 0.35rem 0.75rem;
	border-radius: 50px;
	font-weight: 500;
}

.hotline-info {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.hotline-number,
.hotline-email {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #fff;
	text-decoration: none;
	font-size: 0.9rem;
	padding: 0.5rem 1rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	transition: all 0.2s ease;
}

.hotline-number:hover,
.hotline-email:hover {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}

.hotline-number i,
.hotline-email i {
	font-size: 1rem;
}

/* Grievance Section */
.grievance-section {
	padding: 4rem 0;
}

.grievance-card {
	background: #fff;
	border-radius: 24px;
	padding: 2.5rem;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.grievance-header {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--sage);
}

.grievance-icon {
	width: 64px;
	height: 64px;
	background: var(--forest);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.75rem;
	flex-shrink: 0;
}

.grievance-title h3 {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.5rem;
	color: var(--charcoal);
	margin-bottom: 0.5rem;
}

.grievance-title p {
	color: var(--slate);
	line-height: 1.6;
	margin: 0;
}

.grievance-channels {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.grievance-channel {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding: 1.5rem;
	background: var(--cream);
	border-radius: 16px;
	transition: all 0.3s ease;
	animation: fadeInUp 0.5s ease-out;
	animation-fill-mode: both;
}

.grievance-channel:hover {
	background: var(--sage);
}
.grievance-channel:nth-child(1) {
	animation-delay: 0.1s;
}
.grievance-channel:nth-child(2) {
	animation-delay: 0.2s;
}
.grievance-channel:nth-child(3) {
	animation-delay: 0.3s;
}

.channel-icon {
	width: 50px;
	height: 50px;
	background: #fff;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--forest);
	font-size: 1.25rem;
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.channel-info {
	flex: 1;
}

.channel-info h5 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--charcoal);
	margin-bottom: 0.25rem;
}

.channel-info p {
	font-size: 0.875rem;
	color: var(--slate);
	margin: 0;
}

.channel-status {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8rem;
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: 50px;
	flex-shrink: 0;
}

.channel-status.available {
	background: rgba(26, 107, 60, 0.1);
	color: var(--forest);
}

.channel-status.coming-soon {
	background: rgba(232, 168, 56, 0.15);
	color: #b37d1a;
}

/* Map Section */
.map-section {
	padding: 0 0 4rem;
}

.map-wrapper {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	height: 300px;
	background: linear-gradient(135deg, var(--sage) 0%, #d1ddd4 100%);
}

.map-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--forest);
	font-size: 1rem;
	gap: 0.5rem;
}

.map-placeholder i {
	font-size: 3rem;
	opacity: 0.3;
}

.map-placeholder span {
	font-weight: 500;
	opacity: 0.5;
}

.map-overlay {
	position: absolute;
	top: 1.5rem;
	left: 1.5rem;
	z-index: 2;
}

.map-info {
	background: #fff;
	padding: 1.5rem;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	max-width: 280px;
}

.map-info h4 {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.125rem;
	color: var(--charcoal);
	margin-bottom: 0.5rem;
}

.map-info p {
	font-size: 0.875rem;
	color: var(--slate);
	line-height: 1.5;
	margin-bottom: 1rem;
}

.btn-directions {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.6rem 1rem;
	background: var(--forest);
	color: #fff;
	border-radius: 8px;
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 500;
	transition: all 0.2s;
}

.btn-directions:hover {
	background: var(--forest-dark);
	color: #fff;
}

/* Footer */
.footer {
	padding: 1.5rem 0;
	border-top: 1px solid var(--border-light);
	margin-top: 2rem;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.footer-left {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.footer-logo {
	height: 45px;
	width: auto;
}

.footer-address {
	font-size: 0.75rem;
	color: var(--slate);
	line-height: 1.4;
}

.footer-copyright {
	font-size: 0.75rem;
	color: var(--forest);
}

/* Responsive */

/* Responsive */
@media (max-width: 1200px) {
	.boms-features-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.boms-feature-card.featured {
		grid-column: span 2;
	}
}
@media (max-width: 992px) {
	.hero-title {
		font-size: 2.25rem;
	}

	.hero-carousel-controls {
		right: 1.5rem;
		bottom: 1.5rem;
	}

	.intro-content {
		padding-right: 0;
		margin-bottom: 2rem;
	}

	.programmes-grid {
		grid-template-columns: 1fr;
	}

	.programme-card.featured {
		grid-column: span 1;
	}

	.upgrade-features {
		grid-template-columns: repeat(2, 1fr);
	}

	.lifecycle-visual {
		height: 350px;
	}

	.lifecycle-center {
		width: 120px;
		height: 120px;
	}

	.lifecycle-item {
		width: 80px;
		height: 80px;
	}

	.integration-flow {
		flex-wrap: wrap;
		gap: 1rem;
	}

	.flow-item {
		padding: 1rem 1.5rem;
	}

	.contact-info-wrapper {
		padding-right: 0;
		margin-bottom: 2rem;
	}

	.support-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.navbar-main {
		border-radius: 16px;
		padding: 0.75rem;
	}

	.hero-navbar-section {
		height: 480px;
	}

	.hero-overlay {
		padding: 1.5rem;
		background: linear-gradient(
			180deg,
			rgba(26, 107, 60, 0.85) 0%,
			rgba(26, 107, 60, 0.7) 100%
		);
	}

	.hero-overlay-alt {
		background: linear-gradient(
			180deg,
			rgba(20, 85, 48, 0.9) 0%,
			rgba(26, 107, 60, 0.75) 100%
		);
	}

	.hero-content {
		max-width: 100%;
		text-align: center;
	}

	.hero-title {
		font-size: 1.75rem;
		line-height: 1.3;
	}

	.hero-label {
		font-size: 0.7rem;
	}

	.hero-description p {
		font-size: 0.9375rem;
	}

	.hero-carousel-controls {
		right: 50%;
		transform: translateX(50%);
		bottom: 1rem;
	}

	.hero-control-btn {
		width: 38px;
		height: 38px;
	}

	.hero-indicators button {
		width: 10px;
		height: 10px;
	}

	.hero-indicators button.active {
		width: 26px;
	}

	.btn-hero {
		padding: 0.75rem 1.5rem;
		font-size: 0.875rem;
	}

	.section-title {
		font-size: 1.75rem;
	}

	.section-header {
		flex-direction: column;
		gap: 1rem;
	}

	.stat-highlight {
		text-align: left;
	}

	.intro-title,
	.process-title,
	.dashboard-title {
		font-size: 1.75rem;
	}

	.upgrade-features {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.upgrade-card {
		padding: 2rem 1.5rem;
	}

	.process-step {
		flex-direction: column;
		gap: 1rem;
	}

	.timeline-line {
		display: none;
	}

	.step-marker {
		width: 48px;
		height: 48px;
	}

	.boms-features-grid {
		grid-template-columns: 1fr;
	}

	.boms-feature-card.featured {
		grid-column: span 1;
	}

	.lifecycle-visual {
		height: auto;
		flex-direction: column;
		gap: 1rem;
		padding: 2rem 0;
	}

	.lifecycle-center {
		position: relative;
		width: 100px;
		height: 100px;
	}

	.lifecycle-items {
		position: relative;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 1rem;
		width: 100%;
		height: auto;
	}

	.lifecycle-item {
		position: relative !important;
		top: auto !important;
		left: auto !important;
		right: auto !important;
		bottom: auto !important;
		transform: none !important;
		width: 100%;
		height: 80px;
	}

	.integration-content {
		flex-direction: column;
		text-align: center;
	}

	.integration-icon {
		margin: 0 auto;
	}

	.flow-arrow {
		transform: rotate(90deg);
	}

	.partners-section {
		padding: 2.5rem 0;
	}

	.partners-title {
		font-size: 1.5rem;
	}

	.partners-grid {
		gap: 1rem;
	}

	.partner-logo-card {
		min-width: 140px;
		padding: 1rem 1.25rem;
	}

	.partner-logo {
		max-width: 80px;
		max-height: 45px;
	}

	.footer-content {
		flex-direction: column;
		text-align: center;
	}

	.footer-left {
		flex-direction: column;
	}

	.contact-section {
		padding: 3rem 0;
	}

	.contact-form-wrapper {
		padding: 1.5rem;
	}

	.support-card {
		flex-direction: column;
		text-align: center;
	}

	.support-tags {
		justify-content: center;
	}

	.hotline-info {
		align-items: center;
	}

	.grievance-header {
		flex-direction: column;
		text-align: center;
	}

	.grievance-icon {
		margin: 0 auto;
	}

	.grievance-channel {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}

	.map-overlay {
		position: relative;
		top: auto;
		left: auto;
		padding: 1.5rem;
	}

	.map-info {
		max-width: 100%;
		box-shadow: none;
		background: transparent;
		padding: 0;
	}

	.map-wrapper {
		height: auto;
		flex-direction: column;
	}

	.map-placeholder {
		padding: 3rem 1.5rem;
	}
}
