/*-------------------- CSS Document --------------------*/
:root {
	--bg-deep: #060913;
	--bg-card: #0d1527;
	--cyan-primary: #00f2fe;
	--cyan-glow: rgba(0, 242, 254, 0.15);
	--text-main: #f3f4f6;
	--text-muted: #9ca3af;
	--horizon-gradient: linear-gradient(180deg, rgba(6,9,19,0) 50%, rgba(0,242,254,0.15) 95%, rgba(0,242,254,0.4) 100%);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	background-color: var(--bg-deep);
	color: var(--text-main);
	font-family: 'Plus Jakarta Sans', sans-serif;
	overflow-x: hidden;
	overflow-y: visible;
	line-height: 1.6;
}

h1,
h2,
h3,
header {
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 700;
}

h1,
h2,
h3,
p,
.hero {
	margin-left: auto;
	margin-right: auto;
}

h1,
h2,
h3 {
	max-width: 700px;
	text-align: center;
}

p {
	max-width: 600px;
}

h1 {
	font-size: 350%;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	letter-spacing: -1px;
}

h1 span {
	text-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
}

h1 span,
h2 span {
	color: var(--cyan-primary);
	display: block;}

h2,
h3 {
	font-size: 2.25rem;
	margin-bottom: 1rem;
}

h2 {
	font-size: 2.25rem;
}

h3 {
	font-size: 1.3rem;
}

p {
	font-size: 1rem;
	margin-bottom: 2.5rem;
	text-align: left;
}

p,
strong,
em,
main td,
main li {
	color: var(--text-muted);
}

main li strong,
main td strong {
	color: var(--text-main);	
}

main li em {
	color: var(--cyan-primary);	
}

a,
a:link,
a:visited {
	color: var(--text-main);
	text-decoration: underline;
}

a:active,
a:hover {
	color: var(--cyan-primary);
	text-decoration: none;
}

/*-------------------- Header --------------------*/
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 10%;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	background: rgba(6, 9, 19, 0.8);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(0, 242, 254, 0.1);
}

.menu-left {
	display: flex;
	align-items: center;
	gap: 5px;
}

.menu-left span {
	color: var(--cyan-primary);
	text-shadow: 0 0 10px var(--cyan-primary);
	text-transform: uppercase;
}

.menu-left img {
	width: 239px;
	height: 40px;
	padding-right: 1rem;
}

.menu-left img {
	padding-top: 11px;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease; /* Smooths out the animation */
}

.menu-left:hover img {
  transform: scale(1.1); 
}

a div.menu-left,
a:link div.menu-left,
a:visited div.menu-left  {
	text-decoration: none;
	letter-spacing: 1px;
	font-size: 1.5rem;
	color: #fff;
	text-transform: uppercase;
	color: var(--text-main);
	transition: color 0.3s;
	font-size: 0.95rem;
}


/*-------------------- Navigation --------------------*/
.nav {
	display: flex;
	list-style: none;
	gap: 2rem;
	text-transform: capitalize;
}

.nav a {
	color: var(--text-muted);
	text-decoration: none;
	transition: color 0.3s;
	font-size: 0.95rem;
}

.nav a:hover {
	color: var(--cyan-primary);
}

nav ul a.current {
	color: var(--cyan-primary);
	text-shadow: 0 0 10px var(--cyan-primary);
}

/*-------------------- Buttons --------------------*/
.cta-btn {
	background: transparent;
	color: var(--cyan-primary);
	border: 1px solid var(--cyan-primary);
	padding: 0.6rem 1.2rem;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 0 10px var(--cyan-glow);
	margin: 1rem auto;
}
.menu-right .cta-btn {
	background: transparent;
	color: var(--cyan-primary);
	border: 1px solid var(--cyan-primary);
	padding: 0.6rem 0.5rem;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 0 10px var(--cyan-glow);
	margin: 0;
}
a.cta-btn {
	color: var(--cyan-primary);
	text-decoration: none;
	padding: 0.625rem 2rem 0.8rem 2rem;
	font-size: 1rem;
}

.cta-btn:hover {
	background: var(--cyan-primary);
	color: var(--bg-deep);
	box-shadow: 0 0 20px var(--cyan-primary);
}

/*-------------------- Hero / Horizon Section --------------------*/
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 0 1rem;
	background: var(--horizon-gradient);
}

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

.hero::after { /* The Cyber Horizon Line */
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--cyan-primary);
	box-shadow: 0 0 20px 4px var(--cyan-primary), 0 0 40px 8px rgba(0, 242, 254, 0.5);
	z-index: 2;
}

/*-------------------- Section Content --------------------*/

#jump-menu {
	display: flex;	
}
#jump-menu ul {
	padding: 0;;
	display: flex;
}

main {
	text-align: center;	
}

main section,
main section.hero {
	background: #060913;
	position: relative;
}

main section {
	margin: 10rem auto 4rem auto;
}

main section.hero {
	margin: 0 auto 4rem auto;
}

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	max-width: 1100px;
	margin: 0 auto;
}

