/* GSBOT Manager - Modern, Elegant Styling */

/* Import FontAwesome */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");

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

html {
	overflow-x: hidden;
}

:root {
	--primary-color: #2563eb;
	--primary-hover: #1d4ed8;
	--secondary-color: #64748b;
	--accent-color: #0ea5e9;
	--success-color: #10b981;
	--warning-color: #f59e0b;
	--danger-color: #ef4444;
	--text-primary: #1e293b;
	--text-secondary: #64748b;
	--text-muted: #94a3b8;
	--background: #ffffff;
	--background-light: #f8fafc;
	--background-card: #ffffff;
	--border-color: #e2e8f0;
	--border-light: #f1f5f9;
	--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
	--shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
	--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),
		0 4px 6px -4px rgb(0 0 0 / 0.1);
	--shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1),
		0 8px 10px -6px rgb(0 0 0 / 0.1);
	--radius: 0.5rem;
	--radius-lg: 0.75rem;
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		sans-serif;
	line-height: 1.6;
	color: var(--text-primary);
	background-color: var(--background);
	font-size: 16px;
	font-weight: 400;
	overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 800;
	line-height: 1.3;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

h1 {
	font-size: 3rem;
	font-weight: 900;
}
h2 {
	font-size: 2.25rem;
}
h3 {
	font-size: 1.875rem;
}
h4 {
	font-size: 1.5rem;
}
h5 {
	font-size: 1.25rem;
}
h6 {
	font-size: 1.125rem;
}

p {
	margin-bottom: 1rem;
	color: var(--text-secondary);
	font-weight: 500;
}

a {
	color: var(--primary-color);
	text-decoration: none;
	transition: var(--transition);
	font-weight: 600;
}

strong,
b {
	font-weight: 800;
}

label {
	font-weight: 700;
}

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

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

@media (min-width: 640px) {
	.container {
		padding: 0 2rem;
	}
}

/* Loading Screen */
#loading-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--accent-color)
	);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	transition: opacity 0.3s ease;
}

.loader {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: white;
}

.spinner {
	width: 60px;
	height: 60px;
	margin: 0 auto;
	position: relative;
}

.spinner::before,
.spinner::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 3px solid transparent;
}

.spinner::before {
	border-top: 3px solid rgba(255, 255, 255, 0.9);
	border-right: 3px solid rgba(255, 255, 255, 0.9);
	animation: spin-unique 1.2s linear infinite;
}

.spinner::after {
	border-bottom: 3px solid rgba(255, 255, 255, 0.5);
	border-left: 3px solid rgba(255, 255, 255, 0.5);
	animation: spin-unique 1.2s linear infinite reverse;
}

@keyframes spin-unique {
	0% {
		transform: rotate(0deg) scale(1);
	}
	50% {
		transform: rotate(180deg) scale(1.1);
	}
	100% {
		transform: rotate(360deg) scale(1);
	}
}

/* Rocket animations for scroll-to-top button */
@keyframes rocketBounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0) rotate(0deg);
	}
	40% {
		transform: translateY(-8px) rotate(-5deg);
	}
	60% {
		transform: translateY(-4px) rotate(3deg);
	}
}

@keyframes rocketLaunch {
	0% {
		transform: translateY(0) rotate(0deg) scale(1);
		opacity: 1;
	}
	50% {
		transform: translateY(-15px) rotate(-10deg) scale(1.2);
		opacity: 0.8;
	}
	100% {
		transform: translateY(-30px) rotate(-20deg) scale(0.8);
		opacity: 0.3;
	}
}

/* Navbar */
.navbar-container {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border-light);
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: var(--transition);
}

.navbar-container .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.navbar-brand a {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--text-primary);
}

.navbar-brand .logo {
	height: 40px;
	width: auto;
}

.navbar-nav {
	display: flex;
	list-style: none;
	gap: 2rem;
	margin: 0;
}

.nav-link {
	color: var(--text-secondary);
	font-weight: 700;
	transition: var(--transition);
	position: relative;
}

.nav-link:hover,
.nav-link.active {
	color: var(--primary-color);
}

.nav-link.active::after {
	content: "";
	position: absolute;
	bottom: -0.5rem;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--primary-color);
	border-radius: 1px;
}

.navbar-toggle {
	display: none;
	flex-direction: column;
	gap: 0.25rem;
	cursor: pointer;
	padding: 0.5rem;
}

.navbar-toggle span {
	width: 24px;
	height: 2px;
	background: var(--text-primary);
	border-radius: 1px;
	transition: var(--transition);
}

/* Mobile Navigation */
@media (max-width: 768px) {
	.navbar-toggle {
		display: flex;
	}

	.navbar-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: white;
		border-bottom: 1px solid var(--border-color);
		box-shadow: var(--shadow-lg);
	}

	.navbar-menu.active {
		display: block;
	}

	.navbar-nav {
		flex-direction: column;
		gap: 0;
		padding: 1rem;
	}

	.nav-item {
		text-align: center;
		padding: 0.75rem 0;
		border-bottom: 1px solid var(--border-light);
	}

	.nav-item:last-child {
		border-bottom: none;
	}

	.navbar-toggle.active span:nth-child(1) {
		transform: rotate(45deg) translate(2px, 2px);
	}

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

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

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	font-weight: 700;
	font-size: 0.9rem;
	border-radius: var(--radius);
	border: 1px solid transparent;
	cursor: pointer;
	transition: var(--transition);
	text-decoration: none;
	white-space: nowrap;
}

.btn-primary {
	background: var(--primary-color);
	color: white;
	box-shadow: var(--shadow);
}

.btn-primary:hover {
	background: var(--primary-hover);
	transform: translateY(-1px);
	box-shadow: var(--shadow-lg);
	color: white;
}

.btn-secondary {
	background: var(--secondary-color);
	color: white;
}

.btn-secondary:hover {
	background: #475569;
	color: white;
}

.btn-outline {
	background: transparent;
	color: var(--primary-color);
	border-color: var(--primary-color);
}

.btn-outline:hover {
	background: var(--primary-color);
	color: white;
}

/* Sections */
.section {
	padding: 4rem 0;
}

.section.bg-light {
	background: var(--background-light);
}

.section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.section-header h2 {
	margin-bottom: 1rem;
	font-weight: 900;
}

.section-header p {
	font-size: 1.125rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
	font-weight: 600;
}

/* Hero Section */
.hero-section {
	background: linear-gradient(
		135deg,
		var(--primary-color) 0%,
		var(--accent-color) 100%
	);
	color: white;
	padding: 6rem 0;
	overflow: hidden;
	position: relative;
}

.hero-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	opacity: 0.1;
}

.hero-section .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero-content h1 {
	color: white;
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	line-height: 1.1;
}

.hero-content p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.25rem;
	margin-bottom: 2rem;
}

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

.hero-image {
	text-align: center;
}

.hero-icon-container {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 300px;
}

.hero-main-icon {
	font-size: 8rem;
	color: rgba(255, 255, 255, 0.9);
	filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
	animation: float 3s ease-in-out infinite;
}

.floating-icons {
	position: absolute;
	width: 100%;
	height: 100%;
}

.floating-icon {
	position: absolute;
	color: rgba(255, 255, 255, 0.7);
	font-size: 2rem;
	animation: floatAround 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
	top: 20%;
	left: 20%;
	animation-delay: -1s;
}

.floating-icon:nth-child(2) {
	top: 60%;
	right: 20%;
	animation-delay: -2s;
}

.floating-icon:nth-child(3) {
	bottom: 20%;
	left: 30%;
	animation-delay: -3s;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

@keyframes floatAround {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}
	33% {
		transform: translateY(-15px) rotate(120deg);
	}
	66% {
		transform: translateY(10px) rotate(240deg);
	}
}

