/* GlobalTalk - Premium Language Courses Website */
/* Main Stylesheet - Premium Design */
/* Updated: Jan 2026 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
	--primary-color: #10b981;
	--secondary-color: #f97316;
	--accent-color: #fb923c;
	--text-dark: #0f172a;
	--text-light: #64748b;
	--bg-light: #f8fafc;
	--bg-white: #ffffff;
	--border-color: #e2e8f0;
	
	/* Premium Gradients - Green-Orange Palette */
	--gradient-1: linear-gradient(135deg, #10b981 0%, #059669 50%, #f97316 100%);
	--gradient-2: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #34d399 100%);
	--gradient-3: linear-gradient(135deg, #34d399 0%, #10b981 50%, #fb923c 100%);
	--gradient-4: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
	--gradient-5: linear-gradient(135deg, #059669 0%, #ea580c 100%);
	--gradient-hero: linear-gradient(135deg, #10b981 0%, #059669 25%, #34d399 50%, #f97316 75%, #fb923c 100%);
	
	/* Premium Shadows */
	--shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
	--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
	--shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
	--shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.16);
	--shadow-2xl: 0 30px 60px rgba(0, 0, 0, 0.2);
	--shadow-glow: 0 0 40px rgba(16, 185, 129, 0.4);
	--shadow-glow-purple: 0 0 50px rgba(249, 115, 22, 0.5);
	--shadow-glow-pink: 0 0 40px rgba(52, 211, 153, 0.4);
	
	/* Glassmorphism */
	--glass-bg: rgba(255, 255, 255, 0.1);
	--glass-border: rgba(255, 255, 255, 0.2);
	--glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

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

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	line-height: 1.7;
	color: var(--text-dark);
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	font-size: 16px;
	overflow-x: hidden;
	position: relative;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
		radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.05) 0%, transparent 50%),
		radial-gradient(circle at 40% 20%, rgba(52, 211, 153, 0.05) 0%, transparent 50%);
	pointer-events: none;
	z-index: 0;
}

/* Premium Header with Advanced Effects */
header {
	background: rgba(10, 10, 15, 0.8);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 1.25rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
	padding: 0.75rem 0;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
	background: rgba(10, 10, 15, 0.95);
}

.header-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 3rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.875rem;
	font-weight: 800;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	letter-spacing: -0.5px;
}

.logo::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 3px;
	background: var(--gradient-1);
	border-radius: 2px;
	transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
	transform: scale(1.05);
}

.logo:hover::after {
	width: 100%;
}

nav ul {
	display: flex;
	list-style: none;
	gap: 2.5rem;
}

/* Burger Menu Button */
.burger-menu {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	width: 30px;
	height: 30px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1001;
	position: relative;
}

.burger-menu span {
	width: 100%;
	height: 3px;
	background: var(--hero-text-light);
	border-radius: 3px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	transform-origin: center;
}

.burger-menu.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
	opacity: 0;
	transform: translateX(-20px);
}

.burger-menu.active span:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
.mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	max-width: 400px;
	height: 100vh;
	background: rgba(10, 10, 15, 0.98);
	backdrop-filter: blur(30px) saturate(180%);
	-webkit-backdrop-filter: blur(30px) saturate(180%);
	box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
	z-index: 1000;
	transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	padding: 6rem 2rem 2rem;
	overflow-y: auto;
}

.mobile-menu.active {
	right: 0;
}

.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(5px);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

.mobile-menu ul {
	flex-direction: column;
	gap: 0;
	list-style: none;
	padding: 0;
	margin: 0;
}

.mobile-menu li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	opacity: 0;
	transform: translateX(30px);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active li {
	opacity: 1;
	transform: translateX(0);
}

.mobile-menu.active li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active li:nth-child(6) { transition-delay: 0.35s; }

.mobile-menu a {
	display: block;
	padding: 1.5rem 0;
	color: var(--hero-text-light);
	font-weight: 600;
	font-size: 1.125rem;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}

.mobile-menu a::before {
	content: '';
	position: absolute;
	left: -2rem;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 0;
	background: var(--gradient-1);
	border-radius: 2px;
	transition: height 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
	color: #10b981;
	padding-left: 1rem;
}

.mobile-menu a:hover::before,
.mobile-menu a.active::before {
	height: 60%;
}

nav a {
	text-decoration: none;
	color: var(--hero-text-light);
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	letter-spacing: 0.3px;
}

