@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

:root {
	--primary-bg: #000;
	--secondary-bg: #111;
	--accent-bg: #222;
	--text-color: #fff;
	--muted-text: #aaa;
	--border-color: #333;
	--primary-accent: #1E88E5;
	--safaricom-color: #00a859;
	--airtel-color: #e82524;
	--telkom-color: #2596be;
	--success-color: #4CAF50;
	--warning-color: #FFC107;
	--error-color: #F44336;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Roboto', sans-serif;
	color: var(--text-color);
	background-color: var(--primary-bg);
	line-height: 1.6;
	overflow-x: hidden;
}

a {
	color: var(--text-color);
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: var(--primary-accent);
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.container-fluid {
	width: 100%;
	padding: 0 30px;
}

.section-title {
	font-size: 42px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 40px;
	letter-spacing: 1px;
}


.main-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 15px 0;
	transition: all 0.3s ease;
}

.main-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}


.desktop-nav {
	display: flex;
	gap: 20px;
}

.desktop-nav a {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	padding: 8px 12px;
	border-radius: 4px;
	text-transform: uppercase;
}

.desktop-nav a:hover,
.desktop-nav a.active {
	background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	width: 30px;
	height: 25px;
	position: relative;
	flex-direction: column;
	justify-content: space-between;
}

.mobile-menu-toggle span {
	display: block;
	width: 100%;
	height: 3px;
	background-color: var(--text-color);
	transition: all 0.3s ease;
}

