/**
 * assets/main.css
 *
 * @format
 */

/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #0b5394; /* blue */
	--secondary: #ff7f11; /* orange */
	--accent: #1f6fb2; /* blue accent */
	--light: #f8f9fa;
	--dark: #1a2332;
	--text: #333333;
	--text-light: #666666;
}

body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: var(--text);
	overflow-x: hidden;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

/* Header & Navigation */
header {
	background-color: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	transition: all 0.3s ease;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.logo-text {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary);
}

.logo-text span {
	color: var(--secondary);
}

.nav-links {
	display: flex;
	list-style: none;
}

.nav-links li {
	margin-left: 2rem;
}

.nav-links a {
	text-decoration: none;
	color: var(--text);
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.nav-links a:hover {
	color: var(--secondary);
}

.nav-links a::after {
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -5px;
	left: 0;
	background-color: var(--secondary);
	transition: width 0.3s ease;
}

.nav-links a:hover::after {
	width: 100%;
}

.hamburger {
	display: none;
	cursor: pointer;
	font-size: 1.5rem;
}

/* Hero Section */
.hero {
	height: 100vh;
	position: relative;
	margin-top: 0;
}

.carousel {
	position: relative;
	height: 100%;
	overflow: hidden;
}

.carousel-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.carousel-slide.active {
	opacity: 1;
}

.slide-content {
	text-align: center;
	color: white;
	max-width: 800px;
	padding: 0 2rem;
}

.slide-title {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

.gold-accent {
	color: var(--secondary);
}

.slide-text {
	font-size: 1.5rem;
	margin-bottom: 2rem;
}

.btn {
	display: inline-block;
	padding: 0.8rem 2rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.btn-accent {
	background-color: var(--secondary);
	color: white;
}

.btn-accent:hover {
	background-color: #ff962e;
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.carousel-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	font-size: 2rem;
	padding: 0.5rem 1rem;
	cursor: pointer;
	transition: background 0.3s ease;
}

.carousel-nav:hover {
	background: rgba(0, 0, 0, 0.8);
}

.carousel-prev {
	left: 20px;
}

.carousel-next {
	right: 20px;
}

.carousel-controls {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
}

.carousel-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	margin: 0 5px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.carousel-dot.active {
	background: white;
}

/* Programs Section */
.programs-section {
	padding: 100px 0;
	background-color: #f8f9fa;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-header h2 {
	font-size: 2.5rem;
	color: var(--primary);
	margin-bottom: 1rem;
}

.section-header p {
	font-size: 1.2rem;
	color: var(--text-light);
	max-width: 600px;
	margin: 0 auto;
}

.programs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.program-card {
	background: white;
	border-radius: 10px;
	padding: 40px 30px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.program-icon {
	font-size: 3rem;
	color: var(--secondary);
	margin-bottom: 20px;
}

.program-card h3 {
	font-size: 1.8rem;
	color: var(--primary);
	margin-bottom: 15px;
}

.program-card p {
	color: var(--text-light);
	margin-bottom: 20px;
}

.program-card ul {
	list-style: none;
	text-align: left;
}

.program-card li {
	padding: 8px 0;
	border-bottom: 1px solid #eee;
	position: relative;
	padding-left: 20px;
}

.program-card li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--secondary);
	font-weight: bold;
}

/* Stats Section */
.stats-section {
	padding: 80px 0;
	background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
	color: white;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	text-align: center;
}

.stat-item {
	padding: 20px;
}

.stat-number {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--secondary);
}

.stat-label {
	font-size: 1.2rem;
	opacity: 0.9;
}

/* CTA Section */
.cta-section {
	padding: 100px 0;
	background: linear-gradient(rgba(11, 83, 148, 0.9), rgba(11, 83, 148, 0.9)),
		url("./assets/images/cta-bg.jpg");
	background-size: cover;
	background-position: center;
	color: white;
	text-align: center;
}

.cta-content h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.cta-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.btn-primary {
	background-color: var(--secondary);
	color: white;
}

.btn-primary:hover {
	background-color: #ff962e;
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
	border: 2px solid white;
	color: white;
	background: transparent;
}

.btn-outline:hover {
	background: white;
	color: var(--primary);
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
	background-color: var(--dark);
	color: white;
	padding: 60px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-column h3 {
	font-size: 1.3rem;
	margin-bottom: 20px;
	color: var(--secondary);
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: var(--secondary);
}

.footer-links i {
	margin-right: 10px;
	width: 20px;
	text-align: center;
}

.social-links {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: white;
	transition: all 0.3s ease;
}

.social-links a:hover {
	background: var(--secondary);
	transform: translateY(-3px);
}

.copyright {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
	.hamburger {
		display: block;
	}

	.nav-links {
		position: fixed;
		top: 70px;
		left: 0;
		width: 100%;
		background: white;
		flex-direction: column;
		align-items: center;
		padding: 2rem 0;
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
		transform: translateY(-100%);
		opacity: 0;
		transition: all 0.3s ease;
	}

	.nav-links.active {
		transform: translateY(0);
		opacity: 1;
	}

	.nav-links li {
		margin: 1rem 0;
	}

	.slide-title {
		font-size: 2.5rem;
	}

	.slide-text {
		font-size: 1.2rem;
	}

	.programs-grid {
		grid-template-columns: 1fr;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}
}

@media (max-width: 480px) {
	.slide-title {
		font-size: 2rem;
	}

	.stats-grid {
		grid-template-columns: 1fr;
	}

	.stat-number {
		font-size: 2.5rem;
	}
}

/* Lead Modal */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 2000;
}

.modal-overlay.active {
	display: flex;
}

.modal {
	width: 92%;
	max-width: 640px;
	background: white;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
	padding: 28px 24px;
	position: relative;
}

.modal-close {
	position: absolute;
	top: 10px;
	right: 12px;
	background: transparent;
	border: none;
	font-size: 1.8rem;
	line-height: 1;
	cursor: pointer;
	color: var(--text);
}

.modal-title {
	font-size: 1.5rem;
	margin-bottom: 6px;
	color: var(--primary);
	font-weight: 800;
}

.modal-subtitle {
	color: var(--text-light);
	margin-bottom: 18px;
}

.modal-form .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.modal-form .form-group {
	display: flex;
	flex-direction: column;
}

.modal-form .form-group.full-width {
	grid-column: 1 / -1;
}

.modal-form label {
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 6px;
	font-size: 0.95rem;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
	padding: 12px 14px;
	border: 1px solid var(--border);
	border-radius: 10px;
	font-size: 1rem;
	transition: all 0.2s ease;
	background: #fff;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
	outline: none;
	border-color: var(--secondary);
	box-shadow: 0 0 0 3px rgba(255, 127, 17, 0.15);
}

.modal-actions {
	display: flex;
	gap: 12px;
	margin-top: 14px;
}

@media (max-width: 560px) {
	.modal-form .form-row {
		grid-template-columns: 1fr;
	}
}

/* Modern Join Button */
.google-form-btn {
	/* Enhanced gradient with better color harmony */
	background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #5a56b8 100%);
	color: white;
	border: none;
	padding: 14px 24px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	box-shadow: 0 4px 20px rgba(102, 126, 234, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-left: 20px;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	position: relative;
	overflow: hidden;
	min-width: 140px;
	font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

/* Pseudo-element for additional shine effect */
.google-form-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.6s ease;
}

.google-form-btn:hover::before {
	left: 100%;
}

.google-form-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
	background: linear-gradient(135deg, #764ba2 0%, #667eea 50%, #5a56b8 100%);
}

.google-form-btn:active {
	transform: translateY(-1px);
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	transition: all 0.1s ease;
}

/* Focus state for accessibility */
.google-form-btn:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3),
		0 4px 20px rgba(102, 126, 234, 0.25);
}

