/* ===========================
   ClearPath Homepage Styles
   =========================== */

/* CSS Variables */
:root {
	--primary-blue: #3f51b5;
	--light-blue: #5571d9;
	--dark-blue: #283593;
	--accent-blue: #4db8ff;
	--text-dark: #2c3e50;
	--text-light: #ffffff;
	--bg-light: #f8f9fa;
	--bg-dark: #1a1d3a;
	--border-light: #e0e0e0;
	--animation-duration: 0.6s;
	--animation-delay: 0.1s;
}

/* Reset & Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	color: var(--text-dark);
	line-height: 1.6;
	background-color: #ffffff;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* ===========================
   Header & Navigation
   =========================== */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1400px;
	margin: 0 auto;
	padding: 1rem 2rem;
	gap: 2rem;
}

.site-logo {
	flex-shrink: 0;
}

.site-logo img {
	height: 50px;
	width: auto;
}

.site-logo a {
	color: var(--primary-blue);
	font-weight: 700;
	font-size: 1.5rem;
	text-decoration: none;
	letter-spacing: -0.5px;
}

.site-navigation {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

.hamburger-icon {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.hamburger-icon span {
	width: 24px;
	height: 2px;
	background-color: var(--primary-blue);
	transition: all 0.3s ease;
}

#primary-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
	margin: 0;
	padding: 0;
}

#primary-menu a {
	color: var(--text-dark);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	position: relative;
	transition: color 0.3s ease;
}

#primary-menu a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--accent-blue);
	transition: width 0.3s ease;
}

#primary-menu a:hover,
#primary-menu a.current {
	color: var(--primary-blue);
}

#primary-menu a:hover::after,
#primary-menu a.current::after {
	width: 100%;
}

.header-social {
	display: flex;
	gap: 1.5rem;
	flex-shrink: 0;
}

.social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: var(--primary-blue);
	color: white;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 1rem;
}

.social-icon:hover {
	background-color: var(--light-blue);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(63, 81, 181, 0.3);
}

/* ===========================
   Main Content
   =========================== */

.clearpath-main {
	padding-top: 80px;
}

.section-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 3rem 2rem;
}

/* ===========================
   Hero Section
   =========================== */

.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding-top: 80px;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
}

.hero-bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.6);
}

.hero-content {
	text-align: center;
	color: white;
	z-index: 1;
	animation: fadeInUp var(--animation-duration) ease-out;
}

.hero-title {
	font-size: 5rem;
	font-weight: 300;
	letter-spacing: 8px;
	margin-bottom: 1rem;
	text-transform: uppercase;
	animation: slideInDown 0.8s ease-out;
}

.hero-subtitle {
	font-size: 2rem;
	font-weight: 300;
	letter-spacing: 2px;
	animation: slideInUp 0.8s ease-out 0.2s both;
}

/* ===========================
   CTA Sections
   =========================== */

.connect-cta-section {
	background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
	color: white;
	padding: 4rem 2rem;
	text-align: center;
}

.connect-cta-content {
	max-width: 800px;
	margin: 0 auto;
	animation: fadeInUp var(--animation-duration) ease-out;
}

.connect-cta-section h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 600;
}

.connect-cta-section p {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	line-height: 1.8;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.cta-button {
	display: inline-block;
	background-color: white;
	color: var(--primary-blue);
	padding: 1rem 2.5rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	border: 2px solid white;
	position: relative;
	overflow: hidden;
}

.cta-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background-color: var(--accent-blue);
	transition: left 0.3s ease;
	z-index: -1;
}

.cta-button:hover {
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:hover::before {
	left: 0;
}

.button-arrow {
	margin-left: 0.5rem;
	transition: transform 0.3s ease;
	display: inline-block;
}

.cta-button:hover .button-arrow {
	transform: translateX(5px);
}

/* ===========================
   Why ClearPath Section
   =========================== */

.why-clearpath-section {
	background-color: var(--bg-light);
	padding: 5rem 2rem;
}

.why-clearpath-section .section-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	padding: 0 2rem;
}