nav a::before {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: var(--gradient-1);
	border-radius: 2px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 1px;
	background: rgba(16, 185, 129, 0.3);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a:hover {
	color: #10b981;
	transform: translateY(-2px);
}

nav a:hover::before {
	width: 100%;
}

nav a:hover::after {
	width: 80%;
}

/* ============================================
   MODERN HERO SECTION 2026 - DARK MODE FIRST
   ============================================ */

:root {
	/* Dark Mode Colors - Primary */
	--hero-bg-dark: #0a0a0f;
	--hero-bg-dark-2: #121218;
	--hero-text-light: #ffffff;
	--hero-text-muted: rgba(255, 255, 255, 0.7);
	--hero-accent-1: #10b981;
	--hero-accent-2: #059669;
	--hero-accent-3: #f97316;
	--hero-accent-4: #34d399;
	--hero-glow: rgba(16, 185, 129, 0.4);
}

.hero {
	min-height: 100vh;
	position: relative;
	overflow: hidden;
	background: var(--hero-bg-dark);
	color: var(--hero-text-light);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ============================================
   MODERN HERO SECTION 2026 - DARK MODE FIRST
   Bento UI + 3D Effects + Scrolltelling
   ============================================ */

/* Background Layers with Parallax */
.hero-bg-layers {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 0;
}

.bg-layer {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0.6;
}

.layer-1 {
	background: radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.3) 0%, transparent 50%);
	animation: float1 20s ease-in-out infinite;
}

.layer-2 {
	background: radial-gradient(circle at 80% 70%, rgba(249, 115, 22, 0.25) 0%, transparent 50%);
	animation: float2 25s ease-in-out infinite;
}

.layer-3 {
	background: radial-gradient(circle at 50% 50%, rgba(52, 211, 153, 0.2) 0%, transparent 60%);
	animation: float3 30s ease-in-out infinite;
}

.bg-gradient-mesh {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
		linear-gradient(225deg, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
		linear-gradient(45deg, rgba(52, 211, 153, 0.1) 0%, transparent 50%);
	opacity: 0.4;
	animation: meshMove 40s linear infinite;
}

@keyframes float1 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(-30px, -30px) scale(1.1); }
}

@keyframes float2 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(30px, 30px) scale(1.15); }
}

@keyframes float3 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(-20px, 20px) scale(1.05); }
}

@keyframes meshMove {
	0% { transform: translate(0, 0); }
	100% { transform: translate(100px, 100px); }
}

/* 3D Floating Shapes */
.hero-3d-elements {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}

.floating-shape {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.3;
}

