/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Cal Sans', system-ui, -apple-system, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 {
	font-size: 3.5rem;
	font-weight: 700;
}

h2 {
	font-size: 2.5rem;
}

h3 {
	font-size: 1.8rem;
}

p {
	margin-bottom: 1rem;
	font-size: 1.1rem;
	line-height: 1.7;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 12px 30px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 500;
	font-size: 1rem;
	border: 2px solid transparent;
	transition: all 0.3s ease;
	cursor: pointer;
	font-family: inherit;
}

.btn-primary {
	background: #000;
	color: #fff;
	border-color: #000;
}

.btn-primary:hover {
	background: transparent;
	color: #000;
	border-color: #000;
}

.btn-secondary {
	background: #f5f5f5;
	color: #333;
	border-color: #ddd;
}

.btn-secondary:hover {
	background: #e0e0e0;
}

.btn-outline {
	background: transparent;
	color: #000;
	border-color: #000;
}

.btn-outline:hover {
	background: #000;
	color: #fff;
}

/* Navigation */
.navbar {
	background: #fff;
	border-bottom: 1px solid #eee;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	padding: 1rem 0;
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-brand {
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	font-weight: 700;
	text-decoration: none;
	color: #000;
}

.nav-brand img {
	height: 40px;
	width: auto;
}

.nav-menu {
	display: flex;
	gap: 2rem;
}

.nav-menu a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav-menu a:hover {
	color: #000;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 5px;
	z-index: 1001;
}

.mobile-menu-toggle span {
	width: 25px;
	height: 3px;
	background: #000;
	margin: 3px 0;
	transition: 0.3s;
	border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 6px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -6px);
}