@media (max-width: 768px) {
	.hero-section .container {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.hero-content h1 {
		font-size: 2.5rem;
	}

	.hero-buttons {
		justify-content: center;
	}
}

/* Page Header */
.page-header {
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--accent-color)
	);
	color: white;
	padding: 4rem 0;
	text-align: center;
}

.page-header h1 {
	color: white;
	font-size: 3rem;
	margin-bottom: 1rem;
}

.page-header p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.125rem;
}

/* Cards */
.courses-grid,
.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
}

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

.course-card,
.blog-card {
	background: var(--background-card);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	overflow: hidden;
	transition: var(--transition);
	border: 1px solid var(--border-light);
	display: block;
	text-decoration: none;
	color: inherit;
}

.course-card:hover,
.blog-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-xl);
	text-decoration: none;
	color: inherit;
}

.course-card h3,
.course-card p {
	color: inherit;
}

.course-card:hover h3 {
	color: var(--primary-color);
}

.course-image,
.blog-image {
	height: 200px;
	background: var(--background-light);
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid var(--border-light);
}

.course-image img,
.blog-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
	opacity: 1 !important;
}

.course-card:hover .course-image img,
.blog-card:hover .blog-image img {
	transform: scale(1.05);
}

.course-icon,
.blog-icon {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: rgba(255, 255, 255, 0.9);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	color: var(--primary-color);
	box-shadow: var(--shadow);
}

.course-content,
.blog-content {
	padding: 1.5rem;
}

.course-meta,
.blog-meta {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
}

.course-meta span,
.blog-meta span {
	background: var(--background-light);
	color: var(--text-secondary);
	padding: 0.25rem 0.75rem;
	border-radius: var(--radius);
	font-size: 0.875rem;
	font-weight: 500;
}

.read-more {
	color: var(--primary-color);
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	transition: var(--transition);
}
.section-cta {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 4rem;
}
.read-more:hover {
	gap: 0.5rem;
}

/* About Visual Section */
.about-visual-section {
	padding: 6rem 0;
}

.about-visual-content {
	margin-top: 4rem;
}

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

.about-text-content h3 {
	font-size: 2rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.about-text-content p {
	font-size: 1.125rem;
	line-height: 1.7;
	margin-bottom: 2rem;
}

.about-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-bottom: 2.5rem;
}

.about-stats .stat-item {
	text-align: center;
	padding: 1.5rem;
	background: var(--background-light);
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-light);
	transition: var(--transition);
}

.about-stats .stat-item:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary-color);
}

.about-stats .stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--primary-color);
	display: block;
	line-height: 1;
}

.about-stats .stat-label {
	font-size: 0.9rem;
	color: var(--text-secondary);
	font-weight: 600;
	margin-top: 0.5rem;
}

.about-image-gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 1rem;
	height: 400px;
}

.gallery-item {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
	border: 1px solid var(--border-light);
}

.gallery-item.main-image {
	grid-row: 1 / -1;
}

.gallery-item:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-xl);
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.gallery-item:hover img {
	transform: scale(1.05);
}

.gallery-item .image-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
	color: white;
	padding: 1.5rem 1rem 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
	font-size: 0.9rem;
}

.gallery-item .image-overlay i {
	font-size: 1.2rem;
}

@media (max-width: 768px) {
	.about-main-content {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.about-text-content {
		order: 2;
		text-align: center;
	}

	.about-image-gallery {
		order: 1;
		height: auto;
		grid-template-columns: 1fr;
		grid-template-rows: 200px 120px 120px;
		gap: 0.75rem;
	}

	.gallery-item {
		min-height: 120px;
	}

	.gallery-item.main-image {
		grid-row: 1;
		height: 200px;
	}

	.gallery-item img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}

	.about-stats {
		grid-template-columns: 1fr;
		gap: 1rem;
		text-align: center;
		justify-items: center;
		max-width: 300px;
		margin: 0 auto 2.5rem auto;
	}

	.about-text-content h3 {
		font-size: 1.75rem;
	}
}

/* About Page Styles */
.about-content-detailed {
	max-width: 800px;
	margin: 0 auto;
}

.content-block {
	margin-bottom: 3rem;
}

.content-block h2 {
	color: var(--text-primary);
	margin-bottom: 1.5rem;
}

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

.feature {
	text-align: center;
	padding: 1.5rem;
	border-radius: var(--radius-lg);
	background: var(--background-light);
	border: 1px solid var(--border-light);
}

.feature h3 {
	font-weight: 800;
}

.feature p {
	font-weight: 600;
}

.feature-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: var(--primary-color);
}

.feature-icon i {
	font-size: 2.5rem;
}

.approach-list {
	list-style: none;
	padding: 0;
}

.approach-list li {
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--border-light);
	position: relative;
	padding-left: 2rem;
}

.approach-list li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--success-color);
	font-weight: bold;
}

.approach-list li:last-child {
	border-bottom: none;
}

.cta-section {
	text-align: center;
	background: var(--background-light);
	padding: 3rem 2rem;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-light);
}

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

/* Contact Page Styles */
.contact-content {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 4rem;
	margin-bottom: 4rem;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.contact-icon {
	font-size: 1.5rem;
	margin-top: 0.25rem;
	color: var(--primary-color);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--background-light);
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-text h3 {
	margin-bottom: 0.5rem;
	font-size: 1.125rem;
}

.contact-text p {
	margin-bottom: 0;
}

.contact-form {
	background: var(--background-card);
	padding: 2rem;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	border: 1px solid var(--border-light);
}

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

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: var(--text-primary);
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	font-size: 1rem;
	transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.map-container {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
}

/* FAQ Styles */
.faq-accordion {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	margin-bottom: 1rem;
	overflow: hidden;
}

.faq-question {
	width: 100%;
	padding: 1.5rem;
	background: var(--background-card);
	border: none;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.125rem;
	font-weight: 500;
	transition: var(--transition);
}

.faq-question:hover {
	background: var(--background-light);
}

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

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

.faq-item.active .faq-icon {
	transform: rotate(45deg);
}

.faq-icon {
	transition: var(--transition);
	font-size: 1.25rem;
}

/* Modern Courses Page Styles */
.courses-hero-section {
	background: linear-gradient(
		135deg,
		var(--primary-color) 0%,
		var(--accent-color) 100%
	);
	padding: 4rem 0;
	color: white;
	text-align: center;
}

.courses-hero-content h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: white;
}

.courses-hero-content p {
	font-size: 1.25rem;
	color: rgba(255, 255, 255, 0.9);
	max-width: 600px;
	margin: 0 auto;
}

.courses-filter-section {
	background: var(--background-card);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	margin-bottom: 3rem;
	border: 1px solid var(--border-light);
	overflow: hidden;
}

.filter-header {
	background: var(--background-light);
	padding: 2rem 2rem 1rem;
	text-align: center;
	border-bottom: 1px solid var(--border-light);
}

.filter-header h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

.filter-header p {
	color: var(--text-secondary);
	margin-bottom: 0;
}

.advanced-search {
	padding: 2rem;
}

.search-container {
	margin-bottom: 2rem;
}

.search-input-wrapper {
	position: relative;
	max-width: 600px;
	margin: 0 auto;
}

.search-input-wrapper input {
	width: 100%;
	padding: 1rem 1rem 1rem 3rem;
	border: 2px solid var(--border-color);
	border-radius: var(--radius-lg);
	font-size: 1rem;
	transition: var(--transition);
	background: white;
}