.shape-1 {
	width: 400px;
	height: 400px;
	background: linear-gradient(135deg, #10b981, #059669);
	top: 10%;
	left: 10%;
	animation: shapeFloat1 15s ease-in-out infinite;
}

.shape-2 {
	width: 300px;
	height: 300px;
	background: linear-gradient(135deg, #f97316, #ea580c);
	top: 60%;
	right: 15%;
	animation: shapeFloat2 20s ease-in-out infinite;
}

.shape-3 {
	width: 350px;
	height: 350px;
	background: linear-gradient(135deg, #34d399, #10b981);
	bottom: 10%;
	left: 50%;
	animation: shapeFloat3 18s ease-in-out infinite;
}

@keyframes shapeFloat1 {
	0%, 100% { transform: translate(0, 0) rotate(0deg); }
	50% { transform: translate(50px, -50px) rotate(180deg); }
}

@keyframes shapeFloat2 {
	0%, 100% { transform: translate(0, 0) rotate(0deg); }
	50% { transform: translate(-40px, 40px) rotate(-180deg); }
}

@keyframes shapeFloat3 {
	0%, 100% { transform: translate(0, 0) rotate(0deg); }
	50% { transform: translate(30px, -30px) rotate(90deg); }
}

/* Hero Container */
.hero-container {
	max-width: 1600px;
	width: 100%;
	margin: 0 auto;
	padding: 8rem 2rem 4rem;
	position: relative;
	z-index: 2;
}

/* Bento Grid Layout */
.hero-bento-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: repeat(8, minmax(120px, auto));
	gap: 1.5rem;
	min-height: calc(100vh - 12rem);
	padding-bottom: 2rem;
}

/* Bento Card Base Styles */
.bento-card {
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
	padding: 2rem;
	position: relative;
	overflow: visible;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0;
	transform: translateY(50px);
	display: flex;
	flex-direction: column;
}

.bento-card[data-scroll] {
	animation: bentoReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.bento-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
}

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

.bento-card:hover {
	border-color: rgba(255, 255, 255, 0.2);
	transform: translateY(-5px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(16, 185, 129, 0.2);
}

@keyframes bentoReveal {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Main Title Block - Spans 7 columns, 3 rows */
.bento-main-title {
	grid-column: 1 / 8;
	grid-row: 1 / 4;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 2.5rem;
	overflow: visible;
}

.title-wrapper {
	position: relative;
	z-index: 1;
}

.title-line {
	display: flex;
	gap: 1rem;
	margin-bottom: 0.75rem;
	flex-wrap: wrap;
	overflow: visible;
	line-height: 1.2;
}

.word {
	font-size: clamp(2rem, 7vw, 4.5rem);
	font-weight: 900;
	line-height: 1.15;
	color: var(--hero-text-light);
	display: inline-block;
	opacity: 0;
	transform: translateY(100%);
	animation: wordReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
	letter-spacing: -0.02em;
	position: relative;
	word-break: break-word;
}

.word:nth-child(1) { animation-delay: 0.1s; }
.word:nth-child(2) { animation-delay: 0.2s; }
.word:nth-child(3) { animation-delay: 0.3s; }
.word:nth-child(4) { animation-delay: 0.4s; }

.word.highlight {
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
}

.word.highlight::after {
	content: '';
	position: absolute;
	bottom: 0.1em;
	left: 0;
	width: 100%;
	height: 0.15em;
	background: var(--gradient-1);
	opacity: 0.3;
	border-radius: 2px;
}

@keyframes wordReveal {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.title-decoration {
	position: absolute;
	bottom: 2rem;
	left: 3rem;
	width: 100px;
	height: 4px;
	background: linear-gradient(90deg, #10b981, transparent);
	border-radius: 2px;
	opacity: 0;
	animation: decorationReveal 1s ease 0.8s forwards;
}

@keyframes decorationReveal {
	to {
		opacity: 1;
		width: 200px;
	}
}

/* Description Block - Spans 5 columns, 2 rows */
.bento-description {
	grid-column: 8 / 13;
	grid-row: 1 / 3;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1.5rem;
	padding: 2rem;
	overflow: visible;
}

.hero-description {
	font-size: clamp(1rem, 1.8vw, 1.35rem);
	line-height: 1.7;
	color: var(--hero-text-muted);
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}

.text-reveal {
	display: block;
	opacity: 0;
	transform: translateX(-30px);
	animation: textReveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.text-reveal:nth-child(1) { animation-delay: 0.5s; }
.text-reveal:nth-child(2) { animation-delay: 0.7s; }
.text-reveal:nth-child(3) { animation-delay: 0.9s; }

@keyframes textReveal {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.description-line {
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, rgba(16, 185, 129, 0.5), transparent);
	border-radius: 2px;
	opacity: 0;
	animation: lineReveal 0.8s ease 1.1s forwards;
}

@keyframes lineReveal {
	to {
		opacity: 1;
		width: 120px;
	}
}

/* CTA Buttons Block - Spans 5 columns, 1 row */
.bento-cta {
	grid-column: 8 / 13;
	grid-row: 3 / 4;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	overflow: visible;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	width: 100%;
	justify-content: center;
	align-items: center;
}

.btn-modern {
	position: relative;
	padding: 1rem 2rem;
	border-radius: 16px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	border: 1px solid transparent;
	white-space: nowrap;
}

.btn-primary-modern {
	background: linear-gradient(135deg, #10b981 0%, #f97316 100%);
	color: white;
	box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4);
}

.btn-primary-modern:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 20px 60px rgba(16, 185, 129, 0.6);
}

.btn-primary-modern .btn-icon {
	transition: transform 0.4s ease;
}

.btn-primary-modern:hover .btn-icon {
	transform: translateX(5px);
}

.btn-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
	pointer-events: none;
}

.btn-primary-modern:hover .btn-glow {
	width: 300px;
	height: 300px;
}

.btn-secondary-modern {
	background: rgba(255, 255, 255, 0.05);
	color: var(--hero-text-light);
	border-color: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
}

.btn-secondary-modern:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.3);
	transform: translateY(-3px);
}

/* Stats Block - Spans 7 columns, 1 row */
.bento-stats {
	grid-column: 1 / 8;
	grid-row: 4 / 5;
	display: flex;
	align-items: center;
	justify-content: space-around;
	padding: 1.5rem;
	overflow: visible;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	width: 100%;
}

.stat-item-modern {
	text-align: center;
	position: relative;
}

.stat-number-modern {
	font-size: clamp(2rem, 4.5vw, 3.5rem);
	font-weight: 900;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.1;
	margin-bottom: 0.5rem;
	letter-spacing: -0.02em;
}

.stat-label-modern {
	font-size: 0.95rem;
	color: var(--hero-text-muted);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

/* Features Block - Spans 7 columns, 2 rows */
.bento-features {
	grid-column: 1 / 8;
	grid-row: 5 / 7;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1rem;
	padding: 1.5rem;
	overflow: visible;
}

.features-interactive {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.feature-item-modern {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	position: relative;
	overflow: visible;
}

.feature-item-modern::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, #10b981, #f97316);
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.4s ease;
}

.feature-item-modern:hover {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(16, 185, 129, 0.3);
	transform: translateX(10px);
}

.feature-item-modern:hover::before {
	transform: scaleY(1);
}

.feature-icon-modern {
	font-size: 2.5rem;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(16, 185, 129, 0.1);
	border-radius: 12px;
	flex-shrink: 0;
	transition: all 0.4s ease;
}

.feature-item-modern:hover .feature-icon-modern {
	background: rgba(16, 185, 129, 0.2);
	transform: scale(1.1) rotate(5deg);
}

.feature-content h4 {
	font-size: clamp(1rem, 1.2vw, 1.15rem);
	font-weight: 700;
	color: var(--hero-text-light);
	margin-bottom: 0.25rem;
	line-height: 1.3;
}

.feature-content p {
	font-size: clamp(0.85rem, 1vw, 0.9rem);
	color: var(--hero-text-muted);
	line-height: 1.4;
}

/* Visual Showcase Block - Spans 5 columns, 4 rows */
.bento-visual {
	grid-column: 8 / 13;
	grid-row: 4 / 8;
	display: flex;
	flex-direction: column;
	padding: 0;
	overflow: visible;
	min-height: 0;
}

.visual-showcase {
	position: relative;
	width: 100%;
	height: 100%;
	flex: 1;
}

.showcase-item {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transform: scale(0.9) translateY(20px);
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: none;
}

.showcase-item.active {
	opacity: 1;
	transform: scale(1) translateY(0);
	pointer-events: auto;
}

.showcase-image {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 20px;
}

.showcase-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-item.active .showcase-image img {
	transform: scale(1.05);
}

.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
	pointer-events: none;
}

.showcase-label {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(10px);
	padding: 0.75rem 1.5rem;
	border-radius: 12px;
	color: white;
	font-weight: 600;
	font-size: 0.95rem;
	opacity: 0;
	transition: opacity 0.4s ease 0.3s;
}

.showcase-item.active .showcase-label {
	opacity: 1;
}

.showcase-nav {
	display: flex;
	justify-content: center;
	gap: 0.75rem;
	padding: 1.5rem;
}

.nav-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	border: 2px solid rgba(255, 255, 255, 0.2);
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	padding: 0;
	border: none;
}

.nav-dot:hover {
	background: rgba(255, 255, 255, 0.5);
	transform: scale(1.2);
}

.nav-dot.active {
	background: white;
	width: 30px;
	border-radius: 15px;
	box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
}

/* Scroll Indicator */
.scroll-indicator {
	position: absolute;
	bottom: 3rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	opacity: 0;
	animation: indicatorFadeIn 1s ease 1.5s forwards;
	z-index: 10;
}

@keyframes indicatorFadeIn {
	to { opacity: 1; }
}

.scroll-line {
	width: 2px;
	height: 40px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent);
	border-radius: 2px;
	animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
	0%, 100% { transform: translateY(0); opacity: 0.5; }
	50% { transform: translateY(10px); opacity: 1; }
}

.scroll-text {
	font-size: 0.75rem;
	color: var(--hero-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.2em;
}

/* Scroll Progress Bar */
.scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	width: 0%;
	height: 3px;
	background: linear-gradient(90deg, #10b981, #f97316, #34d399);
	z-index: 10000;
	transition: width 0.1s ease;
	box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

/* Responsive Design for Hero */
@media (max-width: 1400px) {
	.hero-container {
		padding: 7rem 2rem 3rem;
	}

	.hero-bento-grid {
		grid-template-columns: repeat(10, 1fr);
		grid-template-rows: repeat(10, minmax(100px, auto));
		gap: 1.25rem;
	}
	
	.bento-card {
		padding: 1.75rem;
	}
	
	.bento-main-title {
		grid-column: 1 / 7;
		grid-row: 1 / 4;
		padding: 2rem;
	}
	
	.bento-description {
		grid-column: 7 / 11;
		grid-row: 1 / 3;
		padding: 1.75rem;
	}
	
	.bento-cta {
		grid-column: 7 / 11;
		grid-row: 3 / 4;
		padding: 1.25rem;
	}
	
	.bento-stats {
		grid-column: 1 / 7;
		grid-row: 4 / 5;
		padding: 1.5rem;
	}
	
	.bento-features {
		grid-column: 1 / 7;
		grid-row: 5 / 7;
		padding: 1.5rem;
	}
	
	.bento-visual {
		grid-column: 7 / 11;
		grid-row: 4 / 8;
	}
}

@media (max-width: 1024px) {
	.hero-container {
		padding: 6rem 1.5rem 3rem;
	}

	.hero-bento-grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		min-height: auto;
		gap: 1.25rem;
		padding-bottom: 1.5rem;
	}
	
	.bento-main-title,
	.bento-description,
	.bento-cta,
	.bento-stats,
	.bento-features,
	.bento-visual {
		grid-column: 1;
		grid-row: auto;
	}
	
	.bento-card {
		padding: 1.75rem;
	}
	
	.bento-main-title {
		min-height: auto;
		padding: 2rem 1.5rem;
	}
	
	.bento-description {
		padding: 1.75rem;
	}
	
	.bento-cta {
		padding: 1.25rem;
	}
	
	.bento-stats {
		padding: 1.25rem;
	}
	
	.bento-features {
		padding: 1.25rem;
	}
	
	.bento-visual {
		min-height: 350px;
	}
	
	.stats-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1rem;
	}
	
	.cta-buttons {
		flex-direction: column;
		width: 100%;
	}
	
	.btn-modern {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.hero-container {
		padding: 5rem 1rem 2rem;
	}
	
	.hero-bento-grid {
		gap: 1rem;
		padding-bottom: 1rem;
	}
	
	.bento-card {
		padding: 1.25rem;
		border-radius: 20px;
	}
	
	.bento-main-title {
		padding: 1.5rem 1rem;
	}
	
	.bento-description {
		padding: 1.5rem;
	}
	
	.bento-cta {
		padding: 1rem;
	}
	
	.bento-stats {
		padding: 1rem;
	}
	
	.bento-features {
		padding: 1rem;
	}
	
	.title-line {
		margin-bottom: 0.5rem;
		gap: 0.75rem;
	}
	
	.word {
		font-size: clamp(1.75rem, 6vw, 3rem);
		line-height: 1.2;
	}
	
	.hero-description {
		font-size: clamp(0.95rem, 3vw, 1.1rem);
		gap: 0.75rem;
	}
	
	.cta-buttons {
		flex-direction: column;
		gap: 0.75rem;
	}
	
	.btn-modern {
		width: 100%;
		justify-content: center;
		padding: 0.875rem 1.5rem;
		font-size: 0.9rem;
	}
	
	.stats-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.stat-number-modern {
		font-size: clamp(1.75rem, 5vw, 2.5rem);
	}
	
	.features-interactive {
		gap: 0.75rem;
	}
	
	.feature-item-modern {
		padding: 1rem;
		gap: 0.875rem;
	}
	
	.feature-icon-modern {
		font-size: 2rem;
		width: 50px;
		height: 50px;
	}
	
	.feature-content h4 {
		font-size: 1rem;
	}
	
	.feature-content p {
		font-size: 0.85rem;
	}
	
	.bento-visual {
		min-height: 300px;
	}
	
	.showcase-nav {
		padding: 1rem;
	}
}


/* Premium Section Styles */
section {
	padding: 8rem 2rem;
	position: relative;
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.section-title {
	font-size: 3.5rem;
	font-weight: 900;
	text-align: center;
	margin-bottom: 1.5rem;
	color: var(--text-dark);
	position: relative;
	letter-spacing: -1px;
	line-height: 1.2;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 5px;
	background: var(--gradient-1);
	border-radius: 3px;
}

.section-subtitle {
	text-align: center;
	color: var(--text-light);
	font-size: 1.25rem;
	margin-bottom: 4rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.8;
	font-weight: 400;
}

/* Premium Features Grid */
.features-section {
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	position: relative;
	overflow: hidden;
}

.features-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.03) 0%, transparent 50%),
		radial-gradient(circle at 90% 80%, rgba(249, 115, 22, 0.03) 0%, transparent 50%);
	pointer-events: none;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
	margin-top: 4rem;
}