/* Animation Classes */
.animate-section {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.animate-section.animate {
	opacity: 1;
	transform: translateY(0);
}

/* Hero Section */
.hero {
	background-image: linear-gradient(
			103deg,
			rgba(210, 210, 210, 0.78) 2.03%,
			rgba(210, 210, 210, 0.6) 58.46%,
			rgba(210, 210, 210, 0) 90.36%
		),
		url('../img/h1.webp');
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	min-height: 100vh;
	display: flex;
	align-items: center;
	text-align: center;
	padding: 120px 0 80px;
}

.hero-content h1 {
	max-width: 800px;
	margin: 0 auto 2rem;
	color: #000;
}

.hero-content p {
	max-width: 600px;
	margin: 0 auto 3rem;
	font-size: 1.2rem;
	color: #000;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* Programs Section */
.programs {
	padding: 100px 0;
	background: #fff;
}

.programs h2 {
	text-align: center;
	margin-bottom: 4rem;
}

.programs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

.program-card {
	background: #f8f9fa;
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.program-card img {
	width: 100%;
	height: auto;
	margin-bottom: 1.5rem;
	border-radius: 8px;
}

.program-card h3 {
	margin-bottom: 1rem;
}

.program-card ul {
	list-style: none;
	margin-top: 1.5rem;
	text-align: left;
}

.program-card li {
	margin-bottom: 0.5rem;
	font-size: 0.95rem;
	color: #666;
}

/* Why Us Section */
.why-us {
	background: #f8f9fa;
	padding: 100px 0;
}

.why-us-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 4rem;
	align-items: center;
}

.why-us-text h2 {
	margin-bottom: 2rem;
}

.why-us-stats {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.stat-item {
	text-align: center;
	padding: 1.5rem;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
	display: block;
	font-size: 2.5rem;
	font-weight: 700;
	color: #000;
	font-family: 'Space Mono', monospace;
}

.stat-label {
	font-size: 0.9rem;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Testimonials Section */
.testimonials {
	padding: 100px 0;
	background: #fff;
}

.testimonials h2 {
	text-align: center;
	margin-bottom: 4rem;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.testimonial-card {
	background: #f8f9fa;
	border-radius: 12px;
	padding: 2rem;
	position: relative;
}

.testimonial-content p {
	font-style: italic;
	margin-bottom: 1.5rem;
	color: #555;
}

.testimonial-author strong {
	display: block;
	margin-bottom: 0.25rem;
}

.testimonial-author span {
	color: #666;
	font-size: 0.9rem;
}

/* Learning Approach Section */
.learning-approach {
	background: #f8f9fa;
	padding: 100px 0;
}

.learning-approach h2 {
	text-align: center;
	margin-bottom: 4rem;
}

.approach-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.approach-text h3 {
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.approach-text h3:first-child {
	margin-top: 0;
}

.approach-features {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.feature-item {
	background: #fff;
	padding: 1.5rem;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
	font-size: 2rem;
	display: block;
	margin-bottom: 1rem;
}

.feature-item h4 {
	margin-bottom: 0.5rem;
}

.feature-item p {
	margin: 0;
	font-size: 0.95rem;
	color: #666;
}

/* FAQ Section */
.faq {
	padding: 100px 0;
	background: #fff;
}

.faq h2 {
	text-align: center;
	margin-bottom: 4rem;
}

.faq-content {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	border-bottom: 1px solid #eee;
	margin-bottom: 1rem;
}

.faq-question {
	width: 100%;
	background: none;
	border: none;
	padding: 1.5rem 0;
	text-align: left;
	font-size: 1.1rem;
	font-weight: 500;
	cursor: pointer;
	color: #333;
	position: relative;
}

.faq-question:after {
	content: '+';
	position: absolute;
	right: 0;
	font-size: 1.5rem;
	transition: transform 0.3s ease;
}

.faq-question.active:after {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
	max-height: 200px;
	padding-bottom: 1.5rem;
}

/* Contact Section */
.contact {
	padding: 100px 0;
	background: #f8f9fa;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.contact-info h2 {
	margin-bottom: 1.5rem;
}

.contact-details {
	margin-top: 2rem;
}

.contact-item {
	margin-bottom: 2rem;
}

.contact-item strong {
	display: block;
	margin-bottom: 0.5rem;
	color: #000;
}

.contact-item p {
	margin: 0;
	color: #666;
}

.contact-form {
	background: #fff;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
	margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #eee;
	border-radius: 8px;
	font-size: 1rem;
	font-family: inherit;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #000;
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	cursor: pointer;
	font-size: 0.95rem;
	line-height: 1.4;
	gap: 12px;
}

.checkbox-label input[type='checkbox'] {
	width: auto;
	margin: 0;
	opacity: 0;
	position: absolute;
}

.checkmark {
	width: 20px;
	height: 20px;
	border: 2px solid #ddd;
	border-radius: 4px;
	flex-shrink: 0;
	position: relative;
	transition: all 0.3s ease;
	margin-top: 2px;
}

.checkmark:after {
	content: '';
	position: absolute;
	display: none;
	left: 6px;
	top: 2px;
	width: 6px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.checkbox-label input[type='checkbox']:checked + .checkmark {
	background-color: #000;
	border-color: #000;
}

.checkbox-label input[type='checkbox']:checked + .checkmark:after {
	display: block;
}

.checkbox-label input[type='checkbox']:focus + .checkmark {
	border-color: #000;
	box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

/* About Page Styles */
.about-hero {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 150px 0 100px;
	text-align: center;
}

.about-hero h1 {
	margin-bottom: 1.5rem;
}

.about-hero p {
	max-width: 600px;
	margin: 0 auto;
	font-size: 1.2rem;
	color: #666;
}

.our-story {
	padding: 100px 0;
	background: #fff;
}

.story-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.story-image img,
.mission-image img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission {
	background: #f8f9fa;
	padding: 100px 0;
}

.mission-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.values {
	padding: 100px 0;
	background: #fff;
}

.values h2 {
	text-align: center;
	margin-bottom: 4rem;
}

.values-content {
	max-width: 800px;
	margin: 0 auto;
}

.value-item {
	margin-bottom: 3rem;
}

.value-item h3 {
	margin-bottom: 1rem;
}

/* Cookie Modal */
.cookie-modal {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	padding: 2rem;
	max-width: 400px;
	z-index: 10000;
	transform: translateY(100px);
	opacity: 0;
	transition: all 0.3s ease;
}

.cookie-modal.show {
	display: block;
	transform: translateY(0);
	opacity: 1;
}

.cookie-modal h3 {
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.cookie-modal p {
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
	color: #666;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
}

.cookie-link {
	font-size: 0.9rem;
	color: #666;
	text-decoration: underline;
}

/* Footer */
.footer {
	background: #000;
	color: #fff;
	padding: 80px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
	margin-bottom: 1.5rem;
	color: #fff;
}

.footer-section p {
	color: #ccc;
	font-size: 0.95rem;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 0.5rem;
}

.footer-section ul li a {
	color: #ccc;
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.3s ease;
}

.footer-section ul li a:hover {
	color: #fff;
}

.footer-bottom {
	border-top: 1px solid #333;
	padding-top: 2rem;
	text-align: center;
}

.footer-bottom p {
	color: #ccc;
	font-size: 0.9rem;
	margin: 0;
}

/* Legal Pages */
.legal-page {
	padding: 150px 0 100px;
	background: #fff;
}

.legal-content {
	max-width: 800px;
	margin: 0 auto;
}

.legal-content h1 {
	font-size: 1.5rem;
	margin-bottom: 2rem;
}

.legal-content h2 {
	margin: 3rem 0 1.5rem;
	font-size: 1.5rem;
}

.legal-content h3 {
	margin: 2rem 0 1rem;
	font-size: 1.4rem;
}

.legal-content p {
	margin-bottom: 1.5rem;
}

.legal-content ul,
.legal-content ol {
	margin-bottom: 1.5rem;
	padding-left: 2rem;
}

.legal-content li {
	margin-bottom: 0.5rem;
}

.legal-content a {
	color: #000;
	text-decoration: underline;
}

/* Form Modal Styles */
.form-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.form-modal.show {
	opacity: 1;
	visibility: visible;
}

.form-modal-backdrop {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
}

.form-modal-content {
	background: #fff;
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	max-width: 400px;
	width: 100%;
	position: relative;
	transform: scale(0.8);
	transition: transform 0.3s ease;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.form-modal.show .form-modal-content {
	transform: scale(1);
}

.form-modal-content p {
	margin: 1rem 0;
	font-size: 1.1rem;
	line-height: 1.4;
}

.form-modal-close {
	position: absolute;
	top: 10px;
	right: 15px;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: inherit;
	padding: 5px;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
}

.form-modal-close:hover {
	background-color: rgba(0, 0, 0, 0.1);
}

.loading-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid #000;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0 auto 1rem;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.success-icon,
.error-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-size: 1.5rem;
	font-weight: bold;
}

.success-icon {
	background: #28a745;
	color: white;
}

.error-icon {
	background: #dc3545;
	color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
	.container {
		padding: 0 15px;
	}

	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

	.mobile-menu-toggle {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100vh;
		background: #fff;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 2rem;
		transition: left 0.3s ease;
		z-index: 1000;
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-menu a {
		font-size: 1.5rem;
		padding: 1rem;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.programs-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.why-us-content,
	.story-content,
	.mission-content,
	.approach-content,
	.contact-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.why-us-stats {
		justify-content: space-around;
	}

	.stat-item {
		flex: 1;
		margin: 0 0.5rem;
	}

	.stat-number {
		font-size: 2rem;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.approach-features {
		gap: 1.5rem;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.cookie-modal {
		bottom: 10px;
		right: 10px;
		left: 10px;
		max-width: none;
	}

	.cookie-buttons {
		flex-direction: column;
	}
}

@media (max-width: 480px) {
	h1 {
		font-size: 2rem;
	}

	.hero {
		padding: 100px 0 60px;
	}

	.programs,
	.why-us,
	.testimonials,
	.learning-approach,
	.faq,
	.contact,
	.our-story,
	.mission,
	.values {
		padding: 60px 0;
	}

	.program-card,
	.contact-form {
		padding: 1.5rem;
	}
}