.why-content {
	animation: fadeInLeft var(--animation-duration) ease-out;
}

.section-title {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	font-weight: 600;
	color: var(--text-dark);
}

.section-title .accent {
	color: var(--accent-blue);
}

.why-text {
	color: #666;
	margin-bottom: 2rem;
	line-height: 1.8;
	font-size: 1rem;
}

.read-more-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background-color: var(--primary-blue);
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.read-more-btn:hover {
	background-color: var(--light-blue);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(63, 81, 181, 0.3);
}

.btn-arrow {
	transition: transform 0.3s ease;
}

.read-more-btn:hover .btn-arrow {
	transform: translateX(3px);
}

.why-features-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	animation: fadeInRight var(--animation-duration) ease-out;
}

.feature-card {
	background-color: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	cursor: pointer;
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(63, 81, 181, 0.2);
}

.feature-image {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.feature-card h3 {
	padding: 1.5rem;
	color: var(--text-dark);
	font-size: 1.2rem;
	font-weight: 600;
	text-align: center;
}

/* ===========================
   Trusted By & Partnering
   =========================== */

.trusted-by-section {
	background-color: white;
	padding: 5rem 2rem;
	border-bottom: 1px solid var(--border-light);
}

.partnering-section {
	background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
	color: white;
	padding: 5rem 2rem;
}

.partnering-section .section-title {
	color: white;
}

.logos-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
	align-items: center;
}

.logo-item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	background-color: white;
	border-radius: 8px;
	transition: all 0.3s ease;
	min-height: 100px;
	animation: fadeInUp var(--animation-duration) ease-out;
}