.feature-card {
	background: var(--bg-white);
	padding: 0;
	border-radius: 24px;
	box-shadow: var(--shadow-md);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid var(--border-color);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-1);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover::before {
	transform: scaleX(1);
}

.feature-card::after {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: var(--shadow-2xl), var(--shadow-glow);
	border-color: rgba(16, 185, 129, 0.3);
}

.feature-card:hover::after {
	opacity: 1;
}

.feature-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
	position: relative;
	border-radius: 24px 24px 0 0;
}

.feature-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.feature-image::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

.feature-icon {
	width: 80px;
	height: 80px;
	background: var(--gradient-1);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	margin: -40px auto 1.5rem;
	position: relative;
	z-index: 2;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.feature-card:hover .feature-icon {
	transform: rotate(5deg) scale(1.1);
	box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}

.feature-card h3 {
	font-size: 1.75rem;
	margin-bottom: 1rem;
	color: var(--text-dark);
	font-weight: 700;
	letter-spacing: -0.5px;
	padding: 0 2.5rem;
	margin-top: 0;
}

.feature-card p {
	color: var(--text-light);
	line-height: 1.9;
	font-size: 1.05rem;
	padding: 0 2.5rem 2.5rem;
	margin-bottom: 0;
}

/* Premium Courses Section */
.languages-gallery-section {
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
	position: relative;
	overflow: hidden;
	padding: 6rem 0;
}

.languages-gallery-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 80% 30%, rgba(249, 115, 22, 0.04) 0%, transparent 50%),
		radial-gradient(circle at 20% 70%, rgba(52, 211, 153, 0.04) 0%, transparent 50%);
	pointer-events: none;
}