.mobile-menu {
	position: fixed;
	top: 60px;
	left: 0;
	width: 100%;
	height: 0;
	background-color: rgba(0, 0, 0, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	z-index: 999;
	overflow: hidden;
	transition: all 0.3s ease;
}

.mobile-menu.active {
	height: calc(100vh - 60px);
}

.mobile-menu-container {
	display: flex;
	flex-direction: column;
	padding: 20px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.mobile-menu.active .mobile-menu-container {
	opacity: 1;
}

.mobile-menu a {
	font-size: 20px;
	padding: 15px 0;
	border-bottom: 1px solid var(--border-color);
	text-align: center;
}


.hero-section {
	position: relative;
	height: 100vh;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	overflow: hidden;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-fallback-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: none;
}


.hero-video:not([playsinline])~.hero-fallback-img {
	display: block;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
	z-index: 2;
}

.hero-content {
	position: relative;
	z-index: 3;
	max-width: 800px;
	padding: 0 20px;
	animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-content h1 {
	font-size: 56px;
	font-weight: 700;
	margin-bottom: 20px;
	letter-spacing: 2px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content p {
	font-size: 24px;
	margin-bottom: 40px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
	font-weight: 300;
}

.hero-cta-container {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.hero-cta {
	display: inline-block;
	padding: 15px 40px;
	border-radius: 30px;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	text-transform: uppercase;
}

.primary-cta {
	background-color: var(--text-color);
	color: var(--primary-bg);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.primary-cta:hover {
	background-color: rgba(255, 255, 255, 0.9);
	color: var(--primary-bg);
	transform: translateY(-3px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.secondary-cta {
	background-color: transparent;
	color: var(--text-color);
	border-color: var(--text-color);
}

.secondary-cta:hover {
	background-color: rgba(255, 255, 255, 0.1);
	color: var(--text-color);
	transform: translateY(-3px);
}

.scroll-indicator {
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	color: var(--text-color);
	opacity: 0.7;
	z-index: 3;
	animation: bobUpDown 2s infinite ease-in-out;
	cursor: pointer;
}

.scroll-indicator span {
	font-size: 14px;
	margin-bottom: 5px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.scroll-indicator i {
	font-size: 20px;
}

@keyframes bobUpDown {

	0%,
	100% {
		transform: translateY(0) translateX(-50%);
	}

	50% {
		transform: translateY(10px) translateX(-50%);
	}
}


.service-plans {
	padding: 100px 0;
	background-color: var(--primary-bg);
}

.plan-types {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 40px;
}

.plan-type-btn {
	background-color: transparent;
	border: 2px solid var(--border-color);
	color: var(--text-color);
	padding: 10px 25px;
	font-size: 16px;
	font-weight: 500;
	border-radius: 30px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.plan-type-btn:hover,
.plan-type-btn.active {
	background-color: var(--primary-accent);
	border-color: var(--primary-accent);
}

.network-provider-section {
	margin: 40px 0;
	text-align: center;
}

.network-provider-section h3 {
	font-size: 24px;
	margin-bottom: 20px;
	color: var(--text-color);
}

.network-switcher {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 20px;
}

.network-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: var(--accent-bg);
	border: none;
	padding: 15px;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 150px;
}

.network-btn img {
	width: 40px;
	height: 40px;
	object-fit: contain;
	margin-bottom: 10px;
}

.network-btn span {
	color: var(--text-color);
	font-weight: 500;
}

.network-btn.safaricom:hover,
.network-btn.safaricom.active {
	background-color: rgba(0, 168, 89, 0.2);
	border: 1px solid var(--safaricom-color);
}

.network-btn.airtel:hover,
.network-btn.airtel.active {
	background-color: rgba(232, 37, 36, 0.2);
	border: 1px solid var(--airtel-color);
}

.network-btn.telkom:hover,
.network-btn.telkom.active {
	background-color: rgba(37, 150, 190, 0.2);
	border: 1px solid var(--telkom-color);
}

.provider-note {
	font-size: 14px;
	color: var(--muted-text);
	margin-top: 20px;
}

.plan-content {
	display: none;
}

.plan-content.active {
	display: block;
}

.plan-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-top: 20px;
}

.plan-feature-col {
	background-color: var(--accent-bg);
	border-radius: 10px;
	padding: 30px;
	transition: all 0.3s ease;
}

.plan-feature-col:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.plan-feature-col h3 {
	font-size: 24px;
	margin-bottom: 15px;
	color: var(--primary-accent);
}

.plan-feature-col p {
	font-size: 16px;
	color: var(--muted-text);
	margin-bottom: 20px;
}

.feature-list {
	list-style: none;
}

.feature-list li {
	padding: 10px 0;
	border-bottom: 1px solid var(--border-color);
}

.feature-list li:last-child {
	border-bottom: none;
}

.service-plans {
	padding: 100px 0;
	background-color: var(--primary-bg);
}

.plan-types {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 40px;
}

.plan-type-btn {
	background-color: transparent;
	border: 2px solid var(--border-color);
	color: var(--text-color);
	padding: 10px 25px;
	font-size: 16px;
	font-weight: 500;
	border-radius: 30px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.plan-type-btn:hover,
.plan-type-btn.active {
	background-color: var(--primary-accent);
	border-color: var(--primary-accent);
}

.network-provider-section {
	margin: 40px 0;
	text-align: center;
}

.network-provider-section h3 {
	font-size: 24px;
	margin-bottom: 20px;
	color: var(--text-color);
}

.network-switcher {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 20px;
}

.network-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: var(--accent-bg);
	border: 1px solid var(--border-color);
	padding: 15px;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 150px;
}

.network-btn img {
	width: 40px;
	height: 40px;
	object-fit: contain;
	margin-bottom: 10px;
}

.network-btn span {
	color: var(--text-color);
	font-weight: 500;
}

.network-btn.safaricom:hover,
.network-btn.safaricom.active {
	background-color: rgba(0, 168, 89, 0.2);
	border: 1px solid var(--safaricom-color);
}

.network-btn.airtel:hover,
.network-btn.airtel.active {
	background-color: rgba(232, 37, 36, 0.2);
	border: 1px solid var(--airtel-color);
}

.network-btn.telkom:hover,
.network-btn.telkom.active {
	background-color: rgba(37, 150, 190, 0.2);
	border: 1px solid var(--telkom-color);
}

.provider-note {
	font-size: 14px;
	color: var(--muted-text);
	margin-top: 20px;
}

.service-plans {
	padding: 100px 0;
	background-color: var(--primary-bg);
}

.plan-types {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 40px;
}

.plan-type-btn {
	background-color: transparent;
	border: 2px solid var(--border-color);
	color: var(--text-color);
	padding: 10px 25px;
	font-size: 16px;
	font-weight: 500;
	border-radius: 30px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.plan-type-btn:hover,
.plan-type-btn.active {
	background-color: var(--primary-accent);
	border-color: var(--primary-accent);
}

.network-provider-section {
	margin: 40px 0;
	text-align: center;
}

.network-provider-section h3 {
	font-size: 24px;
	margin-bottom: 20px;
	color: var(--text-color);
}

.network-switcher {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 20px;
}

.network-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: var(--accent-bg);
	border: 1px solid var(--border-color);
	padding: 15px;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 150px;
}

.network-btn img {
	width: 40px;
	height: 40px;
	object-fit: contain;
	margin-bottom: 10px;
}

.network-btn span {
	color: var(--text-color);
	font-weight: 500;
}

.network-btn.safaricom:hover,
.network-btn.safaricom.active {
	background-color: rgba(0, 168, 89, 0.2);
	border: 1px solid var(--safaricom-color);
}

.network-btn.airtel:hover,
.network-btn.airtel.active {
	background-color: rgba(232, 37, 36, 0.2);
	border: 1px solid var(--airtel-color);
}

.network-btn.telkom:hover,
.network-btn.telkom.active {
	background-color: rgba(37, 150, 190, 0.2);
	border: 1px solid var(--telkom-color);
}

.provider-note {
	font-size: 14px;
	color: var(--muted-text);
	margin-top: 20px;
}

.packages-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.packages {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 24px;
	margin: 0 auto;
}

.plan-category {
	display: none;
}

.plan-category.active {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 24px;
}

.card {
	height: 240px;
	min-height: 240px;
	/* Add explicit min-height */
	margin-bottom: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	padding: 25px 20px;
	background: var(--accent-bg);
	border-radius: 15px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
	text-align: center;
}

.card.safaricom {
	border-top: 4px solid var(--safaricom-color);
}

.card.airtel {
	border-top: 4px solid var(--airtel-color);
}

.card.telkom {
	border-top: 4px solid var(--telkom-color);
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.card img {
	width: 60px;
	height: 60px;
	margin: 0 auto 15px;
	object-fit: contain;
}

.card h2 {
	font-size: 18px;
	margin: 10px 0;
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card p {
	font-size: 18px;
	margin: 10px 0;
	font-weight: bold;
	color: var(--primary-accent);
}

.cta-button {
	display: block;
	width: 80%;
	margin: 10px auto;
	padding: 10px 15px;
	color: white;
	border: none;
	border-radius: 5px;
	font-size: 14px;
	cursor: pointer;
	transition: background-color 0.3s;
}

.safaricom .cta-button {
	background-color: var(--safaricom-color);
}

.airtel .cta-button {
	background-color: var(--airtel-color);
}

.telkom .cta-button {
	background-color: var(--telkom-color);
}

.safaricom .cta-button:hover {
	background-color: #008c4d;
}

.airtel .cta-button:hover {
	background-color: #d41c1b;
}

.telkom .cta-button:hover {
	background-color: #1c7a9e;
}

.plan-content {
	display: none;
}

.plan-content.active {
	display: block;
}

.plan-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-top: 30px;
}

.plan-feature-col {
	background-color: var(--accent-bg);
	border-radius: 10px;
	padding: 30px;
	transition: all 0.3s ease;
}

.plan-feature-col:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.plan-feature-col h3 {
	font-size: 24px;
	margin-bottom: 15px;
	color: var(--primary-accent);
}

.plan-feature-col p {
	font-size: 16px;
	color: var(--muted-text);
	margin-bottom: 20px;
}

.feature-list {
	list-style: none;
}

.feature-list li {
	padding: 10px 0;
	border-bottom: 1px solid var(--border-color);
}

.feature-list li:last-child {
	border-bottom: none;
}

@media (max-width: 992px) {
	.plan-features {
		grid-template-columns: 1fr;
	}

	.network-switcher {
		flex-wrap: wrap;
	}
}

@media (max-width: 768px) {

	.packages,
	.plan-category.active {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.card {
		height: 220px;
		min-height: 220px;
		padding: 20px 15px;
	}

	.card h2 {
		font-size: 16px;
	}

	.card p {
		font-size: 16px;
	}

	.card img {
		width: 50px;
		height: 50px;
	}

	.network-btn {
		width: 120px;
		padding: 12px;
	}
}

@media (max-width: 480px) {

	.packages,
	.plan-category.active {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.card {
		height: 200px;
		min-height: 200px;
		padding: 15px 10px;
	}

	.card h2 {
		font-size: 14px;
	}

	.card p {
		font-size: 14px;
		margin: 5px 0;
	}

	.card img {
		width: 40px;
		height: 40px;
		margin-bottom: 10px;
	}

	.cta-button {
		padding: 8px 12px;
		font-size: 12px;
	}

	.plan-type-btn {
		padding: 8px 15px;
		font-size: 14px;
	}

	.network-switcher {
		gap: 10px;
	}

	.network-btn {
		width: 100px;
		padding: 10px;
	}

	.network-btn img {
		width: 30px;
		height: 30px;
	}

	.network-btn span {
		font-size: 12px;
	}
}

.about-section {
	padding: 100px 0;
	background-color: var(--primary-bg);
	position: relative;
	overflow: hidden;
	color: var(--text-color);
}

.about-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at center, rgba(30, 136, 229, 0.05) 0%, transparent 70%);
	z-index: 1;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 2;
}

.section-title {
	font-size: 42px;
	text-align: center;
	margin-bottom: 60px;
	font-weight: 800;
	letter-spacing: 1px;
	color: var(--text-color);
	position: relative;
	display: inline-block;
	left: 50%;
	transform: translateX(-50%);
	text-transform: uppercase;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 0;
	right: 0;
	height: 4px;
	width: 60px;
	background-color: var(--primary-accent);
	margin: 0 auto;
}

.about-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
	align-items: flex-start;
}

.about-image {
	flex: 1;
	min-width: 300px;
	max-width: 500px;
}

.about-image img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
	transform: scale(1.02);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.about-text {
	flex: 1;
	min-width: 300px;
}

.about-text h3 {
	font-size: 32px;
	margin-bottom: 20px;
	color: var(--text-color);
	font-weight: 700;
	letter-spacing: 1px;
	position: relative;
	display: inline-block;
	padding-bottom: 15px;
}

.about-text h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80px;
	height: 3px;
	background-color: var(--primary-accent);
}

.about-text p {
	margin-bottom: 25px;
	line-height: 1.7;
	font-size: 18px;
	font-weight: 300;
	color: var(--text-color);
}

.mission-vision-container {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin: 40px 0;
}

.mission-box,
.vision-box {
	flex: 1;
	min-width: 280px;
	background: linear-gradient(135deg, rgba(25, 118, 210, 0.05) 0%, rgba(30, 136, 229, 0.1) 100%);
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-box {
	border-left: 4px solid var(--primary-accent);
}

.vision-box {
	border-left: 4px solid #4CAF50;
}

.mission-box:hover,
.vision-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.mission-icon,
.vision-icon {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 24px;
	opacity: 0.1;
	color: var(--primary-accent);
}

.vision-icon {
	color: #4CAF50;
}

.mission-content,
.vision-content {
	position: relative;
	z-index: 1;
}

.mission-box h3,
.vision-box h3 {
	margin-top: 0;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 15px;
	color: var(--text-color);
	padding-bottom: 10px;
	position: relative;
	display: inline-block;
}

.mission-box h3::after,
.vision-box h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 2px;
}

.mission-box h3::after {
	background-color: var(--primary-accent);
}

.vision-box h3::after {
	background-color: #4CAF50;
}

.mission-box p,
.vision-box p {
	margin-bottom: 0;
	font-size: 17px;
	line-height: 1.7;
}

.speed-card {
	background: linear-gradient(135deg, rgba(25, 118, 210, 0.1) 0%, rgba(30, 136, 229, 0.2) 100%);
	border-radius: 12px;
	padding: 30px;
	margin: 40px 0;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(5px);
	position: relative;
	overflow: hidden;
}

.speed-card::before {
	content: '';
	position: absolute;
	top: -30px;
	right: -30px;
	width: 100px;
	height: 100px;
	background: radial-gradient(circle, rgba(30, 136, 229, 0.3) 0%, transparent 70%);
	border-radius: 50%;
}

.speed-card-header {
	display: flex;
	align-items: center;
	margin-bottom: 25px;
	gap: 15px;
}

.speed-card-header i {
	font-size: 28px;
	color: var(--primary-accent);
}

.speed-card-header h4 {
	font-size: 24px;
	font-weight: 600;
	margin: 0;
	color: var(--text-color);
	letter-spacing: 0.5px;
}

.speed-metrics {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.speed-metric {
	flex: 1;
	text-align: center;
	padding: 20px 15px;
	border-radius: 10px;
	background-color: rgba(255, 255, 255, 0.1);
	display: flex;
	flex-direction: column;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	overflow: hidden;
}

.speed-metric::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 3px;
	background: var(--primary-accent);
	bottom: 0;
	left: 0;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.speed-metric:hover::before {
	transform: scaleX(1);
}

.speed-metric:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.speed-value {
	font-size: 28px;
	font-weight: 700;
	color: var(--primary-accent);
	margin-bottom: 10px;
}

.speed-label {
	font-size: 15px;
	color: var(--muted-text);
	font-weight: 500;
}

.why-choose-section {
	padding: 100px 0;
	background-color: var(--accent-bg);
	position: relative;
	overflow: hidden;
	color: var(--text-color);
}

.why-choose-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at center, rgba(30, 136, 229, 0.03) 0%, transparent 70%);
	z-index: 1;
}

.features-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 50px;
}

.feature-card {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(30, 136, 229, 0.1) 100%);
	border-radius: 12px;
	padding: 30px;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.1);
	height: 100%;
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--primary-accent), transparent);
	transform: scaleX(0);
	transition: transform 0.5s ease;
}

.feature-card:hover::before {
	transform: scaleX(1);
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(30, 136, 229, 0.15) 100%);
}