.search-input-wrapper input:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-icon {
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-secondary);
	font-size: 1rem;
}

.clear-btn {
	position: absolute;
	right: 0.5rem;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: var(--text-secondary);
	cursor: pointer;
	padding: 0.5rem;
	border-radius: 50%;
	transition: var(--transition);
}

.clear-btn:hover {
	background: var(--background-light);
	color: var(--primary-color);
}

.filters-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.filter-group {
	display: flex;
	flex-direction: column;
}

.filter-group label {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 0.5rem;
}

.select-wrapper {
	position: relative;
}

.select-wrapper select {
	width: 100%;
	padding: 0.75rem 2.5rem 0.75rem 0.75rem;
	border: 2px solid var(--border-color);
	border-radius: var(--radius);
	background: white;
	font-size: 0.9rem;
	appearance: none;
	cursor: pointer;
	transition: var(--transition);
}

.select-wrapper select:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.select-arrow {
	position: absolute;
	right: 0.75rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-secondary);
	font-size: 0.875rem;
	pointer-events: none;
}

.filter-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 1.5rem;
	border-top: 1px solid var(--border-light);
}

.results-count {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

.results-count span {
	font-weight: 600;
	color: var(--primary-color);
}

/* Modern Course Grid */
.modern-courses-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.modern-course-card {
	background: var(--background-card);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	border: 1px solid var(--border-light);
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}

.modern-course-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
	border-color: var(--primary-color);
}

.modern-course-image {
	height: 240px;
	position: relative;
	overflow: hidden;
}

.modern-course-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
	opacity: 1 !important;
}

.modern-course-card:hover .modern-course-image img {
	transform: scale(1.1);
}

.course-image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		45deg,
		rgba(37, 99, 235, 0.8),
		rgba(14, 165, 233, 0.8)
	);
	opacity: 0;
	transition: var(--transition);
	display: flex;
	align-items: center;
	justify-content: center;
}

.modern-course-card:hover .course-image-overlay {
	opacity: 1 !important;
}

.course-icon-large {
	font-size: 3rem;
	color: white;
	animation: float 3s ease-in-out infinite;
}

.course-level-badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: rgba(255, 255, 255, 0.95);
	color: var(--text-primary);
	padding: 0.25rem 0.75rem;
	border-radius: var(--radius);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.course-rating-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: rgba(255, 255, 255, 0.95);
	color: var(--primary-color);
	padding: 0.25rem 0.5rem;
	border-radius: var(--radius);
	font-size: 0.75rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.modern-course-content {
	padding: 1.5rem;
}

.course-category {
	color: var(--primary-color);
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.5rem;
}

.course-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.75rem;
	line-height: 1.3;
}

.course-description {
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.5;
	margin-bottom: 1rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.course-meta-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.meta-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: var(--text-secondary);
}

.meta-item i {
	color: var(--primary-color);
	width: 16px;
}

.course-price-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
}

.course-price {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-color);
}

.course-instructor {
	font-size: 0.875rem;
	color: var(--text-secondary);
}

.course-instructor i {
	color: var(--primary-color);
	margin-right: 0.25rem;
}

.course-actions {
	display: flex;
	gap: 0.75rem;
}

.btn-view-details {
	flex: 1;
	background: var(--primary-color);
	color: white;
	border: 2px solid var(--primary-color);
	padding: 0.75rem 1rem;
	border-radius: var(--radius);
	font-weight: 600;
	transition: var(--transition);
	cursor: pointer;
	text-align: center;
}

.btn-view-details:hover {
	background: var(--primary-hover);
	border-color: var(--primary-hover);
	transform: translateY(-2px);
}

/* No Results Modern */
.no-results-modern {
	text-align: center;
	padding: 4rem 2rem;
}

.no-results-content {
	max-width: 400px;
	margin: 0 auto;
}

.no-results-icon {
	font-size: 4rem;
	color: var(--text-muted);
	margin-bottom: 1.5rem;
}

.no-results-content h3 {
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.no-results-content p {
	color: var(--text-secondary);
	margin-bottom: 2rem;
}

/* Modern Modal Styles */
.modern-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2000;
	animation: modalFadeIn 0.3s ease-out;
}

.modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(8px);
}

.modern-modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-xl);
	max-width: 1200px;
	width: 95%;
	max-height: 90vh;
	overflow: hidden;
	animation: modalSlideIn 0.3s ease-out;
}

.modern-modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: rgba(255, 255, 255, 0.9);
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: var(--transition);
	box-shadow: var(--shadow);
}

.modern-modal-close:hover {
	background: white;
	transform: scale(1.1);
}

.modal-layout {
	display: grid;
	grid-template-columns: 1fr 400px;
	min-height: 600px;
}

.modal-left-content {
	padding: 2rem;
	overflow-y: auto;
	max-height: 90vh;
}

.modal-right-content {
	background: var(--background-light);
	border-left: 1px solid var(--border-light);
	padding: 2rem;
	display: flex;
	flex-direction: column;
}

.course-header {
	margin-bottom: 2rem;
}

.course-category-badge {
	display: inline-block;
	background: var(--primary-color);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: var(--radius);
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 1rem;
}

.course-modal-title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1rem;
	line-height: 1.2;
}

.course-instructor-info {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--text-secondary);
	font-size: 1rem;
}

.course-instructor-info i {
	color: var(--primary-color);
}

.course-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 1rem;
	margin-bottom: 2rem;
	padding: 1.5rem;
	background: var(--background-light);
	border-radius: var(--radius);
}

.stat-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	color: var(--text-secondary);
}

.stat-item i {
	color: var(--primary-color);
	width: 16px;
}

.course-description,
.course-curriculum,
.course-requirements {
	margin-bottom: 2rem;
}

.course-description h3,
.course-curriculum h3,
.course-requirements h3 {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.25rem;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.course-description h3 i,
.course-curriculum h3 i,
.course-requirements h3 i {
	color: var(--primary-color);
	font-size: 1.1rem;
}

.course-description p {
	color: var(--text-secondary);
	line-height: 1.6;
	font-size: 1rem;
}

.course-curriculum ul,
.course-requirements ul {
	list-style: none;
	padding: 0;
}

.course-curriculum li,
.course-requirements li {
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--border-light);
	position: relative;
	padding-left: 2rem;
	color: var(--text-secondary);
}

.course-curriculum li:before,
.course-requirements li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--success-color);
	font-weight: bold;
	font-size: 1.1rem;
}

.course-curriculum li:last-child,
.course-requirements li:last-child {
	border-bottom: none;
}

.course-price-section {
	background: var(--background-light);
	padding: 1.5rem;
	border-radius: var(--radius);
	text-align: center;
	margin-bottom: 7rem;
}

.price-display {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

.price-label {
	font-size: 0.875rem;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 600;
}

.price-amount {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary-color);
}

.course-image-container {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin-bottom: 2rem;
	height: 250px;
}

.course-modal-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.course-overlay-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(255, 255, 255, 0.9);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--primary-color);
	box-shadow: var(--shadow);
}

.course-highlights {
	flex: 1;
}

.course-highlights h4 {
	color: var(--text-primary);
	margin-bottom: 1rem;
	font-size: 1.125rem;
}

.highlights-list {
	list-style: none;
	padding: 0;
}

.highlights-list li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 0;
	color: var(--text-secondary);
	font-size: 0.9rem;
	border-bottom: 1px solid var(--border-light);
}

.highlights-list li:last-child {
	border-bottom: none;
}

.highlights-list i {
	color: var(--success-color);
	width: 16px;
	font-size: 0.9rem;
}