.courses-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2.5rem;
	margin-top: 4rem;
}

.course-card {
	background: white;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	border: 1px solid var(--border-color);
	display: flex;
	flex-direction: column;
}

.course-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--gradient-1);
	opacity: 0;
	transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1;
	pointer-events: none;
}

.course-card:hover::before {
	opacity: 0.05;
}

.course-card:hover {
	transform: translateY(-15px) scale(1.02);
	box-shadow: var(--shadow-2xl), var(--shadow-glow-purple);
	border-color: rgba(249, 115, 22, 0.3);
}

.course-image {
	width: 100%;
	height: 240px;
	overflow: hidden;
	position: relative;
	border-radius: 24px 24px 0 0;
}

.course-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.course-image::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

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

.course-content {
	padding: 2rem;
	position: relative;
	z-index: 2;
}

.course-content h3 {
	font-size: 1.75rem;
	margin-bottom: 0.75rem;
	color: var(--text-dark);
	font-weight: 700;
	letter-spacing: -0.5px;
}

.course-content p {
	color: var(--text-light);
	margin-bottom: 1.25rem;
	line-height: 1.8;
	font-size: 1.05rem;
}

.languages-masonry {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	grid-auto-rows: 300px;
	gap: 1.5rem;
	margin-top: 4rem;
}