.feature-icon {
	width: 70px;
	height: 70px;
	background-color: rgba(30, 136, 229, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	color: var(--primary-accent);
	font-size: 28px;
	transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
	background-color: var(--primary-accent);
	color: #fff;
	transform: scale(1.1);
}

.feature-content {
	flex-grow: 1;
}

.feature-content strong {
	display: block;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 15px;
	font-size: 20px;
}

.feature-content p {
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
	color: var(--muted-text);
}

.testimonials-section {
	padding: 100px 0;
	background-color: var(--secondary-bg);
	position: relative;
	overflow: hidden;
}

.testimonials-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at center, rgba(30, 136, 229, 0.05) 0%, transparent 70%);
	z-index: 1;
}

.testimonials-container {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 50px;
}

.testimonial {
	background: linear-gradient(135deg, var(--accent-bg) 0%, rgba(30, 136, 229, 0.05) 100%);
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-image {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 20px;
	border: 3px solid var(--primary-accent);
	position: relative;
}

.testimonial-image::after {
	content: '"';
	position: absolute;
	bottom: -10px;
	right: -10px;
	width: 30px;
	height: 30px;
	background-color: var(--primary-accent);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: bold;
}

.testimonial-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial-content {
	color: var(--text-color);
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.testimonial-text {
	font-style: italic;
	margin-bottom: 20px;
	line-height: 1.7;
	font-size: 16px;
	flex-grow: 1;
	color: var(--muted-text);
}

.testimonial-author {
	font-weight: 500;
	color: var(--text-color);
	margin-bottom: 10px;
	font-size: 16px;
}

.testimonial-rating {
	color: #FFC107;
	font-size: 16px;
}

@media (min-width: 1400px) {
	.container {
		max-width: 1320px;
	}

	.section-title {
		font-size: 48px;
	}

	.about-text h3 {
		font-size: 38px;
	}

	.about-text p {
		font-size: 20px;
	}

	.mission-vision-container {
		gap: 40px;
	}

	.mission-box,
	.vision-box {
		padding: 40px;
	}

	.mission-box h3,
	.vision-box h3 {
		font-size: 28px;
	}

	.mission-box p,
	.vision-box p {
		font-size: 18px;
	}

	.speed-card {
		padding: 40px;
	}

	.speed-card-header h4 {
		font-size: 28px;
	}

	.speed-value {
		font-size: 34px;
	}

	.speed-label {
		font-size: 17px;
	}

	.feature-card {
		padding: 40px;
	}

	.feature-icon {
		width: 80px;
		height: 80px;
		font-size: 32px;
	}

	.feature-content strong {
		font-size: 24px;
	}

	.feature-content p {
		font-size: 18px;
	}
}

@media (max-width: 1200px) {
	.features-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.testimonials-container {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 992px) {
	.about-content {
		flex-direction: column;
	}

	.about-image {
		max-width: 100%;
		margin: 0 auto;
	}

	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.speed-metrics {
		flex-direction: column;
		gap: 15px;
	}

	.testimonials-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.section-title {
		font-size: 32px;
	}

	.about-text h3 {
		font-size: 24px;
	}

	.speed-card-header h4 {
		font-size: 18px;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.testimonials-container {
		grid-template-columns: 1fr;
	}

	.mission-box,
	.vision-box {
		min-width: 100%;
	}

	.about-section,
	.why-choose-section,
	.testimonials-section {
		padding: 70px 0;
	}

	.feature-card {
		padding: 25px;
	}

	.feature-icon {
		width: 60px;
		height: 60px;
		font-size: 24px;
	}
}

@media (max-width: 576px) {
	.section-title {
		font-size: 28px;
	}

	.about-text h3 {
		font-size: 22px;
	}

	.about-section,
	.why-choose-section,
	.testimonials-section {
		padding: 60px 0;
	}

	.speed-metric {
		padding: 15px 10px;
	}

	.speed-value {
		font-size: 24px;
	}

	.speed-label {
		font-size: 14px;
	}

	.mission-box,
	.vision-box {
		padding: 20px;
	}

	.mission-box h3,
	.vision-box h3 {
		font-size: 20px;
	}

	.mission-box p,
	.vision-box p {
		font-size: 15px;
	}

	.feature-card {
		padding: 20px 15px;
	}

	.feature-icon {
		width: 50px;
		height: 50px;
		font-size: 20px;
	}

	.testimonial {
		padding: 20px;
	}

	.testimonial-text {
		font-size: 14px;
	}
}

.contact-section {
	padding: 100px 0;
	background-color: var(--primary-bg);
	position: relative;
	overflow: hidden;
	color: var(--text-color);
}

.contact-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at center, rgba(30, 136, 229, 0.05) 0%, transparent 70%);
	z-index: 1;
}

.contact-section .container {
	position: relative;
	z-index: 2;
}

.contact-section .section-title {
	font-size: 42px;
	text-align: center;
	margin-bottom: 60px;
	font-weight: 800;
	letter-spacing: 1px;
	color: var(--text-color);
	position: relative;
	display: inline-block;
	left: 50%;
	transform: translateX(-50%);
	text-transform: uppercase;
}

.contact-section .section-title::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 0;
	right: 0;
	height: 4px;
	width: 60px;
	background-color: var(--primary-accent);
	margin: 0 auto;
}

.contact-section .contact-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 50px;
	position: relative;
	z-index: 2;
}