.modal-footer-actions {
	position: sticky;
	bottom: 0;
	display: flex;
	gap: 1rem;
	padding: 1.5rem 2rem;
	background: var(--background-card);
	border-top: 1px solid var(--border-light);
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	z-index: 10;
}

.modal-inquiry-btn,
.modal-cancel-btn {
	flex: 1;
	padding: 1rem 2rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: var(--radius);
	transition: var(--transition);
	text-decoration: none;
	border: 2px solid transparent;
	cursor: pointer;
	font-size: 1rem;
	min-height: 50px;
}

.modal-inquiry-btn {
	background: var(--primary-color);
	color: white;
	border-color: var(--primary-color);
}

.modal-inquiry-btn:hover {
	background: var(--primary-hover);
	border-color: var(--primary-hover);
	color: white;
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.modal-cancel-btn {
	background: transparent;
	color: var(--text-secondary);
	border-color: var(--border-color);
}

.modal-cancel-btn:hover {
	background: var(--background-light);
	color: var(--text-primary);
	border-color: var(--text-secondary);
}

@keyframes modalFadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1 !important;
	}
}

@keyframes modalSlideIn {
	from {
		opacity: 0;
		transform: translate(-50%, -60%);
	}
	to {
		opacity: 1 !important;
		transform: translate(-50%, -50%);
	}
}

/* Legacy Modal Styles (for compatibility) */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 2000;
	backdrop-filter: blur(5px);
}

.modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-xl);
	max-width: 600px;
	width: 90%;
	max-height: 80vh;
	overflow-y: auto;
}

.modal-header {
	padding: 1.5rem;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.modal-header h2 {
	margin: 0;
}

.modal-close {
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--text-secondary);
	padding: 0.25rem;
}

.modal-body {
	padding: 1.5rem;
}

.modal-footer {
	padding: 1.5rem;
	border-top: 1px solid var(--border-color);
	display: flex;
	gap: 1rem;
	justify-content: flex-end;
}

/* Cookie Popup */
#cookie-popup {
	display: none;
	position: fixed;
	bottom: 2rem;
	left: 2rem;
	right: 2rem;
	background: white;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-xl);
	z-index: 1500;
	max-width: 500px;
}

.cookie-popup-content {
	padding: 1.5rem;
}

.cookie-text h3 {
	margin-bottom: 0.75rem;
	font-size: 1.125rem;
}

.cookie-text p {
	margin-bottom: 1.5rem;
	font-size: 0.9rem;
}

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

/* Footer */
footer {
	background: var(--text-primary);
	color: white;
	margin-top: auto;
}

.footer-content {
	padding: 3rem 0 1rem;
}

.footer-main {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 3rem;
	margin-bottom: 2rem;
}

.footer-brand h3 {
	color: white;
	margin-bottom: 1rem;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.footer-logo img {
	height: 32px;
	filter: brightness(0) invert(1);
}

.footer-brand p {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 1.5rem;
}

.contact-info p {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
}

.contact-info .icon {
	font-size: 1rem;
}

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

.footer-column h4 {
	color: white;
	margin-bottom: 1rem;
	font-size: 1.125rem;
}

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

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

.footer-column a {
	color: rgba(255, 255, 255, 0.8);
	transition: var(--transition);
}
.footer-column p {
	color: rgba(255, 255, 255, 0.8);
	transition: var(--transition);
}

.footer-column a:hover {
	color: white;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 1rem;
	text-align: center;
}

.footer-copyright p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.875rem;
	margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.hero-content h1 {
		font-size: 3rem;
	}
	.page-header h1 {
		font-size: 2.5rem;
	}

	/* Tablet courses layout */
	.modern-courses-grid {
		grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	}

	/* Tablet modal adjustments */
	.modern-modal-content {
		width: 90%;
		max-height: 85vh;
	}

	.modal-layout {
		grid-template-columns: 1fr;
	}

	.modal-right-content {
		border-left: none;
		border-bottom: 1px solid var(--border-light);
		order: -1;
		padding: 1.5rem;
	}

	.course-image-container {
		height: 220px;
	}
}

@media (max-width: 768px) and (min-width: 481px) {
	/* Tablet portrait specific styles */
	.modern-modal-content {
		width: 95%;
		max-height: 90vh;
	}

	.modal-footer-actions {
		position: sticky;
		bottom: 0;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 0 1rem;
	}
	.section {
		padding: 2rem 0;
	}
	.hero-section {
		padding: 4rem 0;
	}
	.page-header {
		padding: 3rem 0;
	}

	.hero-content h1 {
		font-size: 2.5rem;
	}
	.page-header h1 {
		font-size: 2rem;
	}

	.contact-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

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

	.footer-brand {
		width: 100%;
	}

	.footer-logo {
		justify-content: center;
		width: 100%;
	}

	.footer-links {
		grid-template-columns: 1fr;
		text-align: center;
		width: 100%;
	}

	.footer-column {
		width: 100%;
	}

	.footer-column ul {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
	}

	.contact-info {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
	}

	/* Legal pages (Privacy, Terms, Cookies) mobile centering */
	.page-header {
		text-align: center;
	}

	.page-header h1,
	.page-header p {
		text-align: center;
		width: 100%;
	}

	.section {
		text-align: center;
	}

	.section h2,
	.section h3,
	.section h4,
	.section p,
	.section ul,
	.section ol {
		text-align: center;
		width: 100%;
	}

	.section ul,
	.section ol {
		display: flex;
		flex-direction: column;
		align-items: center;
		list-style-position: inside;
	}

	.section li {
		text-align: center;
		width: 100%;
		margin-bottom: 0.5rem;
	}

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

	.btn {
		width: 100%;
		max-width: 280px;
	}

	.filters {
		flex-direction: column;
	}

	.filters select {
		min-width: 100%;
	}

	#cookie-popup {
		left: 1rem;
		right: 1rem;
		bottom: 1rem;
	}

	/* About Us page mobile centering */
	.about-content-detailed {
		text-align: center;
	}

	.about-content-detailed .content-block {
		text-align: center;
	}

	.about-content-detailed .content-block h2 {
		text-align: center;
	}

	.about-content-detailed .content-block p {
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}

	.features-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.feature {
		text-align: center;
	}

	.approach-list {
		text-align: left;
		max-width: 100%;
		margin: 0 auto;
	}

	.approach-list li {
		text-align: left;
	}

	.cta-section {
		text-align: center;
	}

	.cta-section h2,
	.cta-section p {
		text-align: center;
	}
}