.language-item {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: var(--shadow-md);
}

.language-item-large {
	grid-row: span 2;
}

.language-item-tall {
	grid-row: span 2;
}

.language-image {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}

.language-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.language-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
	padding: 2rem;
	transform: translateY(100%);
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.language-item:hover .language-overlay {
	transform: translateY(0);
}

.language-item:hover .language-image img {
	transform: scale(1.15);
}

.language-item:hover {
	box-shadow: var(--shadow-2xl), var(--shadow-glow);
	transform: translateY(-10px);
}

.language-overlay h3 {
	color: white;
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	letter-spacing: -0.5px;
}

.language-overlay p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1rem;
	margin-bottom: 1rem;
	line-height: 1.6;
}

.language-price {
	display: inline-block;
	color: var(--secondary-color);
	font-size: 1.5rem;
	font-weight: 700;
	background: rgba(255, 255, 255, 0.95);
	padding: 0.5rem 1rem;
	border-radius: 12px;
}

.course-price {
	font-size: 2rem;
	font-weight: 800;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1.5rem;
	letter-spacing: -1px;
}

/* Premium Testimonials */
.testimonials-section {
	background: var(--gradient-1);
	background-size: 400% 400%;
	animation: gradientShift 20s ease infinite;
	color: white;
	position: relative;
	overflow: hidden;
}

.testimonials-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

.testimonials-section .section-title {
	color: white;
}

.testimonials-section .section-title::after {
	background: rgba(255, 255, 255, 0.5);
}

.testimonials-section .section-subtitle {
	color: rgba(255, 255, 255, 0.9);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
	margin-top: 4rem;
}

.testimonial-card {
	background: var(--glass-bg);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	padding: 2.5rem;
	border-radius: 24px;
	border: 1px solid var(--glass-border);
	box-shadow: var(--glass-shadow);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.testimonial-card::before {
	content: '"';
	position: absolute;
	top: -20px;
	left: 20px;
	font-size: 120px;
	color: rgba(255, 255, 255, 0.1);
	font-weight: 900;
	line-height: 1;
	font-family: Georgia, serif;
}

.testimonial-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.15);
}

.testimonial-text {
	font-style: italic;
	margin-bottom: 2rem;
	font-size: 1.15rem;
	line-height: 1.9;
	position: relative;
	z-index: 1;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	position: relative;
	z-index: 1;
}