.partnering-section .logo-item {
	background-color: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.partnering-section .logo-item:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

.company-logo {
	max-width: 100px;
	height: auto;
	filter: grayscale(100%);
	transition: filter 0.3s ease;
}

.logo-item:hover .company-logo {
	filter: grayscale(0);
}

.partnering-section .company-logo {
	filter: brightness(0) invert(1);
}

/* ===========================
   Mission Section
   =========================== */

.our-mission-section {
	background-color: white;
	padding: 5rem 2rem;
}

.our-mission-section .section-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.mission-image {
	animation: fadeInLeft var(--animation-duration) ease-out;
}

.mission-img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.mission-content {
	animation: fadeInRight var(--animation-duration) ease-out;
}

.mission-points {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.mission-point {
	display: flex;
	gap: 1.5rem;
	animation: fadeInUp var(--animation-duration) ease-out;
}

.point-icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	background-color: var(--accent-blue);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	margin-top: 0.5rem;
}

.point-content h3 {
	color: var(--text-dark);
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.point-content p {
	color: #666;
	line-height: 1.6;
	font-size: 0.95rem;
}

/* ===========================
   Testimonial Section
   =========================== */

.testimonial-section {
	background-color: var(--bg-light);
	padding: 5rem 2rem;
}

.testimonial-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.testimonial-image {
	animation: fadeInLeft var(--animation-duration) ease-out;
}

.testimonial-img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
	animation: fadeInRight var(--animation-duration) ease-out;
	position: relative;
}

.quote-icon {
	font-size: 4rem;
	color: var(--accent-blue);
	margin-bottom: 1rem;
	opacity: 0.3;
	line-height: 1;
}

.testimonial-quote {
	font-size: 1.3rem;
	color: var(--text-dark);
	margin-bottom: 2rem;
	line-height: 1.8;
	font-style: italic;
}

.testimonial-author {
	margin-bottom: 1.5rem;
}

.testimonial-author h4 {
	color: var(--text-dark);
	font-size: 1.1rem;
	margin-bottom: 0.25rem;
	font-weight: 600;
}

.author-role {
	color: var(--accent-blue);
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.signature {
	height: 50px;
	object-fit: contain;
	object-position: left;
}

/* ===========================
   Bottom CTA Section
   =========================== */

.bottom-cta-section {
	background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
	padding: 4rem 2rem;
}

.cta-box {
	max-width: 600px;
	margin: 0 auto;
	color: white;
	animation: fadeInUp var(--animation-duration) ease-out;
}

.cta-box h2 {
	font-size: 2rem;
	text-transform: uppercase;
	margin-bottom: 1rem;
	letter-spacing: 1px;
	font-weight: 600;
}

.cta-box p {
	margin-bottom: 2rem;
	font-size: 1rem;
	line-height: 1.6;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-form input {
	padding: 0.75rem 1rem;
	border: none;
	border-radius: 6px;
	font-size: 0.95rem;
	font-family: inherit;
	background-color: rgba(255, 255, 255, 0.95);
	color: var(--text-dark);
	transition: all 0.3s ease;
}

.contact-form input:focus {
	outline: none;
	background-color: white;
	box-shadow: 0 0 0 2px var(--accent-blue);
}

.contact-form input::placeholder {
	color: #999;
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.9rem;
	cursor: pointer;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin-top: 3px;
	flex-shrink: 0;
	cursor: pointer;
}

.submit-btn {
	background-color: white;
	color: var(--primary-blue);
	padding: 0.75rem 2rem;
	border: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
	margin-top: 0.5rem;
}

.submit-btn:hover {
	background-color: var(--accent-blue);
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ===========================
   Footer
   =========================== */

.site-footer {
	background-color: var(--bg-dark);
	color: white;
	padding: 4rem 2rem 2rem;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding-bottom: 2rem;
}

.footer-column h4 {
	margin-bottom: 1.5rem;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.footer-about p {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
	font-size: 0.95rem;
}

.footer-column ul {
	list-style: none;
}

.footer-column ul li {
	margin-bottom: 0.75rem;
}

.footer-column ul a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.3s ease;
	font-size: 0.95rem;
}

.footer-column ul a:hover {
	color: var(--accent-blue);
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.copyright {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
}

.footer-bottom-links {
	display: flex;
	gap: 1.5rem;
}

.footer-bottom-links a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
	color: var(--accent-blue);
}

/* ===========================
   Animations
   =========================== */

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInDown {
	from {
		opacity: 0;
		transform: translateY(-60px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(60px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-40px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(40px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 1024px) {
	.header-container {
		padding: 1rem;
		gap: 1rem;
	}

	#primary-menu {
		gap: 1.5rem;
	}

	.hero-title {
		font-size: 3.5rem;
	}

	.hero-subtitle {
		font-size: 1.5rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.why-clearpath-section .section-container,
	.our-mission-section .section-container,
	.testimonial-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.why-features-grid {
		grid-template-columns: 1fr;
	}

	.logos-grid {
		grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	}
}

@media (max-width: 768px) {
	.menu-toggle {
		display: flex;
	}

	.primary-menu-container {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background-color: white;
		border-bottom: 1px solid var(--border-light);
		padding: 1rem;
		flex-direction: column;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	}

	.primary-menu-container.active {
		display: flex;
	}

	#primary-menu {
		flex-direction: column;
		gap: 0.5rem;
	}

	#primary-menu a {
		padding: 0.75rem;
		display: block;
	}

	.header-social {
		gap: 1rem;
	}

	.hero-title {
		font-size: 2.5rem;
		letter-spacing: 4px;
	}

	.hero-subtitle {
		font-size: 1.2rem;
	}

	.connect-cta-section h2 {
		font-size: 1.8rem;
	}

	.section-title {
		font-size: 1.8rem;
	}

	.contact-form {
		gap: 0.75rem;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.footer-bottom-content {
		flex-direction: column;
		justify-content: center;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.header-container {
		padding: 0.75rem;
	}

	.hero-title {
		font-size: 2rem;
		letter-spacing: 2px;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.section-title {
		font-size: 1.5rem;
	}

	.cta-button,
	.submit-btn {
		width: 100%;
	}

	.logos-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.logo-item {
		min-height: 80px;
	}

	.company-logo {
		max-width: 60px;
	}
}