.grid a {
	text-decoration: none;
}

.grid a:hover p {
	color: var(--text-main);
	transition: all 0.3s ease;
}

.grid a h3 {
	color: var(--text-main);
}

.grid a:hover h3 {
	color: var(--cyan-primary);
	transition: all 0.3s ease;
}

section.card {
	margin: 0;
}

.card {
	background: var(--bg-card);
	border: 1px solid rgba(0, 242, 254, 0.05);
	padding: 2.5rem;
	border-radius: 8px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	height: 100%;
}

.card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--cyan-primary);
	opacity: 0;
	transition: opacity 0.3s;
}

.card:hover {
	transform: translateY(-5px);
	border-color: rgba(0, 242, 254, 0.3);
	box-shadow: 0 10px 30px rgba(0, 242, 254, 0.05);
}

.card:hover::before {
	opacity: 1;
}

.card-icon {
	display: flex;
	widows: 50px;
	height: 50px;
	margin: 1rem auto;
	vertical-align: middle;
}

.card-icon h2 {
	display: inline-block;
}

main table,
main ul {
	margin: 1rem auto;
	max-width: 600px;
}

main thead,
main th {
	font-weight: bold;
}

main td {
	text-align: left;
	padding: 0.5rem;
	vertical-align: top;
}

main hr {
	display: none;
}

main ul {
	display: block;
}

main li {
	display: list-item;
	list-style: square outside;
	text-align: left;
	margin: 1rem auto;
}

main strong {
	font-weight: normal;
}

main em {
	font-weight: bold;
	font-style: italic;
	display: block;
}
/*-------------------- Services --------------------*/
#services .grid {
	margin-bottom: 8rem;
}

/*-------------------- Locations --------------------*/
#locations .grid {
	margin-bottom: 8rem;
}

/*-------------------- Services --------------------*/
#connect .grid {
	margin-bottom: 8rem;
}

/*-------------------- Legal --------------------*/
#legal .grid {
	margin-bottom: 8rem;
}

/*-------------------- Legal --------------------*/
#sitemap {
}

/*-------------------- Contact --------------------*/
.contact {
	padding: 6rem 10% 4rem 10%;
	background: #060913;
}

form {
	max-width: 600px;
	margin: 0 auto;
	background: var(--bg-card);
	padding: 3rem;
	border-radius: 8px;
	border: 1px solid rgba(0, 242, 254, 0.1);
	box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.form-group {
	margin-bottom: 1.5rem;
	position: relative;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--text-main);
	font-size: 0.9rem;
	font-weight: 600;
}

.form-group:focus-within label {
	color: var(--cyan-primary);
}

.form-group input,
.form-group textarea {
	width: 100%;
	background: rgba(6, 9, 19, 0.6);
	border: 1px solid rgba(0, 242, 254, 0.2);
	padding: 0.8rem;
	border-radius: 4px;
	color: #fff;
	font-family: inherit;
	font-size: 1rem;
	transition: all 0.3s;
	resize: vertical;
}

.form-group textarea:focus {
	outline: none;
	border-color: var(--cyan-primary);
	box-shadow: 0 0 10px var(--cyan-glow);
}

/*-------------------- Honeypot Anti-Spam (Invisible to real users) --------------------*/
.hp-field {
	position: absolute;
	opacity: 0;
	top: 0;
	left: 0;
	height: 0;
	width: 0;
	z-index: -1;
	overflow: hidden;
}

.submit-btn {
	width: 100%;
	background: var(--cyan-primary);
	color: var(--bg-deep);
	border: none;
	padding: 1rem;
	border-radius: 4px;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0 0 15px var(--cyan-glow);
}

.submit-btn:hover {
	box-shadow: 0 0 25px var(--cyan-primary);
	transform: translateY(-2px);
}

.form-status {
	margin-top: 1.5rem;
	text-align: center;
	font-size: 0.95rem;
	font-weight: 600;
	padding: 0.8rem;
	border-radius: 4px;
}

.form-status.success {
	background: rgba(0, 242, 254, 0.1);
	border: 1px solid var(--cyan-primary);
	color: var(--cyan-primary);
}

.form-status.error {
	background: rgba(255, 74, 74, 0.1);
	border: 1px solid #ff4a4a;
	color: #ff4a4a;
}

/*-------------------- Site Map --------------------*/
#sitemap {
	all: revert;
	column-width: 280px;
	column-gap: 16px;
	width: 100%;
	max-width: 900px;
	margin: 0 auto 8rem auto;
}
#sitemap section {
	margin: 0;
	break-inside: avoid; 
	margin-bottom: 16px;
	background: var(--bg-card);
	border: 1px solid rgba(0, 242, 254, 0.05);
	border-radius: 8px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

#sitemap section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--cyan-primary);
	opacity: 0;
	transition: opacity 0.3s;
}