.author-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.25rem;
	border: 2px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover .author-avatar {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Premium Stats Section */
.stats-section {
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	position: relative;
	overflow: hidden;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2.5rem;
	margin-top: 4rem;
}

.stat-item {
	text-align: center;
	padding: 3rem 2rem;
	background: white;
	border-radius: 24px;
	box-shadow: var(--shadow-lg);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	border: 1px solid var(--border-color);
}

.stat-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-1);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover::before {
	transform: scaleX(1);
}

.stat-item:hover {
	transform: translateY(-10px) scale(1.05);
	box-shadow: var(--shadow-2xl), var(--shadow-glow);
}

.stat-number {
	font-size: 4rem;
	font-weight: 900;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.75rem;
	letter-spacing: -2px;
	line-height: 1;
}

.stat-label {
	color: var(--text-light);
	font-weight: 600;
	font-size: 1.1rem;
	letter-spacing: 0.5px;
}

/* Premium Contact Form */
.contact-section {
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
	position: relative;
	overflow: hidden;
}

.contact-container {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 4rem;
	align-items: start;
}

.contact-form {
	background: white;
	padding: 3rem;
	border-radius: 30px;
	box-shadow: var(--shadow-xl);
	border: 1px solid var(--border-color);
	position: relative;
	overflow: hidden;
}

.contact-form::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: var(--gradient-1);
}

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