@media (max-width: 480px) {
	.hero-content h1 {
		font-size: 2rem;
	}
	.page-header h1 {
		font-size: 1.75rem;
	}

	.courses-grid,
	.blog-grid,
	.blog-posts-grid {
		grid-template-columns: 1fr;
	}

	.modal-content {
		width: 95%;
		margin: 1rem;
	}

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

	/* Courses page mobile styles */
	.courses-hero-content h2 {
		font-size: 2rem;
	}

	.courses-hero-content p {
		font-size: 1rem;
	}

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

	.filter-group {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}

	.filter-group label {
		min-width: auto;
		font-size: 0.875rem;
	}

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

	.modern-course-card {
		max-width: 100%;
	}

	.filter-actions {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}

	/* Modern modal mobile */
	.modern-modal {
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		width: 100% !important;
		height: 100% !important;
		z-index: 2000 !important;
	}

	.modern-modal-content {
		width: 100% !important;
		height: 100vh !important;
		max-height: 100vh !important;
		border-radius: 0 !important;
		top: 0 !important;
		left: 0 !important;
		transform: none !important;
		position: fixed !important;
		overflow: hidden !important;
		display: flex !important;
		flex-direction: column !important;
	}

	.modal-layout {
		grid-template-columns: 1fr !important;
		min-height: auto !important;
		flex: 1 !important;
		overflow: hidden !important;
		display: flex !important;
		flex-direction: column !important;
		height: calc(100vh - 80px) !important; /* Account for footer */
	}

	.modal-right-content {
		border-left: none !important;
		border-bottom: 1px solid var(--border-light) !important;
		order: -1 !important;
		flex-shrink: 0 !important;
		padding: 1rem !important;
		background: var(--background-light) !important;
	}

	.modal-left-content {
		flex: 1 !important;
		overflow-y: auto !important;
		padding: 1rem !important;
		padding-bottom: 100px !important; /* Space for footer buttons */
		-webkit-overflow-scrolling: touch !important;
	}

	.course-image-container {
		height: 180px;
		margin-bottom: 1rem;
	}

	.course-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.5rem;
		padding: 1rem;
		margin-bottom: 1rem;
	}

	.course-highlights {
		display: none; /* Hide on mobile to save space */
	}

	.modal-footer-actions {
		position: fixed !important;
		bottom: 0 !important;
		left: 0 !important;
		right: 0 !important;
		margin: 0 !important;
		border-radius: 0 !important;
		padding: 1rem !important;
		gap: 0.75rem !important;
		box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15) !important;
		background: var(--background-card) !important;
		z-index: 2001 !important;
		height: 80px !important;
		display: flex !important;
		align-items: center !important;
	}

	.modal-inquiry-btn,
	.modal-cancel-btn {
		min-height: 48px;
		font-size: 1rem;
		padding: 0.75rem 1rem;
	}

	.modern-modal-close {
		top: 0.75rem;
		right: 0.75rem;
		background: rgba(255, 255, 255, 0.95);
		backdrop-filter: blur(10px);
		z-index: 20;
	}

	.course-header {
		margin-bottom: 1rem;
	}

	.course-modal-title {
		font-size: 1.5rem;
		line-height: 1.3;
	}

	.course-category-badge {
		font-size: 0.75rem;
		padding: 0.4rem 0.8rem;
	}

	.course-description h3,
	.course-curriculum h3,
	.course-requirements h3 {
		font-size: 1.1rem;
		margin-bottom: 0.75rem;
	}

	.course-description p {
		font-size: 0.9rem;
		line-height: 1.5;
	}

	.price-display {
		padding: 1rem;
	}

	.price-amount {
		font-size: 2rem;
	}
}

/* ========================================
   MODERN CONTACT PAGE STYLES
   ======================================== */

/* Contact Hero Section */
.contact-hero-section {
	position: relative;
	padding: 8rem 0 6rem;
	min-height: 80vh;
	display: flex;
	align-items: center;
	color: white;
	overflow: hidden;
}

.contact-hero-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(37, 99, 235, 0.8) 0%,
		rgba(14, 165, 233, 0.8) 100%
	);
	z-index: 1;
}

.contact-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	margin-bottom: 2rem;
	font-size: 0.9rem;
	font-weight: 500;
	color: white !important;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-hero-title {
	font-size: 4rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	color: white !important;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.contact-hero-subtitle {
	font-size: 1.25rem;
	margin-bottom: 3rem;
	color: white !important;
	opacity: 0.95;
	line-height: 1.6;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.contact-hero-stats {
	display: flex;
	justify-content: center;
	gap: 3rem;
	margin-bottom: 3rem;
}

.contact-hero-stats .stat-item {
	text-align: center;
}

.contact-hero-stats .stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	display: block;
	line-height: 1;
	color: white !important;
	text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.contact-hero-stats .stat-label {
	font-size: 0.9rem;
	opacity: 0.9;
	margin-top: 0.5rem;
	color: white !important;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

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

.btn-outline-white {
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.8);
	color: white;
}

.btn-outline-white:hover {
	background: white;
	color: var(--primary-color);
	transform: translateY(-2px);
}

/* Contact Information Cards */
.contact-info-section {
	padding: 6rem 0;
}

.section-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--background-light);
	padding: 0.5rem 1rem;
	border-radius: 25px;
	border: 1px solid var(--border-light);
	color: var(--primary-color);
	font-size: 0.85rem;
	font-weight: 500;
	margin-bottom: 1rem;
}

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

.contact-card {
	background: var(--background-card);
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-light);
	overflow: hidden;
	transition: var(--transition);
	position: relative;
}

.contact-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
	border-color: var(--primary-color);
}

.contact-card-header {
	padding: 2rem 2rem 1rem;
	text-align: center;
	position: relative;
}

.contact-card-icon {
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--accent-color)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	color: white;
	font-size: 1.5rem;
	box-shadow: var(--shadow);
}

.contact-card-header h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0;
}

.contact-card-body {
	padding: 0 2rem 1rem;
	text-align: center;
}

.contact-description {
	color: var(--text-secondary);
	margin-bottom: 1rem;
	font-size: 0.95rem;
}

.contact-detail {
	margin-bottom: 1rem;
}

.contact-detail a {
	color: var(--primary-color);
	font-weight: 600;
	font-size: 1.1rem;
}

.contact-card-features {
	display: flex;
	gap: 0.75rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}

.feature-tag {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	background: var(--background-light);
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.8rem;
	color: var(--text-secondary);
}

.contact-card-footer {
	padding: 1rem 2rem 2rem;
	text-align: center;
}