#sitemap section:hover {
	transform: translateY(-5px);
	border-color: rgba(0, 242, 254, 0.3);
	box-shadow: 0 10px 30px rgba(0, 242, 254, 0.05);
}

#sitemap section:hover::before {
	opacity: 1;
}

#sitemap section h3 {
	margin: 0;
	text-align: left;
}

#sitemap section h3 a:hover {
	color: var(--cyan-primary);
}

#sitemap ul {
	border-top: 1px solid rgba(255,255,255,0.25);
	margin: 0;
}

#sitemap li {
	list-style: none;
	margin: 0;
}

#sitemap a {
	color: var(--text-muted);
	text-decoration: none;
	display: inline-block;
	padding: 4px 10px;
	width: 100%;
}
#sitemap a:hover {
	color: var(--text-main);
}

/*-------------------- Footer --------------------*/

footer {
	padding: 2rem;
	color: var(--text-muted);
	border-top: 1px solid rgba(255,255,255,0.05);
}

footer p {
	color: var(--text-muted);
	font-size: 0.85rem;
	text-align: center;
}

footer a:link,
footer a:visited {
	color: var(--text-muted);
	text-decoration: none;
}

footer a:hover {
	color: var(--cyan-primary);
	text-decoration: none;
	transition: all 0.3s;
}

footer a:link.current,
footer a:visited.current {
	color: var(--cyan-primary);
	text-shadow: 0 0 10px var(--cyan-primary);
}

/*-------------------- Mobile Menu Toggle Button Styles --------------------*/
.toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 21px;
	background: transparent;
	border: none;
	cursor: pointer;
	z-index: 1100;
}
.menu-right {
	display: flex;	
}
.toggle span {
	width: 100%;
	height: 3px;
	background-color: var(--text-main);
	border-radius: 2px;
	transition: all 0.3s ease-in-out;
}

/*-------------------- Hamburger to 'X' Animation Rules --------------------*/
.toggle.active span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
	background-color: var(--cyan-primary);
}

.toggle.active span:nth-child(2) {
	opacity: 0;
}

.toggle.active span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
	background-color: var(--cyan-primary);
}

/*-------------------- Mobile Phones --------------------*/
@media (max-width: 480px) {
}

/*-------------------- Tablets / iPads (max-width: 768px) --------------------*/
@media (max-width: 860px) {

	.menu-right .cta-btn {
		display: none;
	}

	/* Adaptive Responsiveness for both Portrait & Landscape Phone Views */
	.toggle {
		display: flex;
	}

	/* Mobile Dropdown Panel: ONLY triggers when the hamburger menu is actively toggled */
	.nav {
		display: none; /* Hidden by default on portrait mobile */
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		height: 100vh;
		background: rgba(6, 9, 19, 0.98);
		backdrop-filter: blur(20px);
		z-index: 1050;
		gap: 2.5rem;
		padding-top: 8rem;
		padding-bottom: 3rem;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	/* Slid out state */
	.nav.active {
		display: flex;
	}

	.nav a {
		font-size: 1.5rem;
		font-family: 'Space Grotesk', sans-serif;
		display: block;
		width: 100%;
		text-align: center;
	}
	
	main {
		max-width: 90%;
		margin: 0 auto;
	}
	
	.hero h1 {
		font-size: 2.5rem;
	}
	.hero h1 span {
		display: block;
	}
	section p {
		max-width: 500px;
		padding: 0.5rem;
		margin: 0 auto;
	}
	main section {
		margin: inherit 5rem;	
	}
	.hero h1 {
		margin: 8rem auto 2rem auto;
	}
	main .cta-btn {
		margin: 3rem auto 2rem auto;
	}
}
@media (max-width: 900px) and (orientation: landscape) {
	.hero h1 {
		margin: 8rem auto 2rem auto;
	}
	.cta-btn {
		margin: 3rem auto 4rem auto;
	}
}

/*-------------------- Laptops / Small Screens --------------------*/
@media (max-width: 1024px) {
}

/*-------------------- Desktops / Large Screens --------------------*/
@media (max-width: 1200px) {
}

/*-------------------- Extra Large Screens / TVs --------------------*/
@media (min-width: 1201px) {
}

/*-------------------- Print --------------------*/
@media print {
	body {
		margin: 0.125rem;
	}
	* {
		color: black;
		margin: 0;
		font-size: 1rem;
	}
	header img, section {
		margin-top: 0;	
		display: block;	
	}
	heaeder .header-left {
		display: flex-center;
	}
	header,
	.menu-right .cta-btn,
	#contact,
	footer {
		display: none;
	}
	main,
	.hero {
		background: none;
	}
	#about,
	#services,
	#locations {
		padding-top: 1rem;
		padding-bottom: 1rem;
		margin-bottom: 1rem;
	}
	.card {
		padding: 1.5rem;
	}
	div span,
	h1 span,
	h2 span {
		color: black;
		text-shadow: none;
	}
	.grid h3 {
		font-size: 1rem;
		margin: 0;
	}
	.grid {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
		gap: 0.25rem;
	}
}