.contact-section .contact-info {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.contact-section .info-header h3 {
	font-size: 24px;
	margin-bottom: 15px;
	color: var(--text-color);
	font-weight: 600;
}

.contact-section .info-header p {
	color: var(--text-secondary);
	line-height: 1.7;
	font-size: 16px;
}

.contact-section .contact-details {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 0;
}

.contact-section .contact-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.contact-section .contact-item i {
	font-size: 20px;
	color: var(--primary-accent);
	margin-top: 3px;
}

.contact-section .item-content h4 {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 5px;
	color: var(--text-color);
}

.contact-section .item-content p {
	color: var(--text-secondary);
	font-size: 15px;
}

.contact-section .contact-form {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(30, 136, 229, 0.1) 100%);
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(5px);
	position: relative;
	overflow: hidden;
}

.contact-section .contact-form::before {
	content: '';
	position: absolute;
	top: -30px;
	right: -30px;
	width: 100px;
	height: 100px;
	background: radial-gradient(circle, rgba(30, 136, 229, 0.2) 0%, transparent 70%);
	border-radius: 50%;
}

.contact-section .form-group {
	margin-bottom: 20px;
}

.contact-section .form-group label {
	display: block;
	margin-bottom: 8px;
	color: var(--text-color);
	font-weight: 500;
	font-size: 14px;
}

.contact-section .form-group input,
.contact-section .form-group textarea {
	width: 100%;
	padding: 12px 15px;
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	color: var(--text-color);
	font-size: 16px;
	transition: all 0.3s ease;
}

.contact-section .form-group input:focus,
.contact-section .form-group textarea:focus {
	border-color: var(--primary-accent);
	outline: none;
	box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

.contact-section .form-group textarea {
	min-height: 120px;
	resize: vertical;
}

.contact-section .contact-submit-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background-color: var(--primary-accent);
	color: #FFFFFF;
	border: none;
	border-radius: 8px;
	padding: 14px 30px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.contact-section .contact-submit-btn:hover {
	background-color: #1976D2;
	transform: translateY(-3px);
	box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.contact-section .contact-submit-btn i {
	font-size: 18px;
}

@media (max-width: 1200px) {
	.contact-section .contact-content {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 992px) {
	.contact-section .contact-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

@media (max-width: 768px) {
	.contact-section {
		padding: 70px 0;
	}

	.contact-section .section-title {
		font-size: 32px;
	}
}

@media (max-width: 480px) {
	.contact-section .contact-form {
		padding: 25px 20px;
	}

	.contact-section .contact-details {
		gap: 15px;
	}
}


/* Footer Styles */
.main-footer {
	background-color: var(--primary-bg);
	border-top: 1px solid var(--border-color);
	padding: 80px 0 0;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	padding: 0 30px 50px;
	border-bottom: 1px solid var(--border-color);
}


.footer-links {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 30px;
}

.footer-links-column h3 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--text-color);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.footer-links-column ul {
	list-style: none;
	padding: 0;
}

.footer-links-column li {
	margin-bottom: 10px;
}

.footer-links-column a {
	color: var(--muted-text);
	transition: all 0.3s ease;
	font-size: 14px;
}

.footer-links-column a:hover {
	color: var(--text-color);
}

.footer-contact h3 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--text-color);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.footer-social {
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
}

.contact-email,
.contact-phone {
	font-size: 14px;
	color: var(--muted-text);
	margin-bottom: 5px;
}

.footer-bottom {
	padding: 20px 30px;
	text-align: center;
}

.footer-bottom p {
	font-size: 14px;
	color: var(--muted-text);
	margin-bottom: 10px;
}

.animated-footer {
	color: var(--primary-accent);
	animation: blink 1.5s infinite;
}

@keyframes blink {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.5;
	}
}

/* Modal Styles */
/* Modal Base Styles */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.85);
	z-index: 1100;
	justify-content: center;
	align-items: center;
	backdrop-filter: blur(5px);
	overflow-y: auto;
	/* Allow vertical scrolling */
	padding: 20px 0;
	/* Add padding to ensure modal doesn't touch screen edges */
}

.modal.active {
	display: flex;
}

.modal-content {
	background: linear-gradient(135deg, var(--accent-bg) 0%, rgba(30, 136, 229, 0.1) 100%);
	border-radius: 15px;
	padding: 30px;
	width: 95%;
	max-width: 500px;
	position: relative;
	max-height: 90vh;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
	animation: modalSlideIn 0.3s ease-out;
	margin: auto;
	/* Center the modal content */
}