/* Email Card Specific */
.email-card:hover .contact-card-icon {
	background: linear-gradient(135deg, #10b981, #059669);
}

/* Phone Card Specific */
.phone-card:hover .contact-card-icon {
	background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Location Card Specific */
.location-card:hover .contact-card-icon {
	background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

/* Office Hours Section */
.office-hours-section {
	margin-top: 4rem;
}

.office-hours-card {
	background: var(--background-card);
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-light);
	padding: 3rem;
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.office-hours-header {
	margin-bottom: 2rem;
}

.office-hours-icon {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: var(--primary-color);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-size: 1.25rem;
}

.office-hours-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.hours-item {
	display: flex;
	justify-content: space-between;
	padding: 1rem;
	background: var(--background-light);
	border-radius: var(--radius);
}

.day {
	font-weight: 600;
}

.time {
	color: var(--text-secondary);
}

.timezone-info {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	color: var(--text-muted);
	font-size: 0.9rem;
}

/* Contact Form Section */
.contact-form-section {
	padding: 6rem 0;
	background: var(--background-light);
}

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

.form-info-side {
	position: sticky;
	top: 2rem;
}

.form-info-content h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
}

.form-benefits {
	margin: 2rem 0;
}

.benefit-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
	color: var(--text-secondary);
}

.benefit-item i {
	color: var(--success-color);
	font-size: 1rem;
}

.contact-testimonial {
	background: var(--background-card);
	border-radius: var(--radius-lg);
	padding: 2rem;
	margin-top: 2rem;
	border: 1px solid var(--border-light);
}

.testimonial-quote {
	color: var(--primary-color);
	font-size: 2rem;
	margin-bottom: 1rem;
}

.testimonial-content p {
	font-style: italic;
	color: var(--text-primary);
	margin-bottom: 1.5rem;
	font-size: 1rem;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.author-avatar {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: var(--primary-color);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
}

.author-info strong {
	display: block;
	color: var(--text-primary);
}

.author-info span {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

/* Modern Contact Form */
.modern-contact-form-container {
	background: var(--background-card);
	border-radius: var(--radius-lg);
	padding: 3rem;
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--border-light);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

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

.form-group.full-width {
	grid-column: 1 / -1;
}

.form-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

.form-label i {
	color: var(--primary-color);
	font-size: 0.9rem;
}

.form-input,
.form-textarea,
.form-select {
	width: 100%;
	padding: 1rem 1.25rem;
	border: 2px solid var(--border-color);
	border-radius: var(--radius);
	font-size: 1rem;
	transition: var(--transition);
	background: var(--background);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.character-count {
	text-align: right;
	font-size: 0.8rem;
	color: var(--text-muted);
	margin-top: 0.5rem;
}

.checkbox-group {
	margin-bottom: 2rem;
}

.checkbox-label {
	display: flex !important;
	align-items: flex-start;
	justify-content: center;
	align-items: start;
	gap: 0.75rem;
	cursor: pointer;
}

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

.checkmark {
	width: 1.25rem;
	height: 1.25rem;
	border: 2px solid var(--border-color);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 0.125rem;
	transition: var(--transition);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
	background: var(--primary-color);
	border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
	content: "\f00c";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: white;
	font-size: 0.75rem;
}

.checkbox-text {
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.4;
}

.form-actions {
	text-align: center;
}

.form-submit-btn {
	min-width: 200px;
	position: relative;
}

.form-privacy-note {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1rem;
	font-size: 0.8rem;
	color: var(--text-muted);
}

.form-privacy-note i {
	color: var(--success-color);
}

/* Map Section */
.map-section {
	padding: 6rem 0;
}

.map-layout {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 3rem;
	margin-top: 3rem;
}

.map-info-card {
	background: var(--background-card);
	border-radius: var(--radius-lg);
	padding: 2.5rem;
	border: 1px solid var(--border-light);
	height: fit-content;
}

.location-header {
	margin-bottom: 2rem;
	text-align: center;
}

.location-header h3 {
	font-size: 1.75rem;
	margin-bottom: 0.5rem;
}

.location-subtitle {
	color: var(--text-secondary);
}

.location-details {
	margin-bottom: 2rem;
}

.location-item {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
	padding: 1.5rem;
	background: var(--background-light);
	border-radius: var(--radius);
}

.location-icon {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: var(--primary-color);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.location-content h4 {
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}

.location-content p {
	color: var(--text-secondary);
	margin: 0;
	line-height: 1.5;
}

.location-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
}

.map-container-modern {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.map-wrapper {
	position: relative;
}

.map-wrapper iframe {
	width: 100%;
	display: block;
}

.map-overlay {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: var(--background-card);
	padding: 0.75rem;
	border-radius: 50%;
	box-shadow: var(--shadow);
	border: 1px solid var(--border-light);
}

.map-pin {
	color: var(--primary-color);
	font-size: 1.25rem;
}

/* FAQ Section */
.faq-section {
	padding: 6rem 0;
}

.faq-layout {
	display: grid;
	grid-template-columns: 250px 1fr;
	gap: 3rem;
	margin-top: 3rem;
}

.faq-categories {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	position: sticky;
	top: 2rem;
	height: fit-content;
}

.faq-category {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 1.25rem;
	border-radius: var(--radius);
	border: 1px solid var(--border-light);
	background: var(--background-card);
	cursor: pointer;
	transition: var(--transition);
	font-weight: 500;
}

.faq-category:hover {
	border-color: var(--primary-color);
	transform: translateX(4px);
}

.faq-category.active {
	background: var(--primary-color);
	color: white;
	border-color: var(--primary-color);
}

.faq-content {
	background: var(--background-card);
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-light);
	overflow: hidden;
}

.modern-faq-item {
	border-bottom: 1px solid var(--border-light);
}

.modern-faq-item:last-child {
	border-bottom: none;
}

.modern-faq-question {
	width: 100%;
	background: none;
	border: none;
	padding: 2rem;
	text-align: left;
	cursor: pointer;
	transition: var(--transition);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.modern-faq-question:hover {
	background: var(--background-light);
}

.faq-question-content {
	display: flex;
	gap: 1rem;
	align-items: center;
	flex: 1;
}

.faq-icon-wrapper {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: var(--primary-color);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.faq-text h3 {
	font-size: 1.25rem;
	margin: 0 0 0.25rem;
}

.faq-preview {
	font-size: 0.9rem;
	color: var(--text-secondary);
	margin: 0;
}

.faq-toggle-icon {
	color: var(--text-secondary);
	transition: var(--transition);
}

.modern-faq-item.active .faq-toggle-icon {
	transform: rotate(180deg);
	color: var(--primary-color);
}

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

.modern-faq-item.active .modern-faq-answer {
	max-height: 1000px;
}

.faq-answer-content {
	padding: 0 2rem 2rem;
	padding-top: 0;
}

.faq-highlights,
.hours-grid,
.course-categories,
.enrollment-steps,
.payment-options,
.support-features,
.refund-timeline {
	margin-top: 1.5rem;
}

.highlight-item,
.hour-item,
.category-item,
.payment-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
	padding: 0.75rem;
	background: var(--background-light);
	border-radius: var(--radius);
}

.step-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
	padding: 1rem;
	background: var(--background-light);
	border-radius: var(--radius);
}

.step-number {
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: var(--primary-color);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 0.9rem;
}

.feature-item {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
	padding: 1rem;
	background: var(--background-light);
	border-radius: var(--radius);
}

.feature-content {
	flex: 1;
}

.feature-content strong {
	display: block;
	margin-bottom: 0.25rem;
}

.feature-content span {
	color: var(--text-secondary);
	font-size: 0.9rem;
}

.timeline-item {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
	padding: 1rem;
	background: var(--background-light);
	border-radius: var(--radius);
}

.timeline-dot {
	width: 1rem;
	height: 1rem;
	border-radius: 50%;
	flex-shrink: 0;
	margin-top: 0.25rem;
}

.timeline-dot.success {
	background: var(--success-color);
}

.timeline-dot.warning {
	background: var(--warning-color);
}

.timeline-dot.info {
	background: var(--accent-color);
}

.faq-footer {
	background: var(--background-light);
	padding: 3rem;
	text-align: center;
	border-top: 1px solid var(--border-light);
}

.faq-footer-content h3 {
	margin-bottom: 0.5rem;
}

.faq-footer-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	margin-top: 2rem;
}

/* Trust Section */
.trust-section {
	padding: 6rem 0;
	background: var(--background-light);
}

.trust-header {
	margin-bottom: 4rem;
}

.trust-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin-bottom: 4rem;
}

.trust-stat {
	background: var(--background-card);
	padding: 2.5rem 1.5rem;
	border-radius: var(--radius-lg);
	text-align: center;
	border: 1px solid var(--border-light);
	transition: var(--transition);
}

.trust-stat:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.stat-icon {
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--accent-color)
	);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 1.5rem;
}

.stat-content .stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--primary-color);
	display: block;
	line-height: 1;
}

.stat-content .stat-label {
	color: var(--text-secondary);
	font-weight: 500;
	margin-top: 0.5rem;
}

.social-proof {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
}

.social-links,
.certifications {
	background: var(--background-card);
	padding: 2.5rem;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-light);
	text-align: center;
}

.social-icons {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 1.5rem;
}

.social-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1rem;
	border-radius: var(--radius);
	background: var(--background-light);
	transition: var(--transition);
	text-decoration: none;
	color: var(--text-primary);
	font-weight: 500;
}

.social-link:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}

.social-link.linkedin:hover {
	background: #0077b5;
	color: white;
}

.social-link.twitter:hover {
	background: #1da1f2;
	color: white;
}

.social-link.youtube:hover {
	background: #ff0000;
	color: white;
}

.social-link.github:hover {
	background: #333;
	color: white;
}

.cert-badges {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 1.5rem;
	flex-wrap: wrap;
}