.form-group label {
	display: block;
	margin-bottom: 0.75rem;
	font-weight: 600;
	color: var(--text-dark);
	font-size: 0.95rem;
	letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 1.125rem 1.25rem;
	border: 2px solid var(--border-color);
	border-radius: 12px;
	font-size: 1rem;
	font-family: inherit;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.btn {
	display: inline-block;
	padding: 1rem 2rem;
	border-radius: 12px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	font-family: inherit;
	line-height: 1.5;
}

.btn-primary {
	background: var(--gradient-1);
	color: white;
	box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-primary:active {
	transform: translateY(0);
	box-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
}

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

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.info-item {
	display: flex;
	align-items: start;
	gap: 1.5rem;
	padding: 2rem;
	background: white;
	border-radius: 20px;
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border-color);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-item:hover {
	transform: translateX(10px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary-color);
}

.info-icon {
	width: 60px;
	height: 60px;
	background: var(--gradient-1);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
	flex-shrink: 0;
	box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-item:hover .info-icon {
	transform: rotate(5deg) scale(1.1);
	box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}

.info-content h4 {
	margin-bottom: 0.75rem;
	color: var(--text-dark);
	font-weight: 700;
	font-size: 1.25rem;
}

.info-content p {
	color: var(--text-light);
	line-height: 1.8;
	font-size: 1.05rem;
}

/* Premium Footer */
footer {
	background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
	color: white;
	padding: 5rem 2rem 2rem;
	position: relative;
	overflow: hidden;
}

footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}

.footer-container {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 4rem;
	position: relative;
	z-index: 1;
}

.footer-section h3 {
	margin-bottom: 2rem;
	font-size: 1.5rem;
	font-weight: 700;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer-section p,
.footer-section a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	line-height: 2;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-section a:hover {
	color: white;
	transform: translateX(5px);
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 1rem;
}

.footer-bottom {
	text-align: center;
	padding-top: 3rem;
	margin-top: 3rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.95rem;
}

/* Premium Cookie Popup */
.cookie-popup {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
	color: white;
	padding: 2rem;
	box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
	z-index: 10000;
	transform: translateY(100%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-popup.show {
	transform: translateY(0);
}

.cookie-content {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.cookie-text {
	flex: 1;
	min-width: 300px;
	font-size: 1.05rem;
	line-height: 1.8;
}

.cookie-text a {
	color: var(--accent-color);
	text-decoration: underline;
	transition: color 0.3s ease;
}

.cookie-text a:hover {
	color: #fbbf24;
}

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

.btn-cookie {
	padding: 1rem 2rem;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	font-weight: 700;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	font-size: 0.95rem;
	letter-spacing: 0.5px;
}

.btn-accept {
	background: var(--gradient-1);
	color: white;
	box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.btn-accept:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 40px rgba(16, 185, 129, 0.6);
}

.btn-decline {
	background: rgba(255, 255, 255, 0.1);
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
}

.btn-decline:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-2px);
}

/* Premium Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in {
	animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scroll Reveal Animation */
.reveal {
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
	.hero-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 3rem;
	}

	.hero-text h1 {
		font-size: 3.5rem;
	}

	.contact-container {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.section-title {
		font-size: 3rem;
	}
}

@media (max-width: 968px) {
	nav ul {
		gap: 1.5rem;
		font-size: 0.9rem;
	}

	.hero-text h1 {
		font-size: 2.75rem;
	}

	.features-grid,
	.languages-masonry {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		grid-auto-rows: 250px;
		gap: 1rem;
	}

	.language-item-large,
	.language-item-tall {
		grid-row: span 1;
	}
}

@media (max-width: 968px) {
	.burger-menu {
		display: flex;
	}

	nav {
		display: none;
	}

	.header-container {
		padding: 0 1.5rem;
	}
}

@media (max-width: 768px) {
	.header-container {
		padding: 0 1.5rem;
	}

	.mobile-menu {
		max-width: 100%;
		padding: 5rem 1.5rem 2rem;
	}

	.hero {
		padding: 4rem 1.5rem;
		min-height: 90vh;
	}

	.hero-text h1 {
		font-size: 2.25rem;
	}

	.hero-text p {
		font-size: 1.125rem;
	}

	.section-title {
		font-size: 2.5rem;
	}

	section {
		padding: 5rem 1.5rem;
	}

	.cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.cookie-buttons {
		width: 100%;
		justify-content: center;
	}

	.btn-cookie {
		flex: 1;
	}

	.feature-image {
		height: 180px;
	}

	.feature-card h3 {
		padding: 0 1.5rem;
		font-size: 1.5rem;
	}

	.feature-card p {
		padding: 0 1.5rem 1.5rem;
		font-size: 1rem;
	}

	.feature-icon {
		width: 70px;
		height: 70px;
		font-size: 1.75rem;
		margin: -35px auto 1.25rem;
	}
}

@media (max-width: 480px) {
	.hero-text h1 {
		font-size: 1.875rem;
	}

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

	.section-title {
		font-size: 2rem;
	}

	.feature-image {
		height: 150px;
	}

	.feature-card h3 {
		padding: 0 1.25rem;
		font-size: 1.25rem;
	}

	.feature-card p {
		padding: 0 1.25rem 1.25rem;
		font-size: 0.95rem;
	}

	.feature-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
		margin: -30px auto 1rem;
	}

	.feature-card,
	.course-card,
	.testimonial-card {
		padding: 1.5rem;
	}

	.course-image {
		height: 200px;
	}

	.course-content {
		padding: 1.5rem;
	}

	.course-content h3 {
		font-size: 1.5rem;
	}

	.course-content p {
		font-size: 0.95rem;
	}
}

/* Policy Pages Premium Styles */
.policy-content {
	max-width: 900px;
	margin: 0 auto;
	padding: 4rem 2rem;
	line-height: 1.9;
	background: white;
	border-radius: 24px;
	box-shadow: var(--shadow-lg);
	margin-top: 3rem;
	margin-bottom: 3rem;
}

.policy-content h1 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	color: var(--text-dark);
	font-weight: 900;
	letter-spacing: -1px;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.policy-content h2 {
	font-size: 2rem;
	margin-top: 3rem;
	margin-bottom: 1.5rem;
	color: var(--text-dark);
	font-weight: 700;
	letter-spacing: -0.5px;
}

.policy-content h3 {
	font-size: 1.5rem;
	margin-top: 2rem;
	margin-bottom: 1rem;
	color: var(--text-dark);
	font-weight: 600;
}

.policy-content p {
	margin-bottom: 1.5rem;
	color: var(--text-light);
	font-size: 1.05rem;
	line-height: 1.9;
}

.policy-content ul,
.policy-content ol {
	margin-left: 2rem;
	margin-bottom: 1.5rem;
	color: var(--text-light);
}

.policy-content li {
	margin-bottom: 0.75rem;
	line-height: 1.8;
}

.policy-content a {
	color: var(--primary-color);
	text-decoration: none;
	border-bottom: 2px solid transparent;
	transition: all 0.3s ease;
}

.policy-content a:hover {
	border-bottom-color: var(--primary-color);
}

/* Premium Thanks Page */
.thanks-container {
	max-width: 700px;
	margin: 6rem auto;
	padding: 4rem;
	text-align: center;
	background: white;
	border-radius: 30px;
	box-shadow: var(--shadow-2xl);
	border: 1px solid var(--border-color);
	position: relative;
	overflow: hidden;
}

.thanks-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: var(--gradient-1);
}

.thanks-container h1 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	color: var(--text-dark);
	font-weight: 900;
	letter-spacing: -1px;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.thanks-container p {
	font-size: 1.25rem;
	color: var(--text-light);
	margin-bottom: 2.5rem;
	line-height: 1.9;
}