@keyframes modalSlideIn {
	from {
		transform: translateY(20px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.close-button {
	position: absolute;
	top: 15px;
	right: 15px;
	font-size: 24px;
	background: none;
	border: none;
	color: var(--text-color);
	cursor: pointer;
	transition: all 0.3s ease;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.close-button:hover {
	background-color: rgba(255, 255, 255, 0.1);
	transform: rotate(90deg);
}

.modal-content h2 {
	font-size: 24px;
	margin-bottom: 15px;
	color: var(--text-color);
	text-align: center;
	font-weight: 600;
}

.scrollable-modal-content {
	max-height: calc(90vh - 220px);
	overflow-y: auto;
	padding-right: 15px;
	margin-right: -15px;
}

/* Policy Modal Specific Styles */
.policy-modal .modal-content {
	overflow: hidden;
	/* Hide overflow for container */
	display: flex;
	flex-direction: column;
}

.scrollable-content {
	max-height: 60vh;
	overflow-y: auto;
	padding-right: 15px;
	margin-right: -15px;
	padding-bottom: 20px;
}

/* Scrollbar Styling */
.scrollable-content::-webkit-scrollbar,
.scrollable-modal-content::-webkit-scrollbar {
	width: 8px;
}

.scrollable-content::-webkit-scrollbar-track,
.scrollable-modal-content::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
}

.scrollable-content::-webkit-scrollbar-thumb,
.scrollable-modal-content::-webkit-scrollbar-thumb {
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 10px;
}

.modal-content label {
	display: block;
	margin-bottom: 8px;
	color: var(--text-color);
	font-weight: 500;
	font-size: 15px;
}

.required {
	color: #FF5252;
}

.modal-content input[type="text"],
.modal-content input[type="tel"] {
	width: 100%;
	padding: 12px 15px;
	background-color: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	color: var(--text-color);
	font-size: 16px;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}

.modal-content input[type="text"]:focus,
.modal-content input[type="tel"]:focus {
	border-color: var(--primary-accent);
	background-color: rgba(255, 255, 255, 0.1);
	outline: none;
}

.modal-content input[readonly] {
	background-color: rgba(255, 255, 255, 0.02);
	cursor: not-allowed;
}

.network-indicator {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
	padding: 12px 15px;
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	border: 1px solid var(--border-color);
}

.network-indicator img {
	width: 30px;
	height: 30px;
	object-fit: contain;
	background-color: white;
	padding: 3px;
	border-radius: 4px;
}

.network-indicator span {
	color: var(--text-color);
	font-weight: 500;
}

.order-note {
	color: var(--text-color);
	opacity: 0.8;
	text-align: center;
	margin-bottom: 15px;
	font-size: 14px;
}

.terms-container {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 15px 0;
	padding: 15px;
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
}

.terms-container input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin-top: 2px;
}

.terms-container label {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
}

.terms-container a {
	color: var(--primary-accent);
	text-decoration: none;
}

.terms-container a:hover {
	text-decoration: underline;
}

.confirm-button {
	background: linear-gradient(135deg, var(--primary-accent) 0%, #1976D2 100%);
	color: white;
	border: none;
	border-radius: 25px;
	padding: 12px 0;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.confirm-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(25, 118, 210, 0.3);
}

.confirmation-modal-content {
	padding: 0;
	overflow: hidden;
	background: #ffffff;
	color: #333333;
}

.confirmation-header {
	background: #00a859;
	padding: 18px;
	border-radius: 15px 15px 0 0;
	text-align: center;
	position: sticky;
	top: 0;
	z-index: 5;
}

.confirmation-header h2 {
	font-size: 20px;
	margin: 0;
	color: white;
}

.confirmation-body {
	padding: 22px;
	background: #ffffff;
}

.thank-you {
	text-align: center;
	font-size: 17px;
	margin-bottom: 20px;
	color: #333333;
}

.order-summary {
	background-color: #f8f9fa;
	border-radius: 10px;
	padding: 18px;
	margin-bottom: 20px;
	border: 1px solid #e0e0e0;
}

.order-summary h3 {
	font-size: 17px;
	margin-bottom: 12px;
	color: #00a859;
}

.summary-item {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px solid #e0e0e0;
}

.summary-item:last-child {
	border-bottom: none;
}

.summary-item .label {
	color: #666666;
}

.summary-item .value {
	color: #333333;
	font-weight: 500;
}

.next-steps {
	margin-bottom: 20px;
}

.next-steps h3 {
	font-size: 17px;
	margin-bottom: 12px;
	color: #00a859;
}

.next-steps ol {
	padding-left: 20px;
	color: #333333;
}

.next-steps li {
	margin-bottom: 10px;
	line-height: 1.5;
}

.support-note {
	text-align: center;
	font-size: 14px;
	color: #666666;
	margin-bottom: 20px;
}

.close-message-button {
	background: #00a859;
	color: white;
	border: none;
	border-radius: 25px;
	padding: 10px 0;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	width: calc(100% - 44px);
	margin: 0 22px 22px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.close-message-button:hover {
	background: #008c4d;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 168, 89, 0.3);
}

@media (max-width: 768px) {
	.modal-content {
		padding: 25px;
		width: 90%;
	}

	.modal-content h2 {
		font-size: 20px;
		margin-bottom: 12px;
	}

	.confirmation-header h2 {
		font-size: 18px;
	}

	.thank-you {
		font-size: 16px;
	}

	.order-summary {
		padding: 15px;
	}

	.summary-item {
		font-size: 14px;
	}

	.confirm-button,
	.close-message-button {
		padding: 10px 0;
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.modal {
		padding: 15px 0;
	}

	.modal-content {
		padding: 20px;
		width: 92%;
		max-height: 85vh;
	}

	.confirmation-modal-content {
		padding: 0;
	}

	.modal-content h2 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.network-indicator {
		padding: 10px;
		margin-bottom: 12px;
	}

	.network-indicator img {
		width: 25px;
		height: 25px;
	}

	.order-note {
		font-size: 13px;
		margin-bottom: 12px;
	}

	.scrollable-modal-content {
		max-height: calc(85vh - 190px);
	}

	.scrollable-content {
		max-height: 50vh;
	}

	.terms-container {
		padding: 10px;
	}

	.terms-container label {
		font-size: 13px;
	}

	.confirmation-header {
		padding: 15px;
	}

	.confirmation-header h2 {
		font-size: 16px;
	}

	.confirmation-body {
		padding: 15px;
	}

	.order-summary h3,
	.next-steps h3 {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.summary-item {
		padding: 8px 0;
		font-size: 13px;
	}

	.next-steps li {
		font-size: 13px;
		margin-bottom: 8px;
	}

	.support-note {
		font-size: 12px;
		margin-bottom: 15px;
	}

	.close-message-button {
		width: calc(100% - 30px);
		margin: 0 15px 15px;
		padding: 10px 0;
		font-size: 13px;
		border-radius: 20px;
	}

	.confirm-button {
		padding: 10px 0;
		font-size: 13px;
		border-radius: 20px;
	}
}


@media (max-width: 992px) {
	.desktop-nav {
		display: none;
	}

	.mobile-menu-toggle {
		display: flex;
	}

	.hero-content h1 {
		font-size: 42px;
	}

	.hero-content p {
		font-size: 20px;
	}

	.section-title {
		font-size: 32px;
	}

	.hero-cta {
		padding: 12px 30px;
	}
}

@media (max-width: 768px) {
	.hero-content h1 {
		font-size: 36px;
	}

	.hero-content p {
		font-size: 18px;
	}

	.hero-cta {
		padding: 10px 25px;
		font-size: 14px;
	}

	.hero-cta-container {
		flex-direction: column;
		gap: 15px;
		align-items: center;
	}

	.hero-cta {
		width: 80%;
		max-width: 280px;
	}
}

@media (max-width: 480px) {
	.container-fluid {
		padding: 0 15px;
	}

	.hero-content h1 {
		font-size: 28px;
	}

	.hero-content p {
		font-size: 16px;
		margin-bottom: 30px;
	}

	.hero-cta {
		padding: 10px 20px;
		font-size: 13px;
		width: 100%;
	}

	.scroll-indicator {
		bottom: 30px;
	}
}

.careers-section {
	padding: 100px 0;
	background-color: var(--primary-bg);
	position: relative;
	overflow: hidden;
	color: var(--text-color);
}

.careers-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at center, rgba(30, 136, 229, 0.05) 0%, transparent 70%);
	z-index: 1;
}

.careers-intro {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 50px;
	position: relative;
	z-index: 2;
}

.careers-intro p {
	font-size: 18px;
	line-height: 1.7;
	color: var(--text-color);
}

.job-categories {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 40px;
	position: relative;
	z-index: 2;
}

.category-button {
	background: transparent;
	border: 2px solid var(--primary-accent);
	color: var(--text-color);
	padding: 12px 30px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 30px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.category-button.active {
	background: var(--primary-accent);
	color: white;
}

.category-button:hover:not(.active) {
	background: rgba(30, 136, 229, 0.1);
	transform: translateY(-3px);
}

.jobs-container {
	display: none;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 30px;
	position: relative;
	z-index: 2;
}

.jobs-container.active {
	display: grid;
}

.job-card {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(30, 136, 229, 0.1) 100%);
	border-radius: 15px;
	padding: 30px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.job-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 0;
	background: var(--primary-accent);
	transition: height 0.3s ease;
}

.job-card:hover::before {
	height: 100%;
}

.job-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.job-card.closed {
	border: 1px solid rgba(255, 255, 255, 0.05);
	opacity: 0.8;
}

.job-card.closed:hover {
	transform: translateY(-5px);
}

.job-header {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.job-title {
	font-size: 22px;
	font-weight: 600;
	margin: 0 0 10px 0;
	color: var(--text-color);
}

.job-location {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--muted-text);
	font-size: 14px;
}

.job-location i {
	color: var(--primary-accent);
}

.job-info {
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
}

.job-type,
.job-department {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--muted-text);
	font-size: 14px;
}

.job-type i,
.job-department i {
	color: var(--primary-accent);
}

.job-description {
	flex-grow: 1;
	margin-bottom: 20px;
}

.job-description p {
	font-size: 15px;
	line-height: 1.6;
	color: var(--text-color);
	margin: 0;
}

.job-status {
	margin: 15px 0;
}

.status-indicator {
	display: inline-block;
	background-color: rgba(244, 67, 54, 0.1);
	color: #F44336;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 500;
	border: 1px solid rgba(244, 67, 54, 0.2);
}

.job-actions {
	display: flex;
	gap: 15px;
	margin-top: auto;
}

.view-job-btn,
.apply-job-btn {
	padding: 10px 18px;
	border-radius: 25px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	letter-spacing: 0.5px;
}

.view-job-btn {
	background: transparent;
	border: 1px solid var(--primary-accent);
	color: var(--text-color);
	flex: 1;
}

.view-job-btn:hover {
	background: rgba(30, 136, 229, 0.1);
	transform: translateY(-3px);
}

.apply-job-btn {
	background: var(--primary-accent);
	border: 1px solid var(--primary-accent);
	color: white;
	flex: 1;
}

.apply-job-btn:hover {
	background: #1976D2;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(25, 118, 210, 0.3);
}

.job-modal .modal-content {
	max-width: 800px;
	padding: 0;
	overflow: hidden;
	position: relative;
}

.job-modal-header {
	background: linear-gradient(135deg, var(--primary-accent) 0%, #1976D2 100%);
	padding: 30px;
	color: white;
	position: relative;
}

.job-modal-header h2 {
	font-size: 28px;
	margin: 0 0 15px 0;
	color: white;
	text-align: left;
}

.job-modal-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.job-modal-meta span {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
}

.job-closed-notice {
	background-color: rgba(244, 67, 54, 0.9);
	color: white;
	padding: 8px 15px;
	border-radius: 5px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 500;
	position: absolute;
	top: 30px;
	right: 30px;
}

.job-modal-body {
	padding: 30px;
	max-height: 60vh;
	overflow-y: auto;
}

.job-section {
	margin-bottom: 25px;
}

.job-section h3 {
	font-size: 20px;
	margin: 0 0 15px 0;
	color: var(--text-color);
	font-weight: 600;
	position: relative;
	padding-bottom: 10px;
}

.job-section h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background-color: var(--primary-accent);
}

.job-section p {
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-color);
	margin: 0 0 15px 0;
}

.job-section ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.job-section ul li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 10px;
	font-size: 15px;
	line-height: 1.6;
	color: var(--text-color);
}

.job-section ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--primary-accent);
}