.cert-badge {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1rem;
	background: var(--background-light);
	border-radius: var(--radius);
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-secondary);
	border: 1px solid var(--border-color);
}

.cert-badge i {
	color: var(--success-color);
}

/* Mobile Responsive Design for Contact Page */
@media (max-width: 768px) {
	/* Contact Hero */
	.contact-hero-section {
		padding: 4rem 0 3rem;
		min-height: 60vh;
		text-align: center;
	}

	.contact-hero-title {
		font-size: 2.5rem;
	}

	.contact-hero-subtitle {
		font-size: 1.1rem;
	}

	.contact-hero-stats {
		flex-direction: column;
		gap: 1.5rem;
	}

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

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

	/* Contact Cards */
	.contact-cards-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.office-hours-card {
		padding: 2rem;
	}

	/* Contact Form */
	.contact-form-layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.form-info-side {
		position: static;
		order: 2;
	}

	.form-row {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.modern-contact-form-container {
		padding: 2rem;
	}

	/* Map Layout */
	.map-layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.map-info-card {
		padding: 2rem;
	}

	.location-actions {
		flex-direction: column;
	}

	/* FAQ Layout */
	.faq-layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.faq-categories {
		flex-direction: row;
		overflow-x: auto;
		position: static;
		padding-bottom: 1rem;
		gap: 1rem;
	}

	.faq-category {
		white-space: nowrap;
		flex-shrink: 0;
	}

	.modern-faq-question {
		padding: 1.5rem;
	}

	.faq-question-content {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}

	.faq-icon-wrapper {
		width: 2rem;
		height: 2rem;
	}

	.faq-text h3 {
		font-size: 1.1rem;
	}

	.faq-answer-content {
		padding: 0 1.5rem 1.5rem;
	}

	.faq-footer {
		padding: 2rem;
	}

	.faq-footer-actions {
		flex-direction: column;
		align-items: center;
	}

	/* Trust Section */
	.trust-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}

	.trust-stat {
		padding: 2rem 1rem;
	}

	.social-proof {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.social-links,
	.certifications {
		padding: 2rem;
	}

	.social-icons {
		flex-wrap: wrap;
	}

	.cert-badges {
		justify-content: center;
	}
}

/* ========================================
   PREMIUM BLOG STYLES & ANIMATIONS
   ======================================== */

/* Blog Hero Section */
.blog-hero-section {
	position: relative;
	padding: 8rem 0 6rem;
	min-height: 70vh;
	display: flex;
	align-items: center;
	color: white;
	overflow: hidden;
}

.blog-hero-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(37, 99, 235, 0.8) 0%,
		rgba(14, 165, 233, 0.8) 100%
	);
	z-index: 1;
}

.blog-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.blog-hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	color: white !important;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.blog-hero-subtitle {
	font-size: 1.2rem;
	margin-bottom: 3rem;
	color: white !important;
	opacity: 0.95;
	line-height: 1.6;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.blog-stats {
	display: flex;
	justify-content: center;
	gap: 3rem;
	margin-top: 2rem;
}

.blog-stats .stat-item {
	text-align: center;
}

.blog-stats .stat-number {
	font-size: 2rem;
	font-weight: 800;
	display: block;
	line-height: 1;
	color: white !important;
	text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.blog-stats .stat-label {
	font-size: 0.9rem;
	opacity: 0.9;
	margin-top: 0.5rem;
	color: white !important;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Premium Blog Section */
.premium-blog-section {
	padding: 6rem 0;
}

.blog-section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.blog-section-header h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.blog-section-header p {
	font-size: 1.1rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

/* Premium Blog Grid */
.premium-blog-grid,
.premium-blog-posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

/* Premium Blog Cards */
.premium-blog-card {
	background: var(--background-card);
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--border-light);
	transition: var(--transition);
	position: relative;
	height: 420px;
	display: flex;
	flex-direction: column;
}

.premium-blog-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
	border-color: var(--primary-color);
}

.premium-blog-card:hover .premium-blog-image img {
	transform: scale(1.05);
}

.premium-blog-card:hover .blog-overlay {
	opacity: 1 !important;
}

/* Premium Blog Image */
.premium-blog-image {
	position: relative;
	height: 200px;
	overflow: hidden;
}

.premium-blog-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.blog-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		45deg,
		rgba(37, 99, 235, 0.8),
		rgba(14, 165, 233, 0.8)
	);
	opacity: 0;
	transition: var(--transition);
	display: flex;
	align-items: center;
	justify-content: center;
}

.blog-overlay .blog-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.read-time-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: rgba(0, 0, 0, 0.8);
	color: white;
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 500;
	backdrop-filter: blur(10px);
}

/* Premium Blog Content */
.premium-blog-content {
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.blog-category-badge {
	display: inline-block;
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--accent-color)
	);
	color: white;
	padding: 0.3rem 0.8rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	width: fit-content;
}

/* Title with ellipsis */
.blog-title-ellipsis {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0;
	color: var(--text-primary);

	/* Single line ellipsis */
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.premium-blog-card:hover .blog-title-ellipsis {
	color: var(--primary-color);
}

/* Excerpt with 3-line ellipsis */
.blog-excerpt-ellipsis {
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.5;
	margin: 0;
	flex: 1;

	/* 3-line ellipsis */
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Premium Blog Footer */
.premium-blog-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid var(--border-light);
}

.blog-date {
	color: var(--text-muted);
	font-size: 0.85rem;
	font-weight: 500;
}

.premium-read-more {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--primary-color);
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
	padding: 0.5rem 1rem;
	border-radius: 25px;
	background: var(--background-light);
	transition: var(--transition);
	border: 1px solid transparent;
}

.premium-read-more:hover {
	background: var(--primary-color);
	color: white;
	transform: translateX(4px);
	border-color: var(--primary-color);
}

.premium-read-more i {
	transition: transform 0.3s ease;
}

.premium-read-more:hover i {
	transform: translateX(4px);
}

/* Global Animation Classes */
.animate-on-scroll {
	opacity: 1;
	transform: translateY(20px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
	opacity: 1 !important;
	transform: translateY(0);
}

/* Enhanced animations for different elements */
.animate-fade-up {
	opacity: 1;
	transform: translateY(30px);
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-up.animated {
	opacity: 1 !important;
	transform: translateY(0);
}

.animate-fade-in {
	opacity: 0;
	transition: opacity 0.6s ease;
}

.animate-fade-in.animated {
	opacity: 1 !important;
}

.animate-slide-left {
	opacity: 0;
	transform: translateX(-30px);
	transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-left.animated {
	opacity: 1 !important;
	transform: translateX(0);
}

.animate-slide-right {
	opacity: 0;
	transform: translateX(30px);
	transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-right.animated {
	opacity: 1 !important;
	transform: translateX(0);
}

.animate-scale-up {
	opacity: 0;
	transform: scale(0.9);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-scale-up.animated {
	opacity: 1 !important;
	transform: scale(1);
}

/* Force all images to be visible */
.course-card img,
.premium-blog-card img,
.blog-card img,
.modern-course-card img,
img {
	opacity: 1 !important;
}

/* Premium Blog Detail Page Styles */
.blog-post-detail {
	padding: 0rem 0;
	background: var(--background);
}

/* Featured Image Styles */
.post-featured-image {
	position: relative;
	margin: 3rem 0 4rem;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-xl);
	background: var(--background-light);
}

.featured-img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	transition: transform 0.3s ease;
	display: block;
}

.post-featured-image:hover .featured-img {
	transform: scale(1.02);
}

.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		45deg,
		rgba(37, 99, 235, 0.7),
		rgba(14, 165, 233, 0.7)
	);
	opacity: 0;
	transition: var(--transition);
	display: flex;
	align-items: center;
	justify-content: center;
}

.post-featured-image:hover .image-overlay {
	opacity: 1 !important;
}

.image-icon {
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(15px);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 2rem;
	border: 3px solid rgba(255, 255, 255, 0.3);
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

.post-featured-image:hover .image-icon {
	transform: scale(1);
}

.post-header {
	text-align: center;
	margin-bottom: 4rem;
	padding-bottom: 3rem;
	border-bottom: 2px solid var(--border-light);
	background: var(--background-card);
	border-radius: var(--radius-lg);
	padding: 3rem;
	box-shadow: var(--shadow);
}

.post-meta {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.post-meta span {
	background: var(--background-light);
	color: var(--text-secondary);
	padding: 0.5rem 1rem;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 500;
	border: 1px solid var(--border-light);
}

.post-header h1 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	line-height: 1.2;
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--accent-color)
	);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
}