/* Disabled state */
.google-form-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
	box-shadow: 0 2px 10px rgba(102, 126, 234, 0.2);
}

.btn-icon {
	font-size: 17px;
	animation: float 3s ease-in-out infinite;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Enhanced floating animation */
@keyframes float {
	0%,
	100% {
		transform: translateY(0px) scale(1);
	}
	33% {
		transform: translateY(-3px) scale(1.05);
	}
	66% {
		transform: translateY(1px) scale(0.95);
	}
}

/* Loading state */
.google-form-btn.loading {
	pointer-events: none;
}

.google-form-btn.loading .btn-icon {
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Responsive design */
@media (max-width: 768px) {
	.google-form-btn {
		padding: 12px 20px;
		font-size: 14px;
		margin-left: 0;
		min-width: 120px;
	}

	.btn-icon {
		font-size: 16px;
	}
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
	.google-form-btn {
		box-shadow: 0 4px 20px rgba(102, 126, 234, 0.35),
			inset 0 1px 0 rgba(255, 255, 255, 0.15);
	}

	.google-form-btn:hover {
		box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5),
			inset 0 1px 0 rgba(255, 255, 255, 0.25);
	}
}

/* Alternative Color Schemes */

/* Success Green */
.green-btn {
	background: linear-gradient(135deg, #00b09b 0%, #96c93d 100%);
	box-shadow: 0 4px 15px rgba(0, 176, 155, 0.3);
}

/* Energetic Orange */
.orange-btn {
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
	box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

/* Professional Blue */
.blue-btn {
	background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
	box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}
/* Mobile Navigation Styles */
@media (max-width: 768px) {
	.hamburger {
		display: block;
		z-index: 1001;
		position: relative;
	}

	.nav-links {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(10px);
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding: 2rem 0;
		transform: translateX(-100%);
		opacity: 0;
		transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
		z-index: 999;
	}

	.nav-links.active {
		transform: translateX(0);
		opacity: 1;
	}

	.nav-links li {
		margin: 1.5rem 0;
		opacity: 0;
		transform: translateX(-30px);
	}

	.nav-links.active li {
		opacity: 1;
		transform: translateX(0);
		transition: all 0.5s ease;
	}

	.nav-links a {
		font-size: 1.3rem;
		padding: 0px 20px;
		display: block;
		text-align: center;
		border-radius: 8px;
		transition: all 0.3s ease;
	}

	.nav-links a:hover {
		background-color: rgba(255, 127, 17, 0.1);
		transform: translateX(10px);
	}

	/* Stagger animation for menu items */
	.nav-links.active li:nth-child(1) {
		transition-delay: 0.1s;
	}
	.nav-links.active li:nth-child(2) {
		transition-delay: 0.2s;
	}
	.nav-links.active li:nth-child(3) {
		transition-delay: 0.3s;
	}
	.nav-links.active li:nth-child(4) {
		transition-delay: 0.4s;
	}
	.nav-links.active li:nth-child(5) {
		transition-delay: 0.5s;
	}
	.nav-links.active li:nth-child(6) {
		transition-delay: 0.6s;
	}

	/* Prevent body scroll when menu is open */
	body.menu-open {
		overflow: hidden;
	}
}