.job-modal-footer {
	padding: 20px 30px;
	background-color: rgba(255, 255, 255, 0.05);
	display: flex;
	justify-content: flex-end;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.apply-now-btn {
	background: var(--primary-accent);
	color: white;
	border: none;
	border-radius: 25px;
	padding: 12px 24px;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	letter-spacing: 0.5px;
}

.apply-now-btn:hover {
	background: #1976D2;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(25, 118, 210, 0.3);
}

.job-closed-footer {
	justify-content: center;
	padding: 25px 30px;
}

.job-closed-footer p {
	color: var(--text-color);
	text-align: center;
	margin: 0;
	font-size: 15px;
	opacity: 0.8;
}

.application-modal-content {
	max-width: 600px;
	max-height: 80vh;
	overflow-y: auto;
	position: relative;
}

.close-button {
	position: absolute;
	top: 15px;
	right: 15px;
	font-size: 24px;
	color: var(--text-color);
	cursor: pointer;
	z-index: 10;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.close-button:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: rotate(90deg);
}

.application-modal-header {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding-bottom: 20px;
	margin-bottom: 25px;
	padding-right: 40px;
}

.application-modal-header h2 {
	font-size: 24px;
	margin: 0;
	text-align: left;
}

.application-instructions {
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-color);
	margin-bottom: 25px;
}

.application-details {
	background-color: rgba(255, 255, 255, 0.05);
	padding: 20px;
	border-radius: 10px;
	margin-bottom: 25px;
}

.application-details h3 {
	font-size: 18px;
	margin: 0 0 15px 0;
	color: var(--text-color);
}

.application-details ul {
	list-style-type: none;
	padding: 0;
	margin: 0 0 20px 0;
}

.application-details ul:last-child {
	margin-bottom: 0;
}

.application-details ul li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 10px;
	font-size: 15px;
	line-height: 1.6;
	color: var(--text-color);
}

.application-details ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--primary-accent);
}

.application-note {
	font-size: 14px;
	line-height: 1.6;
	color: var(--muted-text);
	margin-bottom: 20px;
	padding: 15px;
	border-left: 3px solid var(--primary-accent);
	background-color: rgba(255, 255, 255, 0.03);
}

.application-modal-footer {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.apply-email-btn,
.close-application-btn {
	padding: 12px 20px;
	border-radius: 25px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	letter-spacing: 0.5px;
	flex: 1;
}

.apply-email-btn {
	background: var(--primary-accent);
	border: none;
	color: white;
}

.apply-email-btn:hover {
	background: #1976D2;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(25, 118, 210, 0.3);
}

.close-application-btn {
	background: transparent;
	border: 1px solid var(--primary-accent);
	color: var(--text-color);
}

.close-application-btn:hover {
	background: rgba(30, 136, 229, 0.1);
	transform: translateY(-3px);
}

@media (max-width: 1200px) {
	.jobs-container {
		grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	}
}

@media (max-width: 992px) {
	.job-modal-header h2 {
		font-size: 24px;
	}

	.job-closed-notice {
		position: static;
		margin-top: 15px;
		display: inline-flex;
	}
}

@media (max-width: 768px) {
	.careers-section {
		padding: 70px 0;
	}

	.careers-intro p {
		font-size: 16px;
	}

	.job-categories {
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}

	.category-button {
		width: 100%;
		max-width: 300px;
	}

	.jobs-container {
		grid-template-columns: 1fr;
	}

	.job-card {
		padding: 25px;
	}

	.job-title {
		font-size: 20px;
	}

	.job-modal-header {
		padding: 25px;
	}

	.job-modal-body {
		padding: 25px;
		max-height: 55vh;
	}

	.job-section h3 {
		font-size: 18px;
	}

	.job-section p,
	.job-section ul li {
		font-size: 14px;
	}

	.job-modal-footer {
		padding: 15px 25px;
	}

	.close-button {
		top: 10px;
		right: 10px;
		font-size: 20px;
		width: 24px;
		height: 24px;
	}

	.apply-now-btn,
	.apply-email-btn,
	.close-application-btn {
		padding: 10px 18px;
		font-size: 14px;
	}

	.application-modal-header h2 {
		font-size: 20px;
	}

	.application-instructions {
		font-size: 15px;
	}

	.application-details {
		padding: 15px;
	}

	.application-details h3 {
		font-size: 16px;
	}

	.application-details ul li {
		font-size: 14px;
	}
}

@media (max-width: 576px) {
	.careers-section {
		padding: 60px 0;
	}

	.section-title {
		font-size: 28px;
		margin-bottom: 40px;
	}

	.careers-intro p {
		font-size: 15px;
	}

	.job-card {
		padding: 20px;
	}

	.job-title {
		font-size: 18px;
	}

	.job-info {
		flex-direction: column;
		gap: 8px;
	}

	.job-actions {
		flex-direction: column;
		gap: 10px;
	}

	.job-modal-header {
		padding: 20px;
	}

	.job-modal-header h2 {
		font-size: 20px;
	}

	.job-modal-meta {
		gap: 15px;
	}

	.job-modal-meta span {
		font-size: 14px;
	}

	.job-modal-body {
		padding: 20px;
	}

	.job-modal-footer {
		padding: 15px 20px;
	}

	.application-modal-footer {
		flex-direction: column;
	}
}

.hardware-section {
	padding: 100px 0;
	background-color: var(--primary-bg);
	position: relative;
	overflow: hidden;
	color: var(--text-color);
}

.hardware-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at center, rgba(30, 136, 229, 0.05) 0%, transparent 70%);
	z-index: 1;
}