.post-tags {
	display: flex;
	justify-content: center;
	gap: 0.75rem;
	flex-wrap: wrap;
	margin-top: 1.5rem;
}

.post-tags .tag {
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--accent-color)
	);
	color: white;
	padding: 0.4rem 1rem;
	border-radius: 25px;
	font-size: 0.85rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.post-content {
	max-width: 900px;
	margin: 0 auto 4rem;
	line-height: 1.8;
	font-size: 1.125rem;
	background: var(--background-card);
	padding: 3rem;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}

.post-content h3 {
	margin: 2.5rem 0 1.5rem;
	color: var(--text-primary);
	font-size: 1.75rem;
	position: relative;
}

.post-content h3::before {
	content: "";
	position: absolute;
	left: -1rem;
	top: 0.5rem;
	width: 4px;
	height: 1.5rem;
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--accent-color)
	);
	border-radius: 2px;
}

.post-content h4 {
	margin: 2rem 0 1rem;
	color: var(--primary-color);
	font-size: 1.375rem;
}

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

.post-content li {
	margin-bottom: 0.75rem;
	color: var(--text-secondary);
}

.post-content li strong {
	color: var(--text-primary);
}

.post-footer {
	max-width: 900px;
	margin: 0 auto;
	padding: 2rem 3rem;
	background: var(--background-card);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	border-top: 3px solid var(--primary-color);
}

.post-navigation {
	margin-bottom: 2rem;
	text-align: center;
}

.post-share {
	text-align: center;
}

.post-share h4 {
	margin-bottom: 1.5rem;
	color: var(--text-primary);
}

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

.share-buttons .btn {
	min-width: 120px;
}

/* Testimonials Section */
.testimonials-slider {
	margin-top: 3rem;
}

.testimonial-card {
	padding: 0 1rem;
}

.testimonial-content {
	background: var(--background-card);
	border-radius: var(--radius-lg);
	padding: 2.5rem;
	box-shadow: var(--shadow);
	border: 1px solid var(--border-light);
	position: relative;
	height: 260px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.quote-icon {
	position: absolute;
	top: -15px;
	left: 2rem;
	background: var(--primary-color);
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	box-shadow: var(--shadow);
}

.testimonial-content p {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--text-secondary);
	font-style: italic;
	margin-bottom: 2rem;
	text-align: center;
}

.testimonial-author {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: 0;
}

.author-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--accent-color)
	);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.1rem;
}

.author-info h4 {
	margin: 0 0 0.25rem 0;
	font-size: 1.1rem;
	color: var(--text-primary);
}

.author-info span {
	color: var(--text-muted);
	font-size: 0.9rem;
}

/* Slick Slider Customization */
.slick-dots {
	bottom: -50px !important;
	text-align: center !important;
	width: 100% !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
	margin: 0 !important;
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	position: absolute !important;
}

.slick-dots li {
	margin: 0 5px !important;
	display: inline-block !important;
}

.slick-dots li button:before {
	color: var(--primary-color);
	font-size: 14px;
	opacity: 0.5;
}

.slick-dots li.slick-active button:before {
	color: var(--primary-color);
	opacity: 1;
}

.slick-prev,
.slick-next {
	z-index: 1;
}

.slick-prev {
	left: -40px;
}

.slick-next {
	right: -40px;
}

.slick-prev:before,
.slick-next:before {
	color: var(--primary-color);
	font-size: 20px;
}

@media (max-width: 768px) {
	.testimonials-slider {
		margin-top: 2rem;
	}

	.testimonial-card {
		padding: 0 0.5rem;
	}

	.testimonial-content {
		height: auto;
		min-height: 240px;
		padding: 2rem 1.5rem;
		margin: 0 0.5rem;
	}

	.testimonial-content p {
		font-size: 0.95rem;
		line-height: 1.5;
	}

	.quote-icon {
		top: -15px;
		left: 1.5rem;
		width: 35px;
		height: 35px;
		font-size: 1rem;
	}

	.author-avatar {
		width: 45px;
		height: 45px;
		font-size: 1rem;
	}

	.author-info h4 {
		font-size: 1rem;
		margin-bottom: 0.2rem;
	}

	.author-info span {
		font-size: 0.85rem;
	}

	.slick-prev,
	.slick-next {
		display: none !important;
	}

	.slick-dots {
		bottom: -40px;
		display: none !important;
	}

	.slick-dots li {
		margin: 0 3px;
	}
}

/* Mobile Responsive for Blog */
@media (max-width: 768px) {
	.blog-hero-section {
		padding: 4rem 0 3rem;
		min-height: 50vh;
	}

	.blog-hero-title {
		font-size: 2.5rem;
	}

	.blog-hero-subtitle {
		font-size: 1.1rem;
	}

	.blog-stats {
		flex-direction: column;
		gap: 1.5rem;
	}

	.blog-stats .stat-number {
		font-size: 1.5rem;
	}

	.premium-blog-grid,
	.premium-blog-posts-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.premium-blog-card {
		height: auto;
		min-height: 380px;
	}

	.premium-blog-image {
		height: 180px;
	}

	.premium-blog-content {
		padding: 1.25rem;
	}

	.blog-title-ellipsis {
		font-size: 1.1rem;
	}

	.blog-excerpt-ellipsis {
		font-size: 0.9rem;
	}

	.premium-blog-footer {
		flex-direction: column;
		gap: 0.75rem;
		align-items: flex-start;
	}

	.post-header {
		padding: 2rem 1.5rem;
	}

	.post-header h1 {
		font-size: 2rem;
	}

	.post-featured-image {
		margin: 2rem 0 3rem;
	}

	.featured-img {
		height: 250px;
	}

	.image-icon {
		width: 4rem;
		height: 4rem;
		font-size: 1.5rem;
	}

	.post-meta {
		flex-direction: column;
		align-items: center;
		gap: 0.75rem;
	}

	.post-content {
		padding: 2rem 1.5rem;
		font-size: 1rem;
	}

	.post-content h3 {
		font-size: 1.5rem;
		margin: 2rem 0 1rem;
	}

	.post-content h3::before {
		left: -0.75rem;
		height: 1.25rem;
	}

	.post-footer {
		padding: 1.5rem;
	}

	.share-buttons {
		flex-direction: column;
		align-items: center;
	}
	.blog-post-detail {
		padding: 0rem 0;
		background: var(--background);
	}

	.share-buttons .btn {
		width: 200px;
	}
	.post-meta {
		display: none;
	}

	/* Additional Mobile Testimonials */
	#testimonials .section-header {
		margin-bottom: 2rem;
	}

	#testimonials .section-header h2 {
		font-size: 2rem;
	}

	#testimonials .section-header p {
		font-size: 1rem;
	}
}