.section-subtitle {
	text-align: center;
	font-size: 18px;
	max-width: 800px;
	margin: -30px auto 50px;
	color: var(--muted-text);
	font-weight: 300;
}

.hardware-intro {
	position: relative;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
	align-items: center;
	margin-bottom: 70px;
}

.hardware-intro-image {
	flex: 1;
	min-width: 300px;
	max-width: 500px;
}

.hardware-intro-image img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hardware-intro-image img:hover {
	transform: scale(1.02);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hardware-intro-text {
	flex: 1;
	min-width: 300px;
}

.hardware-intro-text h3 {
	font-size: 32px;
	margin-bottom: 20px;
	color: var(--text-color);
	font-weight: 700;
	letter-spacing: 1px;
	position: relative;
	display: inline-block;
	padding-bottom: 15px;
}

.hardware-intro-text h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80px;
	height: 3px;
	background-color: var(--primary-accent);
}

.hardware-intro-text p {
	margin-bottom: 25px;
	line-height: 1.7;
	font-size: 18px;
	font-weight: 300;
	color: var(--text-color);
}

.hardware-features {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-top: 30px;
}

.hardware-feature {
	background: linear-gradient(135deg, rgba(25, 118, 210, 0.05) 0%, rgba(30, 136, 229, 0.1) 100%);
	border-radius: 8px;
	padding: 12px 20px;
	display: flex;
	align-items: center;
	gap: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hardware-feature:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.12);
}

.hardware-feature i {
	color: var(--primary-accent);
	font-size: 18px;
}

.hardware-feature span {
	font-size: 15px;
	font-weight: 500;
	color: var(--text-color);
}

.hardware-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin: 60px 0;
	position: relative;
	z-index: 2;
}

.hardware-card {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(30, 136, 229, 0.1) 100%);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.hardware-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hardware-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background-color: var(--primary-accent);
	color: white;
	padding: 8px 16px;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 600;
	z-index: 10;
	box-shadow: 0 5px 15px rgba(25, 118, 210, 0.4);
}

.hardware-image {
	height: 220px;
	overflow: hidden;
	position: relative;
}

.hardware-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.hardware-card:hover .hardware-image img {
	transform: scale(1.05);
}

.hardware-content {
	padding: 30px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.hardware-content h3 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 15px;
	color: var(--text-color);
	letter-spacing: 0.5px;
}

.hardware-description {
	font-size: 16px;
	color: var(--muted-text);
	line-height: 1.6;
	margin-bottom: 20px;
}

.hardware-specs {
	list-style: none;
	padding: 0;
	margin: 0 0 30px;
}

.hardware-specs li {
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--text-color);
	font-size: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.hardware-specs li:last-child {
	border-bottom: none;
}

.hardware-specs li i {
	color: var(--primary-accent);
	font-size: 16px;
	min-width: 20px;
	text-align: center;
}

.hardware-price-container {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.hardware-price {
	display: flex;
	flex-direction: column;
}

.price-value {
	font-size: 28px;
	font-weight: 700;
	color: var(--text-color);
}

.price-note {
	font-size: 14px;
	color: var(--muted-text);
	margin-top: 5px;
}

.hardware-btn,
.accessory-order-btn,
.installation-order-btn {
	background-color: var(--primary-accent);
	color: white;
	padding: 12px 20px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	text-align: center;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(25, 118, 210, 0.3);
	border: none;
	cursor: pointer;
}

.hardware-btn:hover,
.accessory-order-btn:hover,
.installation-order-btn:hover {
	background-color: #1565C0;
	box-shadow: 0 8px 20px rgba(25, 118, 210, 0.4);
	transform: translateY(-3px);
}


.accessories-container {
	margin: 80px 0;
	position: relative;
	z-index: 2;
}

.accessories-title {
	font-size: 32px;
	text-align: center;
	margin-bottom: 10px;
	font-weight: 700;
	color: var(--text-color);
}

.accessories-subtitle {
	text-align: center;
	font-size: 18px;
	max-width: 700px;
	margin: 0 auto 40px;
	color: var(--muted-text);
}

.accessories-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

.accessory-card {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(30, 136, 229, 0.08) 100%);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.accessory-card:hover {
	transform: translateY(-7px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.accessory-image {
	height: 160px;
	overflow: hidden;
}

.accessory-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.accessory-card:hover .accessory-image img {
	transform: scale(1.05);
}

.accessory-content {
	padding: 20px;
}

.accessory-content h4 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--text-color);
}

.accessory-content p {
	font-size: 14px;
	color: var(--muted-text);
	line-height: 1.5;
	margin-bottom: 15px;
}

.accessory-price {
	display: block;
	font-size: 18px;
	font-weight: 600;
	color: var(--primary-accent);
	margin-bottom: 15px;
}

.accessory-order-btn {
	width: 100%;
	padding: 10px;
	font-size: 14px;
}

.installation-container {
	background: linear-gradient(135deg, rgba(25, 118, 210, 0.1) 0%, rgba(30, 136, 229, 0.2) 100%);
	border-radius: 12px;
	padding: 40px;
	margin: 70px 0;
	position: relative;
	z-index: 2;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(5px);
	overflow: hidden;
}

.installation-container::before {
	content: '';
	position: absolute;
	top: -30px;
	right: -30px;
	width: 120px;
	height: 120px;
	background: radial-gradient(circle, rgba(30, 136, 229, 0.3) 0%, transparent 70%);
	border-radius: 50%;
	z-index: -1;
}

.installation-header {
	display: flex;
	align-items: center;
	gap: 25px;
	margin-bottom: 40px;
}

.installation-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: rgba(30, 136, 229, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.installation-icon i {
	font-size: 36px;
	color: var(--primary-accent);
}

.installation-title h3 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--text-color);
}

.installation-title h3 a {
	color: var(--text-color);
	text-decoration: none;
	transition: color 0.3s ease;
}

.installation-title h3 a:hover {
	color: var(--primary-accent);
}

.installation-title p {
	font-size: 16px;
	color: var(--muted-text);
	line-height: 1.6;
}

.installation-options {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.installation-option {
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	padding: 30px;
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.installation-option:hover {
	transform: translateY(-7px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
	background-color: rgba(255, 255, 255, 0.08);
}

.installation-option-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--primary-accent);
	color: white;
	padding: 5px 15px;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 600;
	box-shadow: 0 5px 10px rgba(25, 118, 210, 0.3);
}

.installation-option h4 {
	text-align: center;
	font-size: 22px;
	font-weight: 600;
	margin: 15px 0 25px;
	color: var(--text-color);
}

.installation-option ul {
	list-style: none;
	padding: 0;
	margin: 0 0 30px;
}

.installation-option ul li {
	padding: 10px 0;
	color: var(--text-color);
	font-size: 15px;
	position: relative;
	padding-left: 25px;
}

.installation-option ul li::before {
	content: '\f058';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	color: var(--primary-accent);
	position: absolute;
	left: 0;
	top: 10px;
}

.installation-price {
	display: block;
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-accent);
	margin-bottom: 15px;
}

.installation-order-btn {
	width: 100%;
	margin-top: 10px;
}

.hardware-cta {
	background: linear-gradient(135deg, rgba(25, 118, 210, 0.2) 0%, rgba(30, 136, 229, 0.3) 100%);
	border-radius: 12px;
	padding: 50px;
	margin-top: 80px;
	position: relative;
	z-index: 2;
	overflow: hidden;
	text-align: center;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.hardware-cta::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	z-index: -1;
}

.hardware-cta-content h3 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 15px;
	color: var(--text-color);
	letter-spacing: 0.5px;
}

.hardware-cta-content p {
	font-size: 18px;
	color: var(--text-color);
	max-width: 700px;
	margin: 0 auto 30px;
	line-height: 1.6;
}

.hardware-cta-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.cta-btn {
	padding: 16px 32px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
}

.cta-btn.primary {
	background-color: var(--primary-accent);
	color: white;
	box-shadow: 0 8px 20px rgba(25, 118, 210, 0.4);
}

.cta-btn.primary:hover {
	background-color: #1565C0;
	box-shadow: 0 12px 25px rgba(25, 118, 210, 0.5);
	transform: translateY(-3px);
}

.cta-btn.secondary {
	background-color: transparent;
	color: var(--text-color);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-btn.secondary:hover {
	background-color: rgba(255, 255, 255, 0.1);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
	transform: translateY(-3px);
}

.checkout-modal,
.order-received-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 1000;
	justify-content: center;
	align-items: center;
	backdrop-filter: blur(5px);
	overflow-y: auto;
}

.checkout-modal-content,
.order-received-content {
	background: linear-gradient(135deg, var(--primary-bg) 0%, rgba(20, 30, 48, 0.95) 100%);
	border-radius: 15px;
	max-width: 600px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	padding: 40px;
	position: relative;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.1);
	margin: 20px auto;
}

.close-modal {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 28px;
	font-weight: 300;
	cursor: pointer;
	color: var(--muted-text);
	transition: color 0.3s ease;
}

.close-modal:hover {
	color: white;
}

.checkout-modal-content h2,
.order-received-content h2 {
	font-size: 32px;
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 30px;
	text-align: center;
}

.checkout-product-details,
.confirmation-details {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 30px;
}

.checkout-product-details h3 {
	font-size: 20px;
	color: var(--text-color);
	margin-bottom: 15px;
	font-weight: 600;
}

.checkout-product-info p,
.confirmation-details p {
	margin: 8px 0;
	font-size: 16px;
	color: var(--muted-text);
}

.checkout-product-info strong {
	color: var(--text-color);
	margin-right: 10px;
}

.confirmation-details span {
	color: var(--text-color);
}

.checkout-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-group label {
	font-size: 15px;
	font-weight: 500;
	color: var(--text-color);
}

.form-group input,
.form-group textarea {
	padding: 12px 15px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background-color: rgba(255, 255, 255, 0.05);
	color: var(--text-color);
	font-size: 16px;
	transition: all 0.3s ease;
}

/* Smaller form fields */
.form-group input.smaller-field,
.form-group textarea.smaller-field {
	padding: 8px 12px;
	font-size: 14px;
	height: 36px;
	max-width: 90%;
}

.form-group textarea.smaller-field {
	height: auto;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-accent);
	box-shadow: 0 0 0 2px rgba(30, 136, 229, 0.2);
}

.checkout-payment-options {
	margin-top: 10px;
}

.checkout-payment-options h4 {
	font-size: 18px;
	color: var(--text-color);
	margin-bottom: 15px;
	font-weight: 600;
}

.payment-methods {
	display: flex;
	justify-content: center;
	margin: 0 auto;
	max-width: 200px;
}

.payment-method {
	width: 100%;
}

.payment-method label {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 15px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background-color: rgba(255, 255, 255, 0.05);
	cursor: pointer;
	transition: all 0.3s ease;
}

.payment-method input {
	display: none;
}

.payment-method input:checked+label {
	border-color: var(--primary-accent);
	background-color: rgba(30, 136, 229, 0.1);
}

.payment-icon {
	font-size: 24px;
	color: var(--primary-accent);
}

.consent-group {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
}

.consent-group label {
	font-size: 14px;
	color: var(--muted-text);
}

.terms-link {
	color: var(--primary-accent);
	text-decoration: none;
}

.terms-link:hover {
	text-decoration: underline;
}

.checkout-actions {
	display: flex;
	justify-content: flex-end;
	margin-top: 30px;
	gap: 20px;
}

.primary-btn,
.secondary-btn {
	padding: 14px 28px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 16px;
	text-align: center;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	min-width: 140px;
}

.primary-btn {
	background-color: var(--primary-accent);
	color: white;
	box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
}

.primary-btn:hover {
	background-color: #1565C0;
	box-shadow: 0 8px 20px rgba(30, 136, 229, 0.4);
	transform: translateY(-3px);
}

.secondary-btn {
	background-color: transparent;
	color: var(--text-color);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.secondary-btn:hover {
	background-color: rgba(255, 255, 255, 0.05);
	transform: translateY(-3px);
}

.confirmation-icon {
	text-align: center;
	margin: 20px 0;
}

.confirmation-icon i {
	font-size: 72px;
	color: #4CAF50;
}

.confirmation-message,
.delivery-message {
	font-size: 16px;
	color: var(--muted-text);
	line-height: 1.6;
	text-align: center;
	margin: 20px 0;
}

.delivery-message {
	margin-bottom: 30px;
}

.confirmation-action {
	text-align: center;
}

@media (max-width: 1200px) {
	.hardware-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.accessories-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 992px) {
	.hardware-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.installation-options {
		grid-template-columns: repeat(2, 1fr);
	}

	.installation-header {
		flex-direction: column;
		text-align: center;
		gap: 15px;
	}

	.installation-title h3 {
		font-size: 24px;
	}

	.payment-methods {
		flex-direction: column;
	}
}

@media (max-width: 768px) {
	.hardware-section {
		padding: 70px 0;
	}

	.section-subtitle {
		font-size: 16px;
		margin-bottom: 40px;
	}

	.hardware-intro-text h3 {
		font-size: 26px;
	}

	.hardware-intro-text p {
		font-size: 16px;
	}

	.hardware-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.accessories-grid {
		grid-template-columns: 1fr;
	}

	.installation-options {
		grid-template-columns: 1fr;
	}

	.installation-container {
		padding: 30px;
	}

	.hardware-cta {
		padding: 30px;
	}

	.hardware-cta-content h3 {
		font-size: 26px;
	}

	.hardware-cta-content p {
		font-size: 16px;
	}

	.hardware-cta-buttons {
		flex-direction: column;
		gap: 15px;
	}

	.checkout-modal-content,
	.order-received-content {
		padding: 30px 20px;
	}

	.checkout-actions {
		flex-direction: column;
	}
}

@media (max-width: 576px) {
	.hardware-intro {
		flex-direction: column;
		gap: 30px;
	}

	.hardware-intro-image {
		max-width: 100%;
	}

	.hardware-features {
		flex-direction: column;
	}

	.hardware-feature {
		width: 100%;
	}

	.hardware-price-container {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}

	.hardware-btn {
		width: 100%;
	}

	.accessories-title {
		font-size: 26px;
	}

	.accessories-subtitle {
		font-size: 16px;
	}

	.installation-icon {
		width: 60px;
		height: 60px;
	}

	.installation-icon i {
		font-size: 28px;
	}
}