/**
 * VoxMundi Premium Theme Stylesheet
 * 
 * Palette:
 * - Primary: #0f4c81 (Deep Blue)
 * - Secondary: #2563eb (Royal Blue)
 * - Accent: #06b6d4 (Cyan)
 * - Light BG: #f8fafc (Slate Light)
 * - Dark BG: #0f172a (Slate Dark)
 */

/* 1. RESET & BASE ELEMENTS */
:root {
	--primary: #0f4c81;
	--primary-hover: #0c3e6a;
	--secondary: #2563eb;
	--accent: #06b6d4;
	--text-main: #334155;
	--text-light: #64748b;
	--bg-light: #f8fafc;
	--bg-card: #ffffff;
	--border-color: #e2e8f0;
	--white: #ffffff;
	--success: #22c55e;
	--error: #ef4444;
	--font-main: 'Plus Jakarta Sans', system-ui, sans-serif;
	--shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
	--shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
	--shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.05);
	--shadow-premium: 0 20px 40px rgba(15, 76, 129, 0.07);
	--radius: 12px;
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
	max-width: 100%;
}

body {
	font-family: var(--font-main);
	color: var(--text-main);
	background-color: var(--bg-light);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	max-width: 100%;
	position: relative;
}

/* Safety net: media and grids must never exceed the viewport on small screens. */
img, svg, video, iframe, table { max-width: 100%; }

/* Fluid media — never overflow the viewport */
img, svg, video, iframe { max-width: 100%; }
iframe { max-width: 100%; }
table { max-width: 100%; }

/* Avoid long words/URLs breaking the layout on small screens */
p, li, h1, h2, h3, h4, a, span, td, th { overflow-wrap: break-word; word-wrap: break-word; }

a {
	color: var(--secondary);
	text-decoration: none;
	transition: var(--transition);
}

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

img {
	max-width: 100%;
	height: auto;
	display: block;
}

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

.section {
	padding: 44px 0;
}

.text-center { text-align: center; }
.bg-light { background-color: var(--bg-light); }
.bg-white { background-color: var(--white); }
.color-white { color: var(--white); }
.color-light { color: #cbd5e1; }
.text-cyan { color: var(--accent); }
.text-primary { color: var(--primary); }

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	padding: 12px 28px;
	border-radius: var(--radius);
	border: 2px solid transparent;
	cursor: pointer;
	font-size: 15px;
	letter-spacing: 0.2px;
	transition: var(--transition);
}

.btn-primary {
	background-color: var(--primary);
	color: var(--white);
	box-shadow: 0 4px 14px rgba(15, 76, 129, 0.25);
}

.btn-primary:hover {
	background-color: var(--primary-hover);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(15, 76, 129, 0.3);
}

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

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

/* CTA widget on dark/blue backgrounds: keep the button readable (no black text) */
.cta-widget .btn-secondary {
	background-color: #fff;
	border-color: #fff;
	color: var(--primary);
}
.cta-widget .btn-secondary:hover {
	background-color: var(--accent);
	border-color: var(--accent);
	color: #fff;
}

/* Offers hero: "Claim This Offer" — readable black text on a solid button */
.offer-hero .btn-secondary {
	background-color: #fff;
	border-color: #fff;
	color: #111111;
}
.offer-hero .btn-secondary:hover {
	background-color: #fbbf24;
	border-color: #fbbf24;
	color: #111111;
}

.btn-whatsapp {
	background-color: #22c55e;
	color: var(--white);
	box-shadow: 0 4px 14px rgba(34, 197, 94, 0.25);
}

.btn-whatsapp:hover {
	background-color: #1ea34d;
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(34, 197, 94, 0.30);
}

.btn-lg {
	padding: 16px 36px;
	font-size: 16px;
	border-radius: 14px;
}

.btn-sm {
	padding: 8px 16px;
	font-size: 13px;
	border-radius: 8px;
}

.btn-full {
	width: 100%;
}

/* Cards */
.card {
	background-color: var(--bg-card);
	border-radius: var(--radius);
	border: 1px solid var(--border-color);
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
	overflow: hidden;
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-premium);
}

/* Gradients */
.bg-gradient-blue {
	background: linear-gradient(135deg, #0f4c81 0%, #1e3a8a 100%);
}

.bg-gradient-dark {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

/* Section Headers */
.section-header {
	max-width: 700px;
	margin: 0 auto 50px auto;
}

.section-subtitle {
	color: var(--secondary);
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	display: block;
	margin-bottom: 10px;
}

.section-title {
	font-size: 36px;
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 15px;
	line-height: 1.25;
}

.section-desc {
	font-size: 16px;
	color: var(--text-light);
}

/* 2. TOP BAR & SITE HEADER */
.top-bar {
	background-color: #0c1c3a;
	color: #94a3b8;
	font-size: 12px;
	padding: 8px 0;
	font-weight: 500;
}

.top-bar-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.contact-info a {
	color: #94a3b8;
	margin-right: 20px;
}

.contact-info a:hover {
	color: var(--white);
}

.site-header {
	background-color: var(--white);
	border-bottom: 1px solid var(--border-color);
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
}

.header-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
}

.voxmundi-logo {
	max-height: 55px;
	width: auto;
}

.main-navigation ul {
	display: flex;
	list-style: none;
	gap: 24px;
}

.main-navigation a {
	color: var(--text-main);
	font-weight: 600;
	font-size: 15px;
	padding: 10px 0;
}

.main-navigation a:hover,
.main-navigation li.current-menu-item a {
	color: var(--secondary);
}

/* ---- Dropdown submenu (Courses → Languages) ---- */
.main-navigation li {
	position: relative;
}

.main-navigation li.menu-item-has-children > a::after {
	content: '▾';
	font-size: 11px;
	margin-left: 5px;
	display: inline-block;
	transition: transform 0.25s ease;
}

.main-navigation .sub-menu {
	display: block;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 230px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
	border: 1px solid var(--border-color);
	padding: 10px;
	margin: 0;
	flex-direction: column;
	gap: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
	z-index: 200;
}

.main-navigation li.menu-item-has-children:hover > .sub-menu,
.main-navigation li.menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.main-navigation li.menu-item-has-children:hover > a::after {
	transform: rotate(180deg);
}

.main-navigation .sub-menu li {
	margin: 0;
	width: 100%;
}

.main-navigation .sub-menu a {
	display: block;
	padding: 9px 14px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
	color: var(--text-main);
}

.main-navigation .sub-menu a:hover {
	background: var(--bg-light);
	color: var(--secondary);
	transform: none;
}

/* Highlighted "Offers" promo item in the header */
#primary-menu .menu-item-offers > a {
	color: #fff;
	background: linear-gradient(135deg, var(--secondary), var(--accent));
	padding: 8px 16px;
	border-radius: 50px;
	font-weight: 800;
	box-shadow: 0 6px 14px rgba(37, 99, 235, 0.25);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#primary-menu .menu-item-offers > a:hover {
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 10px 20px rgba(37, 99, 235, 0.32);
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
}

.hamburger {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--text-main);
	position: relative;
}

.hamburger::before, .hamburger::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 2px;
	background: var(--text-main);
	left: 0;
}

.hamburger::before { top: -6px; }
.hamburger::after { bottom: -6px; }

/* 3. HERO SECTION */
.hero-section {
	background: radial-gradient(circle at 85% 10%, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
	            radial-gradient(circle at 10% 80%, rgba(37, 99, 235, 0.05) 0%, transparent 40%),
	            #ffffff;
	padding: 100px 0 80px 0;
	border-bottom: 1px solid var(--border-color);
}

.hero-badge {
	background: rgba(37, 99, 235, 0.08);
	color: var(--secondary);
	font-weight: 700;
	font-size: 13px;
	padding: 6px 16px;
	border-radius: 30px;
	display: inline-block;
	margin-bottom: 20px;
}

.hero-title {
	font-size: 52px;
	font-weight: 850;
	color: #0f172a;
	max-width: 850px;
	margin: 0 auto 20px auto;
	line-height: 1.15;
}

.hero-subtitle {
	font-size: 18px;
	color: var(--text-light);
	max-width: 750px;
	margin: 0 auto 35px auto;
}

.hero-ctas {
	display: flex;
	gap: 15px;
	justify-content: center;
	margin-bottom: 60px;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	max-width: 900px;
	margin: 0 auto;
	border-top: 1px solid var(--border-color);
	padding-top: 40px;
}

.stat-card .stat-number {
	font-size: 32px;
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 5px;
}

.stat-card .stat-label {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-light);
}

/* 3B. PREMIUM HERO (front page) ------------------------------------------- */
.hero-premium-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	isolation: isolate;
	padding: 130px 0 70px;
	background:
		linear-gradient(rgba(0, 20, 50, 0.75), rgba(0, 40, 80, 0.65)),
		url('../images/hero-students.jpg') center center / cover no-repeat;
	background-attachment: scroll;
}

/* Subtle world-map dotted texture overlay */
.hero-premium-section::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image: radial-gradient(rgba(255, 255, 255, 0.55) 1.3px, transparent 1.5px);
	background-size: 24px 24px;
	opacity: 0.12;
	-webkit-mask-image: radial-gradient(ellipse 70% 70% at 70% 40%, #000 30%, transparent 78%);
	        mask-image: radial-gradient(ellipse 70% 70% at 70% 40%, #000 30%, transparent 78%);
	pointer-events: none;
}

/* Soft cyan glow accent */
.hero-premium-section::after {
	content: '';
	position: absolute;
	top: -15%;
	right: -10%;
	width: 50vw;
	height: 50vw;
	max-width: 720px;
	max-height: 720px;
	z-index: -1;
	background: radial-gradient(circle, rgba(6, 182, 212, 0.22) 0%, transparent 65%);
	pointer-events: none;
}

.hero-premium-container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
	position: relative;
	z-index: 2;
}

@media (min-width: 992px) {
	.hero-premium-container {
		grid-template-columns: 58% 42%;
		gap: 50px;
	}
}

/* Left content */
.hero-content-left { color: #fff; }

.hero-badge-premium {
	display: inline-block;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.28);
	-webkit-backdrop-filter: blur(6px);
	        backdrop-filter: blur(6px);
	color: #fff;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.4px;
	padding: 8px 18px;
	border-radius: 30px;
	margin-bottom: 22px;
}

.hero-title-premium {
	font-size: clamp(30px, 4.4vw, 50px);
	font-weight: 850;
	line-height: 1.12;
	color: #fff;
	margin-bottom: 18px;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}

.hero-subtitle-premium {
	font-size: clamp(15px, 1.4vw, 18px);
	color: #e2eaf5;
	max-width: 620px;
	margin-bottom: 26px;
	line-height: 1.65;
}

.hero-benefits-list {
	list-style: none;
	padding: 0;
	margin: 0 0 30px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 20px;
}

.hero-benefits-list li {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	font-size: 14.5px;
	font-weight: 500;
	color: #eaf1fb;
}

.hero-benefits-list .chk {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--accent);
	color: #00233a;
	font-size: 12px;
	font-weight: 800;
	margin-top: 1px;
}

.hero-ctas-premium {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 18px;
}

.hero-ctas-premium .btn-primary {
	background: linear-gradient(135deg, #06b6d4 0%, #2563eb 100%);
	border-color: transparent;
	box-shadow: 0 10px 28px rgba(6, 182, 212, 0.35);
}

.hero-ctas-premium .btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 34px rgba(6, 182, 212, 0.45);
}

.btn-whatsapp-hero {
	background: linear-gradient(135deg, #25D366 0%, #1ebe5b 100%);
	border-color: transparent;
	color: #fff;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-hero:hover {
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 14px 34px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-hero .wa-ico { font-size: 18px; line-height: 1; }

.hero-btn-ghost {
	border-color: rgba(255, 255, 255, 0.7);
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	-webkit-backdrop-filter: blur(4px);
	        backdrop-filter: blur(4px);
}

.hero-btn-ghost:hover {
	background: #fff;
	color: var(--primary);
	border-color: #fff;
	transform: translateY(-3px);
}

.hero-trust-line {
	font-size: 14px;
	font-weight: 600;
	color: #ffd277;
	letter-spacing: 0.3px;
	margin-bottom: 30px;
}

.hero-stats-premium {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	padding-top: 26px;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stats-premium .stat-item .num {
	font-size: clamp(20px, 2.4vw, 28px);
	font-weight: 800;
	color: #fff;
	line-height: 1.1;
}

.hero-stats-premium .stat-item .lbl {
	font-size: 12.5px;
	color: #c6d4e8;
	font-weight: 500;
	margin-top: 4px;
}

/* Right glassmorphism form card */
.hero-glass-card {
	background: rgba(255, 255, 255, 0.94);
	-webkit-backdrop-filter: blur(16px);
	        backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 20px;
	padding: 30px 28px;
	box-shadow: 0 30px 60px rgba(0, 15, 40, 0.35);
	animation: heroFloat 6s ease-in-out infinite;
}

.glass-form-title {
	font-size: 21px;
	font-weight: 800;
	color: var(--primary);
	text-align: center;
	margin-bottom: 20px;
}

.glass-form-title::after {
	content: '';
	display: block;
	width: 54px;
	height: 3px;
	margin: 10px auto 0;
	border-radius: 3px;
	background: linear-gradient(90deg, #06b6d4, #2563eb);
}

.hero-glass-card .form-radio-group {
	display: flex;
	gap: 8px;
}

.hero-glass-card .radio-inline {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	font-size: 13px;
	cursor: pointer;
	margin: 0;
	flex: 1;
	padding: 9px 12px;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	background: #fafafa;
	transition: var(--transition);
}

.hero-glass-card .radio-inline input { width: auto; margin: 0; }

.hero-glass-card .radio-inline:has(input:checked) {
	border-color: var(--secondary);
	background: rgba(37, 99, 235, 0.08);
	color: var(--secondary);
}

/* Floating decorative bubbles */
.floating-bubble {
	display: none !important;
}

.bubble-1 { top: 18%;  left: 6%;   animation-delay: 0s;   }
.bubble-2 { top: 70%;  left: 12%;  animation-delay: 1.2s; font-size: 28px; }
.bubble-3 { top: 30%;  left: 50%;  animation-delay: 2.1s; font-size: 26px; }
.bubble-4 { top: 80%;  left: 46%;  animation-delay: 0.6s; }
.bubble-5 { top: 12%;  right: 4%;  animation-delay: 1.8s; }
.bubble-6 { bottom: 8%; right: 8%; animation-delay: 2.6s; font-size: 30px; }

/* Entrance + float animations */
.animate-fade-in { animation: heroFadeInLeft 0.9s cubic-bezier(0.22, 1, 0.36, 1) both; }
.animate-slide-in { animation: heroSlideInRight 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both; }

@keyframes heroFadeInLeft {
	from { opacity: 0; transform: translateX(-40px); }
	to   { opacity: 1; transform: translateX(0); }
}

@keyframes heroSlideInRight {
	from { opacity: 0; transform: translateX(45px); }
	to   { opacity: 1; transform: translateX(0); }
}

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

/* Success popup modal */
.vx-popup-overlay {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(3, 18, 41, 0.6);
	-webkit-backdrop-filter: blur(4px);
	        backdrop-filter: blur(4px);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

.vx-popup-overlay.active { opacity: 1; visibility: visible; }

.vx-popup-card {
	background: #fff;
	border-radius: 20px;
	max-width: 420px;
	width: 100%;
	padding: 38px 30px 30px;
	text-align: center;
	box-shadow: 0 30px 70px rgba(0, 15, 40, 0.4);
	transform: translateY(20px) scale(0.96);
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.vx-popup-overlay.active .vx-popup-card { transform: translateY(0) scale(1); }

.vx-popup-icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 18px;
	border-radius: 50%;
	background: linear-gradient(135deg, #06b6d4, #22c55e);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 38px;
	color: #fff;
	animation: heroPopIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroPopIn {
	from { transform: scale(0.4); opacity: 0; }
	60%  { transform: scale(1.12); }
	to   { transform: scale(1); opacity: 1; }
}

.vx-popup-card h3 { font-size: 22px; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.vx-popup-card p  { color: var(--text-light); font-size: 15px; margin-bottom: 22px; }
.vx-popup-close   { min-width: 140px; }

@media (prefers-reduced-motion: reduce) {
	.animate-fade-in, .animate-slide-in, .floating-bubble,
	.hero-glass-card, .vx-popup-icon { animation: none !important; }
	.hero-premium-section { background-attachment: scroll; }
}

/* ==========================================================================
   LANGUAGE COURSE LANDING PAGES (13 languages)
   ========================================================================== */
.lang-hero {
	background:
		linear-gradient(rgba(0, 20, 50, 0.75), rgba(0, 40, 80, 0.65)),
		linear-gradient(135deg, var(--lang-from, #0f172a) 0%, var(--lang-to, #1e3a8a) 100%);
}

.lang-hero::before {
	opacity: 0.15;
}

.lang-hero .hero-ctas-premium .btn-primary {
	background: linear-gradient(135deg, var(--lang-accent, #06b6d4) 0%, var(--secondary) 100%);
	box-shadow: 0 10px 28px color-mix(in srgb, var(--lang-accent, #06b6d4) 35%, transparent);
}

.lang-hero .chk {
	background: var(--lang-accent, var(--accent));
}

.lang-course-readonly {
	background: #f0f4f8 !important;
	color: var(--primary);
	font-weight: 700;
	cursor: default;
}

.lang-split {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 40px;
	align-items: start;
}

.lang-overview-text {
	font-size: 16px;
	line-height: 1.75;
	color: var(--text-light);
	margin-top: 1rem;
}

.lang-highlight-card {
	padding: 28px;
	border-left: 4px solid var(--accent);
}

.lang-highlight-card h3 {
	font-family: Manrope, sans-serif;
	font-size: 1.1rem;
	margin-bottom: 1rem;
	color: var(--primary);
}

.lang-checklist {
	list-style: none;
	padding: 0;
}

.lang-checklist li {
	padding: 8px 0;
	border-bottom: 1px solid var(--border-color);
	font-size: 14.5px;
	color: var(--text-main);
}

.lang-checklist li:last-child { border-bottom: 0; }

.lang-levels-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 24px;
}

.lang-level-card {
	padding: 24px;
	position: relative;
	overflow: hidden;
}

.lang-level-badge {
	display: inline-block;
	color: #fff;
	font-weight: 800;
	font-size: 13px;
	padding: 4px 14px;
	border-radius: 20px;
	margin-bottom: 12px;
}

.lang-level-duration {
	display: block;
	font-size: 13px;
	color: var(--text-light);
	margin: 6px 0 10px;
}

.lang-curriculum-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 24px;
}

.lang-curriculum-card {
	padding: 24px;
}

.lang-curriculum-card h3 {
	font-size: 1rem;
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 12px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--accent);
}

.lang-curriculum-card ul {
	list-style: none;
	padding: 0;
}

.lang-curriculum-card li {
	padding: 6px 0 6px 20px;
	position: relative;
	font-size: 14px;
	color: var(--text-main);
}

.lang-curriculum-card li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--accent);
	font-weight: 700;
}

.lang-careers-section {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.lang-careers-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	max-width: 900px;
	margin: 0 auto;
}

.lang-career-pill span {
	display: inline-block;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	padding: 10px 20px;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 600;
	transition: var(--transition);
}

.lang-career-pill span:hover {
	background: rgba(6, 182, 212, 0.25);
	border-color: var(--accent);
	transform: translateY(-2px);
}

.lang-cert-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 24px;
}

.lang-cert-card {
	padding: 24px;
	text-align: center;
}

.lang-cert-icon { font-size: 2rem; margin-bottom: 10px; }

.lang-cert-card h3 {
	font-size: 1rem;
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 8px;
}

.lang-cert-card p {
	font-size: 13.5px;
	color: var(--text-light);
	line-height: 1.55;
}

.lang-modes-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.lang-mode-card {
	padding: 28px;
	text-align: center;
}

.lang-mode-icon { font-size: 2.5rem; margin-bottom: 12px; }

.lang-mode-card h3 {
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 8px;
}

.lang-batch-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.lang-batch-table th,
.lang-batch-table td {
	padding: 14px 16px;
	text-align: left;
	border-bottom: 1px solid var(--border-color);
}

.lang-batch-table th {
	background: var(--bg-light);
	font-weight: 700;
	color: var(--primary);
}

.lang-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 24px;
}

@media (max-width: 991px) {
	.lang-split { grid-template-columns: 1fr; }
	.lang-modes-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   HOME — OUR FEATURES
   ========================================================================== */
.home-features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}
.home-feature-card {
	position: relative;
	background: #fff;
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 28px 22px;
	text-align: left;
	transition: var(--transition);
	overflow: hidden;
}
.home-feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--primary), var(--accent));
	transition: width 0.35s ease;
}
.home-feature-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 40px rgba(15, 76, 129, 0.12);
	border-color: transparent;
}
.home-feature-card:hover::before { width: 100%; }
.hf-icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.7rem;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.12));
	margin-bottom: 16px;
}
.home-feature-card h3 {
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--primary);
	margin: 0 0 8px;
}
.home-feature-card p {
	font-size: 14px;
	line-height: 1.6;
	color: var(--text-light);
	margin: 0;
}
.home-features-cta { margin-top: 40px; }

@media (max-width: 991px) {
	.home-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.home-features-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   HOME — LATEST BLOGS & RESOURCES
   ========================================================================== */
.home-blog-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}
.home-blog-card {
	display: flex;
	flex-direction: column;
	padding: 0;
	overflow: hidden;
	text-decoration: none;
	transition: var(--transition);
}
.home-blog-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 40px rgba(15, 76, 129, 0.14);
}
.hb-thumb {
	position: relative;
	height: 130px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #0f4c81 0%, #06b6d4 100%);
	overflow: hidden;
}
.hb-thumb img { width: 100%; height: 100%; object-fit: cover; }
.hb-thumb-emoji { font-size: 2.6rem; }
.hb-cat {
	position: absolute;
	top: 10px;
	left: 10px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--primary);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 4px 10px;
	border-radius: 20px;
}
.hb-body { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1 1 auto; }
.hb-date { font-size: 12px; color: var(--text-light); margin-bottom: 6px; }
.hb-title {
	font-size: 15px;
	font-weight: 700;
	color: var(--primary);
	line-height: 1.4;
	margin: 0 0 14px;
	flex: 1 1 auto;
}
.hb-readmore { font-size: 13px; font-weight: 700; color: var(--accent); }
.home-blog-card:hover .hb-readmore { color: var(--secondary); }
.home-blog-cta { margin-top: 40px; }

@media (max-width: 991px) {
	.home-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.home-blog-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MODERN BLOG LISTING (index.php / blog page)
   ============================================================ */
.blog-hero { margin-bottom: 0; }

/* Category filter chips */
.blog-filter {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 36px;
}
.blog-chip {
	display: inline-flex;
	align-items: center;
	padding: 8px 18px;
	border-radius: 50px;
	font-size: 13.5px;
	font-weight: 700;
	color: var(--primary);
	background: #fff;
	border: 1px solid var(--border-color);
	text-decoration: none;
	transition: var(--transition);
}
.blog-chip:hover,
.blog-chip.is-active {
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
	transform: translateY(-2px);
}

/* Grid */
.blog-modern-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

/* Card */
.blog-post-card {
	display: flex;
	flex-direction: column;
	padding: 0;
	overflow: hidden;
	border-radius: var(--radius);
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.blog-post-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 22px 46px rgba(15, 76, 129, 0.16);
}
.bpc-thumb {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 200px;
	background: linear-gradient(135deg, #0f4c81 0%, #06b6d4 100%);
	overflow: hidden;
	text-decoration: none;
}
.bpc-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-post-card:hover .bpc-thumb img { transform: scale(1.06); }
.bpc-emoji { font-size: 3.4rem; }
.bpc-cat {
	position: absolute;
	top: 14px;
	left: 14px;
	background: rgba(255, 255, 255, 0.95);
	color: var(--primary);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	padding: 5px 12px;
	border-radius: 30px;
}
.bpc-body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: 22px 22px 24px;
}
.bpc-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	font-size: 12.5px;
	color: var(--text-light);
	margin-bottom: 10px;
}
.bpc-title {
	font-size: 19px;
	font-weight: 800;
	line-height: 1.35;
	margin: 0 0 10px;
}
.bpc-title a { color: var(--primary); text-decoration: none; transition: var(--transition); }
.bpc-title a:hover { color: var(--secondary); }
.bpc-excerpt {
	font-size: 14.5px;
	color: var(--text-light);
	line-height: 1.65;
	margin: 0 0 18px;
	flex: 1 1 auto;
}
.bpc-readmore {
	align-self: flex-start;
	font-size: 14px;
	font-weight: 800;
	color: var(--secondary);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.bpc-readmore .arrow { transition: transform 0.3s ease; }
.blog-post-card:hover .bpc-readmore .arrow { transform: translateX(5px); }

/* Featured lead post spans the full row */
.blog-post-card.is-featured {
	grid-column: 1 / -1;
	flex-direction: row;
}
.blog-post-card.is-featured .bpc-thumb {
	flex: 0 0 50%;
	height: auto;
	min-height: 320px;
}
.blog-post-card.is-featured .bpc-body {
	justify-content: center;
	padding: 36px 40px;
}
.blog-post-card.is-featured .bpc-title { font-size: 26px; }
.blog-post-card.is-featured .bpc-excerpt { font-size: 15.5px; }

/* Pagination */
.blog-pagination { margin-top: 44px; }
.blog-pagination .nav-links {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
}
.blog-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 14px;
	border-radius: 10px;
	font-weight: 700;
	color: var(--primary);
	background: #fff;
	border: 1px solid var(--border-color);
	text-decoration: none;
	transition: var(--transition);
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
}
.blog-pagination .page-numbers.dots { background: transparent; border: none; }

@media (max-width: 991px) {
	.blog-modern-grid { grid-template-columns: repeat(2, 1fr); }
	.blog-post-card.is-featured { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
	.blog-modern-grid { grid-template-columns: 1fr; gap: 22px; }
	.blog-post-card.is-featured { flex-direction: column; }
	.blog-post-card.is-featured .bpc-thumb { flex-basis: auto; min-height: 200px; height: 200px; }
	.blog-post-card.is-featured .bpc-body { padding: 22px; }
	.blog-post-card.is-featured .bpc-title { font-size: 21px; }
}

/* International Exams Preparation strip (language page) */
.lang-exams-strip {
	background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
	border-bottom: 1px solid var(--border-color);
	padding: 44px 0;
}
.lang-exams-head { text-align: center; margin-bottom: 28px; }
.lang-exams-eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 8px;
}
.lang-exams-head h2 { font-size: 1.7rem; color: var(--primary); margin: 0 0 6px; }
.lang-exams-head p { color: var(--text-light); margin: 0; font-size: 15px; }

.lang-exams-logos {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 18px;
}
.lang-exam-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #fff;
	border: 1px solid var(--border-color);
	border-radius: 14px;
	padding: 12px 20px 12px 12px;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
}
.lang-exam-logo:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(15, 76, 129, 0.14);
	border-color: var(--accent);
}
.lel-badge {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: linear-gradient(135deg, var(--lel-accent, var(--primary)), var(--primary));
	box-shadow: 0 4px 12px rgba(15, 76, 129, 0.25);
}
.lel-mark { color: #fff; font-weight: 800; font-size: 15px; letter-spacing: 0.5px; }
.lel-name { font-weight: 700; color: var(--primary); font-size: 14.5px; }
.lang-exams-note {
	text-align: center;
	margin: 26px 0 0;
	font-size: 13.5px;
	color: var(--text-light);
}

@media (max-width: 600px) {
	.lang-exams-head h2 { font-size: 1.4rem; }
	.lang-exam-logo { width: 100%; max-width: 320px; }
}

/* Why Choose Us (language page) */
.lang-why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
	gap: 22px;
}
.lang-why-card {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 24px;
}
.lang-why-icon {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
}
.lang-why-body h3 { font-size: 1.05rem; font-weight: 800; color: var(--primary); margin: 0 0 6px; }
.lang-why-body p { font-size: 14px; color: var(--text-light); line-height: 1.6; margin: 0; }

/* Reviews trust bar (language page) */
.lang-reviews-trust {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	max-width: 760px;
	margin: 0 auto 40px;
	padding: 22px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.lrt-item { text-align: center; display: flex; flex-direction: column; }
.lrt-stars { color: #fbbf24; font-size: 13px; letter-spacing: 1px; }
.lrt-value { font-size: 1.7rem; font-weight: 800; color: #fff; line-height: 1.1; }
.lrt-label { font-size: 12px; color: rgba(255, 255, 255, 0.7); margin-top: 2px; }

/* Premium review cards (language page) */
.lang-review-card {
	position: relative;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 16px;
	padding: 28px 26px 24px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
	overflow: hidden;
}
.lang-review-quote {
	position: absolute;
	top: 4px;
	right: 18px;
	font-family: Georgia, serif;
	font-size: 4.5rem;
	line-height: 1;
	color: rgba(15, 76, 129, 0.1);
}
.lang-review-card .stars { color: #fbbf24; font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.lang-review-card .testimonial-text { color: #111111; font-size: 14.5px; line-height: 1.7; margin: 0 0 18px; }
.lang-testimonials-grid .testimonial-text { color: #111111; }
.lang-review-author { display: flex; align-items: center; gap: 12px; }
.lang-review-avatar {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary), var(--accent));
	color: #fff;
	font-weight: 800;
	font-size: 1.1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.lang-review-meta { display: flex; flex-direction: column; line-height: 1.3; }
.lang-review-meta strong { color: var(--primary); font-size: 14.5px; }
.lang-review-meta .author-course { font-size: 12.5px; color: var(--accent); font-weight: 600; }

@media (max-width: 768px) {
	.lang-levels-grid { grid-template-columns: 1fr; }
	.lang-curriculum-grid { grid-template-columns: 1fr; }
	.lang-cert-grid { grid-template-columns: 1fr; }
	.lang-testimonials-grid { grid-template-columns: 1fr; }
	.lang-why-grid { grid-template-columns: 1fr; }
	.lang-reviews-trust { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   ABOUT / CONTACT / STUDY-ABROAD / LEGAL PAGES
   ========================================================================== */

/* Shared inquiry/CTA section */
.inquiry-section { position: relative; overflow: hidden; }
.cta-simple { max-width: 720px; margin: 0 auto; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }

/* ---- About: Our Story ---- */
.about-story-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 48px;
	align-items: center;
}
.about-story-media { position: relative; }
.about-story-media .about-photo-placeholder {
	height: 420px;
	border-radius: 16px;
	background: linear-gradient(135deg, #1e3a8a 0%, #06b6d4 100%);
	box-shadow: 0 20px 50px rgba(15, 76, 129, 0.25);
	overflow: hidden;
}
.about-story-media .about-photo-placeholder.has-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 16px;
}
.about-experience-badge {
	position: absolute;
	right: -16px;
	bottom: -16px;
	background: #fff;
	border-radius: 16px;
	padding: 18px 22px;
	text-align: center;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.about-experience-badge .num { display: block; font-size: 2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.about-experience-badge .lbl { display: block; font-size: 12px; font-weight: 600; color: var(--text-light); margin-top: 4px; }
.about-story-text p { margin-bottom: 1rem; color: var(--text-light); line-height: 1.75; }

/* ---- About: centered prose blocks (Business / Bridge) ---- */
.about-prose {
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
}
.about-prose p {
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 1rem;
	font-size: 16.5px;
}

/* ---- Careers: stats band ---- */
.careers-stats-band {
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	color: #fff;
	padding: 30px 0;
}
.careers-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	text-align: center;
}
.careers-stat .cs-num {
	font-size: 2.4rem;
	font-weight: 800;
	line-height: 1;
}
.careers-stat .cs-lbl {
	font-size: 13.5px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.88);
	margin-top: 8px;
}

/* ---- Careers: perks ---- */
.careers-perks-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}
.career-perk-card {
	text-align: center;
	padding: 34px 26px;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.career-perk-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 22px 46px rgba(15, 76, 129, 0.15);
}
.career-perk-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	font-size: 32px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(15, 76, 129, 0.1) 0%, rgba(6, 182, 212, 0.14) 100%);
	margin-bottom: 18px;
}
.career-perk-card h3 { font-size: 18px; color: var(--primary); margin-bottom: 10px; }
.career-perk-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; margin: 0; }

/* ---- Careers: open positions ---- */
.careers-jobs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
	gap: 26px;
}
.career-job-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 30px 28px 26px;
	background: #fff;
	border: 1px solid rgba(15, 76, 129, 0.08);
	border-radius: 18px;
	box-shadow: 0 6px 20px rgba(15, 76, 129, 0.06);
	overflow: hidden;
	isolation: isolate;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.career-job-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 5px;
	background: linear-gradient(90deg, var(--secondary), var(--accent));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.career-job-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 26px 50px rgba(15, 76, 129, 0.16);
	border-color: rgba(37, 99, 235, 0.25);
}
.career-job-card:hover::before { transform: scaleX(1); }
.career-job-head {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}
.career-job-icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	font-size: 26px;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(15, 76, 129, 0.1) 0%, rgba(6, 182, 212, 0.16) 100%);
	transition: transform 0.4s ease;
}
.career-job-card:hover .career-job-icon { transform: scale(1.08) rotate(-4deg); }
.career-job-head-text { min-width: 0; }
.career-job-title {
	font-size: 19px;
	font-weight: 800;
	color: var(--primary);
	margin: 0;
	line-height: 1.3;
}
.career-job-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 12px;
	margin-top: 10px;
}
.career-tag {
	background: rgba(37, 99, 235, 0.1);
	color: var(--secondary);
	font-size: 12px;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 50px;
	white-space: nowrap;
}
.career-loc {
	font-size: 13px;
	font-weight: 600;
	color: var(--text-light);
	display: inline-flex;
	align-items: center;
	gap: 4px;
}
.career-loc svg { flex-shrink: 0; color: var(--secondary); }
.career-job-desc {
	font-size: 14.5px;
	color: var(--text-light);
	line-height: 1.65;
	flex-grow: 1;
	margin: 0;
}
.career-apply-link {
	align-self: flex-start;
	margin-top: 2px;
	font-size: 14px;
	font-weight: 800;
	color: var(--secondary);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 20px;
	border-radius: 50px;
	background: rgba(37, 99, 235, 0.08);
	transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.career-apply-link:hover {
	background: linear-gradient(135deg, var(--secondary), var(--accent));
	color: #fff;
	box-shadow: 0 10px 22px rgba(37, 99, 235, 0.28);
}
.career-apply-link .arrow { transition: transform 0.3s ease; }
.career-job-card:hover .career-apply-link .arrow { transform: translateX(5px); }

/* ---- Careers: hiring process steps ---- */
.careers-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	position: relative;
}
.career-step { text-align: center; padding: 0 10px; }
.career-step-badge {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 78px;
	height: 78px;
	font-size: 32px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 12px 28px rgba(15, 76, 129, 0.16);
	margin-bottom: 18px;
}
.career-step-num {
	position: absolute;
	top: -6px;
	right: -6px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--accent);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.career-step-title { font-size: 17px; color: var(--primary); margin-bottom: 8px; }
.career-step-desc { font-size: 13.5px; color: var(--text-light); line-height: 1.6; margin: 0; }

@media (max-width: 900px) {
	.careers-perks-grid { grid-template-columns: repeat(2, 1fr); }
	.careers-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 768px) {
	.careers-jobs-grid { grid-template-columns: 1fr; gap: 20px; }
	.careers-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 560px) {
	.careers-perks-grid { grid-template-columns: 1fr; }
	.career-job-card { padding: 24px 20px; }
	.career-job-icon { width: 48px; height: 48px; font-size: 22px; border-radius: 12px; }
	.career-job-title { font-size: 17.5px; }
	.career-apply-link { width: 100%; justify-content: center; }
}

/* ============================================================
   OFFERS PAGE — Group Admission Special Offer
   ============================================================ */
.offer-hero-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
	margin-top: 22px;
}

.offer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	gap: 28px;
	margin-top: 10px;
	align-items: stretch;
}
.offer-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 10px;
	padding: 38px 28px 30px;
	background: #fff;
	border: 1px solid rgba(15, 76, 129, 0.1);
	border-radius: 20px;
	box-shadow: 0 8px 26px rgba(15, 76, 129, 0.07);
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.offer-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 28px 54px rgba(15, 76, 129, 0.16);
	border-color: rgba(37, 99, 235, 0.3);
}
.offer-card--featured {
	border-color: transparent;
	background: linear-gradient(160deg, #0f4c81 0%, #1e3a5f 100%);
	color: #fff;
	box-shadow: 0 24px 50px rgba(15, 76, 129, 0.3);
	transform: translateY(-6px);
}
.offer-card--featured:hover { transform: translateY(-12px); }
.offer-card--featured .offer-card-students,
.offer-card--featured .offer-card-note { color: rgba(255, 255, 255, 0.85); }
.offer-card--featured .offer-card-headline { color: rgba(255, 255, 255, 0.7); }

.offer-ribbon {
	position: absolute;
	top: 16px;
	right: -34px;
	transform: rotate(45deg);
	background: var(--accent);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.5px;
	padding: 6px 40px;
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}
.offer-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	font-size: 34px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(15, 76, 129, 0.1) 0%, rgba(6, 182, 212, 0.16) 100%);
	margin-bottom: 4px;
}
.offer-card--featured .offer-card-icon { background: rgba(255, 255, 255, 0.15); }
.offer-card-students { font-size: 22px; font-weight: 800; color: var(--primary); }
.offer-card-headline {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-light);
}
.offer-card-badge {
	margin: 6px 0;
	font-size: 30px;
	font-weight: 900;
	line-height: 1.1;
	color: var(--secondary);
	background: linear-gradient(135deg, var(--secondary), var(--accent));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.offer-card--featured .offer-card-badge {
	color: #fbbf24;
	background: none;
	-webkit-text-fill-color: #fbbf24;
}
.offer-card-benefit { font-size: 16px; margin: 0; }
.offer-card-note {
	font-size: 13.5px;
	color: var(--text-light);
	line-height: 1.55;
	margin: 0 0 6px;
	flex-grow: 1;
}
.offer-card-cta { margin-top: auto; }
.offer-card--featured .offer-card-cta {
	background: #fbbf24;
	border-color: #fbbf24;
	color: #0f172a;
}
.offer-card--featured .offer-card-cta:hover { background: #f59e0b; border-color: #f59e0b; }

.offer-disclaimer {
	margin-top: 28px;
	font-size: 13px;
	color: var(--text-light);
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}

.offer-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.offer-step { text-align: center; padding: 0 8px; }
.offer-step-badge {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 74px;
	height: 74px;
	font-size: 30px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 12px 28px rgba(15, 76, 129, 0.16);
	margin-bottom: 16px;
}
.offer-step-num {
	position: absolute;
	top: -6px;
	right: -6px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--accent);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.offer-step-title { font-size: 17px; color: var(--primary); margin-bottom: 8px; }
.offer-step-desc { font-size: 13.5px; color: var(--text-light); line-height: 1.6; margin: 0; }

.offer-contact-line {
	margin-top: 18px;
	font-size: 14px;
	color: var(--text-light);
}
.offer-contact-line a { color: var(--secondary); font-weight: 700; text-decoration: none; }
.offer-contact-line a:hover { text-decoration: underline; }

@media (max-width: 900px) {
	.offer-steps { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}
@media (max-width: 560px) {
	.offer-steps { grid-template-columns: 1fr; }
	.offer-card { padding: 32px 22px 26px; }
}

/* ---- About: Word From Our Founder ---- */
.founder-grid {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 48px;
	align-items: center;
}
.founder-media { position: relative; }
.founder-photo {
	width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 20px 50px rgba(15, 76, 129, 0.22);
	display: block;
}
.founder-content p { margin-bottom: 1rem; color: var(--text-light); line-height: 1.75; }
.founder-sign { font-weight: 700; color: var(--primary); }
.founder-sign span { font-weight: 600; color: var(--text-light); }

/* ---- About: Corporate Projects ---- */
.corporate-intro {
	display: grid;
	grid-template-columns: 1.4fr 0.6fr;
	gap: 40px;
	align-items: center;
	margin-bottom: 40px;
}
.corporate-feature img {
	width: 100%;
	height: auto;
	border-radius: 14px;
	box-shadow: 0 14px 34px rgba(15, 76, 129, 0.16);
	display: block;
}
.corporate-gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
.corporate-gallery-item {
	margin: 0;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 22px rgba(15, 76, 129, 0.1);
	aspect-ratio: 3 / 2;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.corporate-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.corporate-gallery-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 38px rgba(15, 76, 129, 0.2);
}

@media (max-width: 900px) {
	.founder-grid { grid-template-columns: 1fr; gap: 28px; }
	.founder-media { max-width: 420px; }
	.corporate-intro { grid-template-columns: 1fr; gap: 24px; }
	.corporate-gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
	.corporate-gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ---- About: Languages grid ---- */
.about-languages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 14px;
}
.about-lang-chip {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 16px;
	background: #fff;
	border: 1px solid var(--border-color);
	border-radius: 12px;
	text-decoration: none;
	transition: var(--transition);
}
.about-lang-chip:hover {
	transform: translateY(-3px);
	border-color: var(--accent);
	box-shadow: 0 10px 24px rgba(6, 182, 212, 0.15);
}
.about-lang-chip .flag { font-size: 1.5rem; }
.about-lang-chip .name { font-weight: 700; color: var(--primary); font-size: 14.5px; }

/* About: featured language cards */
.about-featured-langs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 40px;
}
.about-featured-lang {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 30px 20px;
	text-decoration: none;
	transition: var(--transition);
	border: 1px solid var(--border-color);
}
.about-featured-lang:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 40px rgba(15, 76, 129, 0.15);
	border-color: var(--accent);
}
.about-featured-lang .afl-flag { font-size: 3rem; line-height: 1; margin-bottom: 12px; }
.about-featured-lang .afl-name { font-size: 1.25rem; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.about-featured-lang .afl-link { font-size: 13.5px; font-weight: 700; color: var(--accent); }
.about-others-label { text-align: center; color: var(--text-light); font-weight: 600; margin-bottom: 16px; }

@media (max-width: 768px) {
	.about-featured-langs { grid-template-columns: 1fr 1fr; gap: 14px; }
}
@media (max-width: 480px) {
	.about-featured-langs { grid-template-columns: 1fr; }
}

/* ---- Mission & Vision ---- */
.mission-vision-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}
.mission-card, .vision-card { padding: 36px; }
.mission-card { border-top: 4px solid var(--primary); }
.vision-card { border-top: 4px solid var(--accent); }
.mv-icon { font-size: 2.4rem; display: block; margin-bottom: 12px; }
.mission-card h3, .vision-card h3 { font-size: 1.4rem; color: var(--primary); margin-bottom: 10px; }
.mission-card p, .vision-card p { color: var(--text-light); line-height: 1.7; }

/* ---- About stats ---- */
.about-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	text-align: center;
}
.about-stat-num {
	font-size: 2.8rem;
	font-weight: 800;
	background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1;
}
.about-stat-lbl { margin-top: 8px; font-size: 14px; font-weight: 600; color: rgba(255, 255, 255, 0.85); }

/* ---- Contact page ---- */
.contact-page-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}
.contact-intro { color: var(--text-light); margin-bottom: 1.5rem; }
.contact-info-cards { display: grid; gap: 16px; }
.contact-info-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px 22px;
}
.contact-info-card .ci-icon { font-size: 1.8rem; flex-shrink: 0; }
.contact-info-card strong { display: block; color: var(--primary); font-size: 15px; margin-bottom: 2px; }
.contact-info-card a, .contact-info-card span { color: var(--text-light); font-size: 14.5px; text-decoration: none; }
.contact-info-card a:hover { color: var(--accent); }

.contact-map-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 32px;
	align-items: stretch;
}
.contact-map-wrap {
	min-height: 380px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--shadow-md);
}
.contact-map-wrap iframe { display: block; width: 100%; height: 100%; min-height: 380px; }
.office-hours-card { padding: 32px; display: flex; flex-direction: column; }
.office-hours-card .oh-icon { font-size: 2.2rem; }
.office-hours-card h3 { font-size: 1.4rem; color: var(--primary); margin: 8px 0 16px; }
.office-hours-list { list-style: none; padding: 0; margin: 0; }
.office-hours-list li {
	display: flex;
	justify-content: space-between;
	padding: 12px 0;
	border-bottom: 1px solid var(--border-color);
	font-size: 14.5px;
}
.office-hours-list li:last-child { border-bottom: 0; }
.office-hours-list span { color: var(--text-light); }
.office-hours-list strong { color: var(--primary); }

/* ---- Study abroad (Korea) ---- */
.study-hero--korea {
	background:
		linear-gradient(rgba(8, 15, 40, 0.78), rgba(20, 30, 70, 0.7)),
		linear-gradient(135deg, #0f172a 0%, #3730a3 60%, #06b6d4 100%);
}
.korea-process-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 24px;
}
.korea-process-card { padding: 28px; position: relative; }
.korea-process-card .kp-num {
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--accent);
	opacity: 0.4;
	line-height: 1;
}
.korea-process-card h3 { font-size: 1.1rem; color: var(--primary); margin: 8px 0 6px; }
.korea-process-card p { font-size: 14px; color: var(--text-light); margin: 0; line-height: 1.6; }

/* ---- Legal pages (Privacy / Terms) ---- */
.legal-hero { padding: 60px 0; }
.legal-layout {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 40px;
	align-items: start;
}
.legal-toc {
	padding: 24px;
	position: sticky;
	top: 100px;
}
.legal-toc h3 { font-size: 1rem; color: var(--primary); margin-bottom: 14px; }
.legal-toc ul { list-style: none; padding: 0; margin: 0; }
.legal-toc li { margin-bottom: 8px; }
.legal-toc a {
	color: var(--text-light);
	text-decoration: none;
	font-size: 14px;
	display: block;
	padding: 4px 0;
	transition: var(--transition);
}
.legal-toc a:hover { color: var(--accent); padding-left: 4px; }
.legal-content { padding: 40px 48px; }
.legal-updated { color: var(--text-light); font-size: 14px; margin-bottom: 1rem; }
.legal-intro { color: var(--text-light); line-height: 1.75; margin-bottom: 2rem; font-size: 16px; }
.legal-section { margin-bottom: 2rem; scroll-margin-top: 100px; }
.legal-section h2 {
	font-size: 1.3rem;
	color: var(--primary);
	margin-bottom: 10px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--bg-light);
}
.legal-section p { color: var(--text-light); line-height: 1.8; margin: 0; }

@media (max-width: 991px) {
	.about-story-grid { grid-template-columns: 1fr; gap: 60px; }
	.about-experience-badge { right: 16px; }
	.mission-vision-grid { grid-template-columns: 1fr; }
	.contact-page-grid { grid-template-columns: 1fr; gap: 32px; }
	.contact-map-grid { grid-template-columns: 1fr; }
	.about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
	.legal-layout { grid-template-columns: 1fr; }
	.legal-toc { position: static; }
}

@media (max-width: 768px) {
	.about-languages-grid { grid-template-columns: repeat(2, 1fr); }
	.korea-process-grid { grid-template-columns: 1fr; }
	.legal-content { padding: 28px 22px; }
	.about-stat-num { font-size: 2.2rem; }
}

/* ==========================================================================
   STUDENT SUCCESS STORIES — PREMIUM REVIEW CAROUSEL
   ========================================================================== */
.reviews-section {
	background:
		radial-gradient(1200px 400px at 50% -10%, rgba(37, 99, 235, 0.06), transparent 70%),
		#ffffff;
}

/* Trust indicators */
.reviews-trust-bar {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	max-width: 880px;
	margin: 0 auto 48px;
	padding: 24px 28px;
	background: #fff;
	border: 1px solid var(--border-color);
	border-radius: 18px;
	box-shadow: 0 12px 40px rgba(15, 76, 129, 0.08);
}
.reviews-trust-bar .trust-item { text-align: center; position: relative; }
.reviews-trust-bar .trust-item:not(:last-child)::after {
	content: '';
	position: absolute;
	right: -10px;
	top: 50%;
	transform: translateY(-50%);
	height: 40px;
	width: 1px;
	background: var(--border-color);
}
.trust-stars { color: #fbbf24; font-size: 14px; letter-spacing: 1px; margin-bottom: 2px; }
.trust-value {
	font-size: 1.9rem;
	font-weight: 800;
	color: var(--primary);
	line-height: 1.1;
}
.trust-label { font-size: 12.5px; font-weight: 600; color: var(--text-light); margin-top: 4px; }

/* Carousel shell */
.reviews-carousel {
	display: flex;
	align-items: center;
	gap: 12px;
	position: relative;
}
.reviews-viewport { overflow: hidden; flex: 1 1 auto; padding: 10px 0; }
.reviews-track {
	display: flex;
	--per-view: 3;
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}
.review-card {
	flex: 0 0 calc(100% / var(--per-view, 3));
	max-width: calc(100% / var(--per-view, 3));
	padding: 12px;
	box-sizing: border-box;
}

/* Glassmorphism review card */
.review-card-inner {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 30px 28px 26px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid rgba(255, 255, 255, 0.85);
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
	overflow: hidden;
}
.review-card-inner::before {
	content: '';
	position: absolute;
	inset: 0 0 auto 0;
	height: 4px;
	background: linear-gradient(90deg, var(--primary), var(--accent));
}
.review-card-inner:hover {
	transform: translateY(-8px);
	box-shadow: 0 22px 48px rgba(15, 76, 129, 0.18);
}
.review-quote-mark {
	position: absolute;
	top: 6px;
	right: 22px;
	font-size: 5rem;
	line-height: 1;
	font-family: Georgia, 'Times New Roman', serif;
	color: rgba(37, 99, 235, 0.1);
	pointer-events: none;
}
.review-stars { color: #fbbf24; font-size: 17px; letter-spacing: 2px; margin-bottom: 14px; }
.review-text {
	color: #111111;
	font-size: 15px;
	line-height: 1.7;
	flex: 1 1 auto;
	margin: 0 0 20px;
}
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--primary), var(--accent));
	box-shadow: 0 6px 16px rgba(15, 76, 129, 0.25);
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.review-avatar-initial { color: #fff; font-weight: 800; font-size: 1.3rem; }
.review-author-meta { display: flex; flex-direction: column; line-height: 1.3; }
.review-author-name { font-weight: 700; color: var(--primary); font-size: 15px; }
.review-author-course { font-size: 13px; color: var(--accent); font-weight: 600; }

/* Arrows */
.reviews-arrow {
	flex: 0 0 auto;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid var(--border-color);
	background: #fff;
	color: var(--primary);
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 18px rgba(15, 23, 42, 0.1);
	transition: var(--transition);
}
.reviews-arrow:hover {
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
	transform: scale(1.06);
}

/* Dots */
.reviews-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 26px;
}
.reviews-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 0;
	padding: 0;
	background: #cbd5e1;
	cursor: pointer;
	transition: var(--transition);
}
.reviews-dot.is-active {
	background: var(--primary);
	width: 28px;
	border-radius: 6px;
}

/* CTA */
.reviews-cta { text-align: center; margin-top: 48px; }
.reviews-cta h3 {
	font-size: 1.7rem;
	color: var(--primary);
	margin-bottom: 22px;
}
.reviews-cta-buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

@media (max-width: 991px) {
	.reviews-trust-bar { grid-template-columns: repeat(2, 1fr); gap: 24px; }
	.reviews-trust-bar .trust-item:nth-child(2)::after { display: none; }
}

@media (max-width: 600px) {
	.reviews-arrow { display: none; }
	.reviews-trust-bar { grid-template-columns: 1fr 1fr; padding: 22px 18px; }
	.reviews-trust-bar .trust-item::after { display: none !important; }
	.trust-value { font-size: 1.5rem; }
	.reviews-cta h3 { font-size: 1.35rem; }
	.reviews-cta-buttons .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
	.reviews-track { transition: none; }
	.review-card-inner:hover { transform: none; }
}

/* 4. COURSE GRID SECTION */
.courses-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 30px;
}

.course-card {
	display: flex;
	flex-direction: column;
}

.course-card-header {
	background: linear-gradient(135deg, rgba(15, 76, 129, 0.03) 0%, rgba(37, 99, 235, 0.03) 100%);
	padding: 24px;
	border-bottom: 1px solid var(--border-color);
}

.course-flag {
	font-size: 68px;
	line-height: 1.1;
	display: block;
	margin-bottom: 14px;
}

.course-title {
	font-size: 20px;
	font-weight: 800;
	color: var(--primary);
}

.course-card-body {
	padding: 24px;
	flex-grow: 1;
}

.course-excerpt {
	font-size: 14px;
	color: var(--text-light);
	margin-bottom: 20px;
}

.course-meta-list {
	list-style: none;
	padding: 0;
	font-size: 13px;
}

.course-meta-list li {
	margin-bottom: 8px;
}

.course-card-footer {
	padding: 20px 24px;
	border-top: 1px solid var(--border-color);
}

/* 4.b POPULAR COURSES */
.popular-courses-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.popular-course-card {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 22px 24px;
	border-radius: 14px;
	border: 1px solid var(--border-color);
	background: #fff;
	text-decoration: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.popular-course-card:hover {
	transform: translateY(-4px);
	border-color: var(--secondary);
	box-shadow: 0 14px 30px rgba(15, 76, 129, 0.12);
}

.popular-course-card .pc-flag {
	font-size: 50px;
	line-height: 1;
	flex-shrink: 0;
}

.popular-course-card .pc-info {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.popular-course-card .pc-name {
	font-size: 18px;
	font-weight: 800;
	color: var(--primary);
}

.popular-course-card .pc-desc {
	font-size: 14px;
	color: var(--text-light);
	margin-top: 4px;
}

.popular-course-card .pc-arrow {
	font-size: 22px;
	color: var(--secondary);
	flex-shrink: 0;
	transition: transform 0.25s ease;
}

.popular-course-card:hover .pc-arrow {
	transform: translateX(5px);
}

.popular-courses-cta {
	margin-top: 40px;
}

@media (max-width: 768px) {
	.popular-courses-grid { grid-template-columns: 1fr; }
}

/* 5. BENEFITS GRID (Why Choose Us) */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.benefit-card {
	padding: 30px;
}

.benefit-icon {
	font-size: 32px;
	margin-bottom: 15px;
}

.benefit-card h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 10px;
}

.benefit-card p {
	font-size: 14px;
	color: var(--text-light);
}

/* 6. ABOUT SECTION */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 50px;
	align-items: center;
}

.about-image-container {
	position: relative;
}

.about-photo-placeholder {
	height: 400px;
	background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
}

.about-photo-placeholder .about-photo-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: var(--radius);
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-image-container:hover .about-photo-img {
	transform: scale(1.05);
}

.about-experience-badge {
	position: absolute;
	bottom: -20px;
	right: -20px;
	background-color: var(--primary);
	color: var(--white);
	padding: 20px;
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	display: flex;
	flex-direction: column;
	text-align: center;
	z-index: 10;
}

.about-experience-badge .exp-num {
	font-size: 28px;
	font-weight: 800;
	color: var(--accent);
}

.about-experience-badge .exp-text {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-top: 4px;
}

.about-checklist {
	list-style: none;
	padding: 0;
	margin: 20px 0;
}

.about-checklist li {
	margin-bottom: 10px;
	font-weight: 600;
	color: var(--primary);
}

/* 7. TESTIMONIALS SLIDER */
.testimonials-section {
	padding: 90px 0;
	position: relative;
	overflow: hidden;
}

.testimonials-slider-container {
	max-width: 750px;
	margin: 0 auto;
	position: relative;
}

.testimonials-track {
	display: flex;
	transition: var(--transition);
}

.testimonial-slide {
	min-width: 100%;
	flex-shrink: 0;
	background-color: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.1);
	backdrop-filter: blur(10px);
	padding: 40px;
	text-align: center;
	box-shadow: none;
}

.testimonial-slide .stars {
	color: #f59e0b;
	font-size: 20px;
	margin-bottom: 20px;
}

/* ---- Testimonials page: responsive grid + course filter tabs ---- */
.testimonials-grid-page {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 26px;
	margin-top: 28px;
}
.testimonials-grid-page .testimonial-slide {
	min-width: 0;
	flex-shrink: initial;
	background: #fff;
	border: 1px solid rgba(15, 76, 129, 0.08);
	border-radius: 16px;
	box-shadow: 0 6px 20px rgba(15, 76, 129, 0.06);
	backdrop-filter: none;
	padding: 28px;
	text-align: left;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.testimonials-grid-page .testimonial-slide:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(15, 76, 129, 0.14);
}
.testimonials-grid-page .testimonial-text {
	font-size: 15px;
	color: #111111;
	margin-bottom: 18px;
}
.testimonial-filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: 8px 0 4px;
}
.tfilter {
	font-family: inherit;
	font-size: 13.5px;
	font-weight: 700;
	color: var(--primary);
	background: #eef2f7;
	border: 1px solid transparent;
	border-radius: 50px;
	padding: 8px 18px;
	cursor: pointer;
	transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.tfilter:hover { background: #e0e7f1; transform: translateY(-1px); }
.tfilter.is-active {
	background: linear-gradient(135deg, var(--secondary), var(--accent));
	color: #fff;
	box-shadow: 0 8px 18px rgba(37, 99, 235, 0.28);
}
.testimonials-empty { color: var(--text-light); font-size: 16px; margin-top: 30px; }
@media (max-width: 600px) {
	.testimonials-grid-page { grid-template-columns: 1fr; }
	.tfilter { font-size: 12.5px; padding: 7px 14px; }
}

.testimonial-text {
	font-size: 18px;
	color: #e2e8f0;
	line-height: 1.7;
	font-style: italic;
	margin-bottom: 30px;
}

.author-details h4 {
	font-size: 16px;
	font-weight: 700;
	color: var(--white);
}

.author-details .author-course {
	font-size: 13px;
	color: var(--accent);
	font-weight: 600;
}

.slider-controls {
	margin-top: 30px;
	display: flex;
	justify-content: center;
	gap: 15px;
}

.btn-slider {
	background-color: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.15);
	color: var(--white);
	width: 45px;
	height: 45px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}

.btn-slider:hover {
	background-color: var(--accent);
	border-color: var(--accent);
	color: #0f172a;
}

/* 8. FACULTY / TRAINERS HIGHLIGHTS */
.trainers-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.trainer-card {
	padding: 30px 20px;
}

.trainer-avatar-placeholder {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(37,99,235,0.1) 0%, rgba(6,182,212,0.1) 100%);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--border-color);
}

.avatar-letter {
	font-size: 36px;
	font-weight: 800;
	color: var(--primary);
}

.trainer-specialization {
	color: var(--secondary);
	font-weight: 700;
	font-size: 13px;
	display: block;
	margin-bottom: 5px;
}

.trainer-experience {
	font-size: 12px;
	color: var(--text-light);
	font-weight: 600;
}

/* 9. PLACEMENT PARTNERS */
.placement-logos-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
	margin-top: 30px;
}

.placement-logo {
	font-size: 15px;
	font-weight: 700;
	color: var(--text-light);
	background: var(--white);
	border: 1px solid var(--border-color);
	padding: 12px 24px;
	border-radius: 30px;
	box-shadow: var(--shadow-sm);
}

/* 10. FAQ ACCORDION */
.faq-container {
	max-width: 1080px;
}

.faq-accordion-wrapper {
	margin-top: 30px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 48px;
	align-items: start;
}

.faq-item {
	border-bottom: 1px solid var(--border-color);
	margin-bottom: 15px;
}

@media (max-width: 768px) {
	.faq-accordion-wrapper { grid-template-columns: 1fr; column-gap: 0; }
}

.faq-trigger {
	width: 100%;
	background: none;
	border: none;
	text-align: left;
	padding: 18px 0;
	font-size: 17px;
	font-weight: 700;
	color: var(--primary);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-icon-arrow {
	font-size: 20px;
	font-weight: 300;
	color: var(--text-light);
	transition: var(--transition);
}

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

.faq-content p {
	padding-bottom: 18px;
	color: var(--text-light);
	font-size: 14px;
	line-height: 1.6;
}

/* Active FAQ Item styling */
.faq-item.active .faq-content {
	max-height: 200px;
}

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

/* 11. INQUIRY / LEAD GENERATION FORM */
.inquiry-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 50px;
	align-items: center;
}

.inquiry-badge {
	background-color: rgba(255,255,255,0.1);
	color: var(--accent);
	font-weight: 700;
	font-size: 12px;
	padding: 5px 12px;
	border-radius: 30px;
	display: inline-block;
	margin-bottom: 15px;
}

.inquiry-contact-quick {
	margin-top: 40px;
}

.inquiry-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 20px;
}

.inquiry-contact-item .ico {
	font-size: 24px;
}

.inquiry-form-card {
	padding: 40px;
	border: none;
	box-shadow: var(--shadow-lg);
}

.form-group {
	margin-bottom: 20px;
}

.form-group.sm {
	margin-bottom: 12px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

label {
	display: block;
	font-weight: 700;
	font-size: 13px;
	margin-bottom: 6px;
	color: var(--text-main);
}

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
	width: 100%;
	padding: 12px;
	border-radius: 8px;
	border: 1px solid var(--border-color);
	font-family: var(--font-main);
	font-size: 14px;
	transition: var(--transition);
	background-color: #fafafa;
}

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

.required {
	color: var(--error);
}

.form-status {
	margin-top: 15px;
	font-size: 13px;
	font-weight: 600;
	text-align: center;
}

.form-status.success { color: var(--success); }
.form-status.error { color: var(--error); }

/* 12. COURSE SINGLE PAGE STYLES */
.course-header {
	padding: 60px 0;
	margin-bottom: 50px;
}

.course-hero-title {
	font-size: 40px;
	font-weight: 850;
	margin: 15px 0;
}

.course-quick-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	font-size: 14px;
	margin-top: 20px;
	border-top: 1px solid rgba(255,255,255,0.15);
	padding-top: 20px;
}

.course-layout-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 40px;
	align-items: start;
	margin-bottom: 80px;
}

.course-section {
	padding: 30px;
	margin-bottom: 30px;
}

.course-section h2 {
	color: var(--primary);
	font-weight: 800;
	font-size: 22px;
	margin-bottom: 20px;
	border-left: 4px solid var(--secondary);
	padding-left: 12px;
}

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

.syllabus-list li {
	margin-bottom: 12px;
	font-size: 15px;
}

.benefits-checklist-grid {
	list-style: none;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}

.benefits-checklist-grid li {
	font-size: 14px;
	font-weight: 600;
}

.benefits-checklist-grid .check-icon {
	color: var(--success);
	font-weight: 800;
	margin-right: 8px;
}

/* Sidebar Sticky card */
.sidebar-sticky-card {
	border: 1px solid var(--border-color);
	box-shadow: var(--shadow-lg);
	position: sticky;
	top: 100px;
}

.sidebar-price-section {
	background: linear-gradient(135deg, rgba(37,99,235,0.05) 0%, rgba(6,182,212,0.05) 100%);
	padding: 24px;
	text-align: center;
	border-bottom: 1px solid var(--border-color);
}

.price-value {
	font-size: 32px;
	font-weight: 850;
	color: var(--primary);
	margin: 5px 0;
}

.sidebar-info-rows {
	padding: 24px;
	border-bottom: 1px solid var(--border-color);
}

.info-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 12px;
	font-size: 13px;
}

.info-row:last-child { margin-bottom: 0; }
.info-row .row-label { font-weight: 600; color: var(--text-light); }
.info-row .row-value { font-weight: 700; color: var(--text-main); }

.sidebar-form-container {
	padding: 24px;
}

/* 13. SCHEDULE TABLE & TABS */
.schedule-tabs-container {
	max-width: 900px;
	margin: 0 auto;
}

.schedule-table {
	width: 100%;
	border-collapse: collapse;
}

.schedule-table th,
.schedule-table td {
	padding: 16px 20px;
	text-align: left;
	border-bottom: 1px solid var(--border-color);
}

.schedule-table th {
	background-color: var(--primary);
	color: var(--white);
	font-weight: 700;
}

.schedule-table tbody tr:hover {
	background-color: #f1f5f9;
}

.active-tab-btn {
	box-shadow: 0 4px 10px rgba(15, 76, 129, 0.2);
}

/* 14. BLOG LAYOUTS */
.blog-layout-grid {
	display: grid;
	grid-template-columns: 2.2fr 1fr;
	gap: 40px;
	align-items: start;
}

.blog-grid-two-cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.widget {
	box-shadow: var(--shadow-sm);
}

.page-header {
	padding: 50px 0;
	margin-bottom: 40px;
}

/* 14.b SITE FOOTER styling — Premium dark-blue + gold accent */
:root {
	--footer-bg: #0B1F3A;
	--footer-bg-2: #07172c;
	--footer-gold: #f4b740;
	--footer-text: #b6c2d4;
	--footer-heading: #ffffff;
}

.site-footer {
	background: linear-gradient(180deg, #0d2546 0%, var(--footer-bg) 45%, var(--footer-bg-2) 100%);
	color: var(--footer-text);
	font-size: 14px;
	position: relative;
	z-index: 10;
}

/* ---- Top CTA band ---- */
.footer-cta {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(37, 99, 235, 0.35) 0%, rgba(11, 31, 58, 0.85) 60%),
		var(--footer-bg);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='600' viewBox='0 0 1200 600'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='100' cy='120' r='2'/%3E%3Ccircle cx='160' cy='160' r='2'/%3E%3Ccircle cx='220' cy='120' r='2'/%3E%3Ccircle cx='280' cy='180' r='2'/%3E%3Ccircle cx='340' cy='140' r='2'/%3E%3Ccircle cx='420' cy='200' r='2'/%3E%3Ccircle cx='500' cy='150' r='2'/%3E%3Ccircle cx='560' cy='220' r='2'/%3E%3Ccircle cx='640' cy='160' r='2'/%3E%3Ccircle cx='720' cy='240' r='2'/%3E%3Ccircle cx='800' cy='180' r='2'/%3E%3Ccircle cx='880' cy='260' r='2'/%3E%3Ccircle cx='960' cy='200' r='2'/%3E%3Ccircle cx='1040' cy='280' r='2'/%3E%3Ccircle cx='1120' cy='220' r='2'/%3E%3Ccircle cx='140' cy='340' r='2'/%3E%3Ccircle cx='260' cy='400' r='2'/%3E%3Ccircle cx='380' cy='360' r='2'/%3E%3Ccircle cx='520' cy='420' r='2'/%3E%3Ccircle cx='660' cy='380' r='2'/%3E%3Ccircle cx='820' cy='440' r='2'/%3E%3Ccircle cx='980' cy='400' r='2'/%3E%3Ccircle cx='1100' cy='460' r='2'/%3E%3C/g%3E%3C/svg%3E");
	background-size: cover;
	opacity: 0.7;
	pointer-events: none;
}
.footer-cta-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding: 54px 0;
	flex-wrap: wrap;
}
.footer-cta-text { flex: 1 1 460px; }
.footer-cta-text h2 {
	color: var(--footer-heading);
	font-size: 2rem;
	font-weight: 800;
	margin: 0 0 10px;
	line-height: 1.2;
}
.footer-cta-text p { color: rgba(255, 255, 255, 0.82); margin: 0; max-width: 640px; line-height: 1.65; }
.footer-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Gold + outline buttons (footer) */
.btn-gold {
	background: linear-gradient(135deg, #f7c14b 0%, var(--footer-gold) 100%);
	color: #1a1300;
	font-weight: 800;
	border: none;
	box-shadow: 0 10px 26px rgba(244, 183, 64, 0.3);
}
.btn-gold:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 32px rgba(244, 183, 64, 0.42);
	color: #1a1300;
}
.btn-outline-light {
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.btn-outline-light:hover {
	background: #fff;
	color: var(--footer-bg);
	border-color: #fff;
}

/* ---- Main 4-column grid ---- */
.footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
	gap: 44px;
	padding: 68px 0 50px;
}

.footer-widget h3 {
	color: var(--footer-heading);
	font-size: 17px;
	font-weight: 800;
	margin-bottom: 24px;
	position: relative;
	padding-bottom: 12px;
	letter-spacing: 0.4px;
}

.footer-widget h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 38px;
	height: 3px;
	background-color: var(--footer-gold);
	border-radius: 2px;
}

.footer-logo-text { font-weight: 800; font-size: 24px; color: #fff; letter-spacing: 0.5px; }
.footer-logo img { max-height: 52px; width: auto; }

.footer-desc {
	line-height: 1.75;
	margin: 16px 0 22px;
	font-size: 14px;
}

.footer-contact-list {
	list-style: none;
	padding: 0;
	margin: 0 0 22px;
}
.footer-contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 12px;
	line-height: 1.55;
}
.footer-contact-list .fc-ico { color: var(--footer-gold); flex-shrink: 0; }
.footer-contact-list a, .footer-contact-list span { color: var(--footer-text); text-decoration: none; transition: var(--transition); }
.footer-contact-list a:hover { color: var(--footer-gold); }

.social-icons { display: flex; gap: 10px; flex-wrap: wrap; }
.social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: var(--transition);
}
.social-icon:hover {
	background-color: var(--footer-gold);
	border-color: var(--footer-gold);
	color: #1a1300;
	transform: translateY(-3px);
	box-shadow: 0 8px 18px rgba(244, 183, 64, 0.35);
}

.footer-widget ul { list-style: none; padding: 0; margin: 0; }
.footer-widget ul li { margin-bottom: 11px; }
.footer-widget ul li a {
	color: var(--footer-text);
	text-decoration: none;
	transition: var(--transition);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	position: relative;
}
.footer-widget ul li a::before {
	content: '›';
	color: var(--footer-gold);
	opacity: 0;
	margin-right: -10px;
	transition: var(--transition);
}
.footer-widget ul li a:hover {
	color: #fff;
	transform: translateX(4px);
}
.footer-widget ul li a:hover::before { opacity: 1; margin-right: 0; }

/* Two-column list for the 13 language courses */
.footer-links-columns { columns: 1; }

/* Quick links + newsletter column */
.quicklinks-widget nav { margin-bottom: 30px; }

.footer-newsletter h4 {
	color: var(--footer-heading);
	font-size: 15px;
	font-weight: 800;
	margin: 0 0 8px;
}
.footer-newsletter p { font-size: 13px; line-height: 1.6; margin: 0 0 14px; }

.vx-newsletter-form .newsletter-field {
	display: flex;
	gap: 8px;
	padding: 6px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}
.vx-newsletter-form input[type="email"] {
	flex: 1 1 auto;
	background: transparent;
	border: none;
	outline: none;
	color: #fff;
	padding: 10px 12px;
	font-size: 14px;
	min-width: 0;
}
.vx-newsletter-form input[type="email"]::placeholder { color: rgba(255, 255, 255, 0.55); }
.vx-newsletter-form .btn-gold { padding: 10px 18px; white-space: nowrap; }
.newsletter-status { font-size: 13px; margin-top: 10px; min-height: 18px; }
.newsletter-status.success { color: #4ade80; }
.newsletter-status.error { color: #fca5a5; }

/* ---- Trust & achievements ---- */
.footer-trust {
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	background: rgba(0, 0, 0, 0.18);
}
.footer-trust-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px 36px;
	padding: 28px 0;
}
.footer-trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14.5px;
	font-weight: 600;
	color: #e2e8f0;
}
.footer-trust-item .ft-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--footer-gold);
	color: #1a1300;
	font-size: 13px;
	font-weight: 800;
	flex-shrink: 0;
}

/* ---- Bottom bar ---- */
.footer-bottom { padding: 24px 0; }
.footer-bottom-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 14px;
	font-size: 13px;
	color: #8295ad;
	flex-wrap: wrap;
}
.footer-bottom-flex .copyright,
.footer-bottom-flex .footer-tagline { margin: 0; }
.footer-tagline { text-align: center; flex: 1 1 auto; color: #a7b6c9; }
.footer-bottom-links { display: flex; align-items: center; gap: 8px; }
.footer-bottom-links a { color: #8295ad; text-decoration: none; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--footer-gold); }
.footer-bottom-links span { color: #43536b; }

/* ---- Sticky floating WhatsApp ---- */
.vx-whatsapp-float {
	position: fixed;
	right: 22px;
	bottom: 26px;
	z-index: 998;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #25D366;
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	padding: 13px 18px;
	border-radius: 50px;
	box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
	transition: var(--transition);
	animation: vxWaPulse 2.4s infinite;
}
.vx-whatsapp-float:hover { transform: translateY(-3px) scale(1.03); color: #fff; }
.vx-whatsapp-float .vx-wa-icon { font-size: 20px; line-height: 1; }

@keyframes vxWaPulse {
	0% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
	70% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 16px rgba(37, 211, 102, 0); }
	100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 991px) {
	.footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
	.footer-cta-text h2 { font-size: 1.65rem; }
	.footer-trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
	.footer-grid { grid-template-columns: 1fr; gap: 38px; padding: 48px 0 36px; }

	/* Center footer columns and their content on mobile */
	.footer-widget { text-align: center; }
	.footer-widget h3 { padding-bottom: 14px; }
	.footer-widget h3::after { left: 50%; transform: translateX(-50%); }
	.footer-widget ul { padding: 0; }
	.footer-contact-list li { justify-content: center; text-align: left; }
	.footer-logo { display: flex; justify-content: center; }
	.social-icons { justify-content: center; }
	.footer-newsletter .newsletter-field { justify-content: center; }

	.footer-cta-inner { padding: 40px 0; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 24px; }
	/* Reset desktop flex-basis (460px) which becomes a tall height in column mode */
	.footer-cta-text { flex: 0 0 auto; width: 100%; }
	.footer-cta-actions { width: 100%; }
	.footer-cta-actions .btn { flex: 1 1 auto; text-align: center; }
	.footer-trust-grid { grid-template-columns: 1fr; gap: 14px; }
	.footer-bottom-flex { flex-direction: column; text-align: center; }
	.footer-tagline { order: 3; }
	/* Lift floating WhatsApp above the mobile sticky bar */
	.vx-whatsapp-float { bottom: 76px; right: 16px; padding: 12px 14px; }
	.vx-whatsapp-float .vx-wa-label { display: none; }
	.vx-whatsapp-float .vx-wa-icon { font-size: 22px; }
}

@media (prefers-reduced-motion: reduce) {
	.vx-whatsapp-float { animation: none; }
}

/* 15. MOBILE STICKY CTA BAR */
.sticky-cta-container {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	display: flex;
	z-index: 999;
	box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
}

.sticky-cta {
	flex: 1;
	padding: 16px;
	text-align: center;
	color: var(--white);
	font-weight: 700;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-transform: uppercase;
}

.call-cta { background-color: var(--primary); }
.whatsapp-cta { background-color: #22c55e; }

/* 16. RESPONSIVE MEDIA QUERIES */
@media (min-width: 769px) {
	.sticky-cta-container {
		display: none; /* Hide sticky bar on desktop */
	}
}

@media (max-width: 991px) {
	.hero-title { font-size: 40px; }
	.hero-stats { grid-template-columns: repeat(2, 1fr); }
	.benefits-grid { grid-template-columns: repeat(2, 1fr); }
	.trainers-grid { grid-template-columns: repeat(2, 1fr); }
	.about-grid { grid-template-columns: 1fr; gap: 30px; }
	.inquiry-grid { grid-template-columns: 1fr; gap: 30px; }
	.course-layout-grid { grid-template-columns: 1fr; }
	.blog-layout-grid { grid-template-columns: 1fr; }

	/* Premium hero: stack content above form */
	.hero-premium-section { min-height: auto; padding: 110px 0 60px; }
	.hero-content-left { text-align: center; }
	.hero-benefits-list { max-width: 560px; margin-left: auto; margin-right: auto; text-align: left; }
	.hero-ctas-premium { justify-content: center; }
}

@media (max-width: 768px) {
	.top-bar { display: none; }
	.header-flex { height: 70px; }
	.header-cta { display: none; }
	
	/* Navigation Toggle */
	.menu-toggle { display: block; }
	
	.main-navigation ul {
		display: none; /* Hide standard menu list */
		flex-direction: column;
		position: absolute;
		top: 70px;
		left: 0;
		width: 100%;
		background-color: var(--white);
		border-bottom: 1px solid var(--border-color);
		box-shadow: var(--shadow-lg);
		padding: 20px;
		gap: 15px;
		max-height: calc(100vh - 70px);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
	
	.main-navigation.active ul {
		display: flex;
	}

	/* Mobile: show submenu as a static, indented list */
	.main-navigation .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: none;
		padding: 6px 0 6px 14px;
		min-width: 0;
		border-left: 2px solid var(--border-color);
		margin-left: 6px;
	}
	.main-navigation li.menu-item-has-children > a::after { content: ''; }
	
	.hero-section { padding: 60px 0 50px 0; }
	.hero-title { font-size: 32px; }
	.hero-ctas { flex-direction: column; gap: 10px; width: 100%; max-width: 320px; margin: 0 auto 35px auto; }
	.hero-stats { grid-template-columns: 1fr 1fr; gap: 15px; padding-top: 30px; }
	.section { padding: 30px 0; }

	/* Premium hero mobile */
	.hero-premium-section { padding: 45px 0 50px; }
	.hero-benefits-list { grid-template-columns: 1fr; }
	.hero-stats-premium { grid-template-columns: 1fr 1fr; gap: 14px; }
	.hero-ctas-premium { flex-direction: column; }
	.hero-ctas-premium .btn { width: 100%; }
	.hero-glass-card { padding: 24px 18px; animation: none; }
	.floating-bubble { display: none; }
	.section-title { font-size: 28px; }
	
	.courses-grid { grid-template-columns: 1fr; }
	.benefits-grid { grid-template-columns: 1fr; }
	.trainers-grid { grid-template-columns: 1fr; }
	.blog-grid-two-cols { grid-template-columns: 1fr; }
	.benefits-checklist-grid { grid-template-columns: 1fr; }
	
	.inquiry-form-card { padding: 25px 15px; }
	.form-row { grid-template-columns: 1fr; gap: 0; }
	
	.schedule-table { display: block; overflow-x: auto; }
	body { padding-bottom: 60px; /* Space for sticky CTAs */ }

	/* Tighter container gutters on phones */
	.container { padding: 0 16px; }

	/* Collapse remaining two/multi-column layouts */
	.lang-split { grid-template-columns: 1fr; }
	.lang-modes-row { grid-template-columns: 1fr; }
	.lang-levels-grid,
	.lang-curriculum-grid,
	.lang-cert-grid,
	.lang-testimonials-grid,
	.korea-process-grid { grid-template-columns: 1fr; }
	.contact-page-grid,
	.contact-map-grid { grid-template-columns: 1fr; }
	.mission-vision-grid { grid-template-columns: 1fr; }
	.legal-layout { grid-template-columns: 1fr; }
	.legal-toc { position: static; }

	/* Any wide table scrolls horizontally instead of breaking layout */
	.lang-batch-table-wrap,
	.lang-batch-table { display: block; overflow-x: auto; width: 100%; }
	table { display: block; overflow-x: auto; white-space: normal; }

	/* Section heading sizes */
	.page-title { font-size: 30px; }
	.footer-cta-text h2 { font-size: 1.5rem; }
}

/* ==========================================================================
   SMALL PHONES (≤ 480px)
   ========================================================================== */
@media (max-width: 480px) {
	.container { padding: 0 14px; }

	.section { padding: 24px 0; }
	.section-title { font-size: 24px; }
	.section-desc { font-size: 14px; }

	/* Single-column stats / trust bars on very small screens */
	.hero-stats-premium { grid-template-columns: 1fr 1fr; gap: 12px; }
	.about-stats-grid { grid-template-columns: 1fr 1fr; }
	.reviews-trust-bar { grid-template-columns: 1fr 1fr; }
	.lang-reviews-trust { grid-template-columns: 1fr 1fr; }

	/* Hero */
	.hero-title-premium { font-size: 26px; }
	.hero-subtitle-premium { font-size: 15px; }
	.hero-badge-premium { font-size: 12px; }
	.hero-glass-card { padding: 20px 14px; }

	/* Buttons go full width and comfortable tap target */
	.btn-lg { padding: 14px 22px; font-size: 15px; }

	/* Cards: reduce inner padding */
	.card { padding: 20px 16px; }
	.review-card-inner { padding: 24px 20px; }
	.lang-why-card { flex-direction: row; padding: 18px; }
	.benefit-card { padding: 22px 18px; }

	/* Trust / achievements full width */
	.footer-trust-grid { grid-template-columns: 1fr; }

	/* Headings */
	.page-title { font-size: 26px; }
	.reviews-cta h3 { font-size: 1.25rem; }

	/* Footer CTA buttons stack full width */
	.footer-cta-actions { flex-direction: column; width: 100%; }
	.footer-cta-actions .btn { width: 100%; }

	/* Newsletter field stacks */
	.vx-newsletter-form .newsletter-field { flex-direction: column; }
	.vx-newsletter-form .btn-gold { width: 100%; }

	/* Tables already scroll; reduce font */
	.lang-batch-table, .schedule-table { font-size: 13px; }

	/* About page: new sections tuned for small phones */
	.founder-sign { font-size: 14px; }
	.founder-photo { max-height: 460px; object-fit: cover; }
	.about-prose p { font-size: 15px; line-height: 1.7; }
	.corporate-gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }

	/* Country flags stay prominent but balanced on small cards */
	.course-flag,
	.popular-course-card .pc-flag { font-size: 56px; }
}

/* ============================================================
   SCROLL REVEAL ANIMATION ENGINE (Intersection Observer driven)
   - Premium, smooth, GPU-friendly (opacity + transform only)
   - Initial hidden state is only applied via [data-reveal], which
     is added by JS. If JS is off, content shows normally (SEO-safe).
   ============================================================ */
[data-reveal] {
	opacity: 0;
	transform: translateY(42px);
	transition:
		opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--reveal-delay, 0s);
	will-change: opacity, transform;
}

[data-reveal="down"]  { transform: translateY(-32px); }
[data-reveal="left"]  { transform: translateX(-48px); }
[data-reveal="right"] { transform: translateX(48px); }
[data-reveal="zoom"]  { transform: scale(0.92); }
[data-reveal="fade"]  { transform: none; }

[data-reveal].is-visible {
	opacity: 1;
	transform: translate(0, 0) scale(1);
}

/* Once the reveal has played, drop will-change to free the compositor. */
[data-reveal].reveal-done {
	will-change: auto;
}

/* ---- Gradient text reveal for primary headings (skip white-on-dark) ---- */
.section-title.has-gradient,
.section-header[data-reveal] .section-title:not(.color-white) {
	background: linear-gradient(100deg, var(--primary) 0%, var(--secondary) 55%, var(--primary) 100%);
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}
.section-header[data-reveal].is-visible .section-title:not(.color-white) {
	animation: vxGradientShift 6s ease-in-out infinite alternate;
}
@keyframes vxGradientShift {
	0%   { background-position: 0% center; }
	100% { background-position: 100% center; }
}

/* ---- Universal hover polish ---- */
.course-card,
.benefit-card,
.home-feature-card,
.trainer-card,
.home-blog-card,
.review-card-inner,
.lang-why-card,
.lang-level-card,
.lang-cert-card,
.lang-curriculum-card {
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.35s ease, border-color 0.35s ease;
}
.course-card:hover,
.benefit-card:hover,
.home-feature-card:hover,
.trainer-card:hover,
.home-blog-card:hover,
.lang-why-card:hover,
.lang-level-card:hover,
.lang-cert-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 22px 45px rgba(15, 76, 129, 0.14);
}

/* Icon gentle zoom on card hover */
.benefit-card .benefit-icon,
.home-feature-card .home-feature-icon,
.benefit-card .benefit-icon i {
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.benefit-card:hover .benefit-icon,
.home-feature-card:hover .home-feature-icon {
	transform: scale(1.12);
}

/* Blog "read more" arrow slide */
.home-blog-card .blog-readmore,
.home-blog-card .read-more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.home-blog-card .blog-readmore .arrow,
.home-blog-card .read-more .arrow {
	transition: transform 0.3s ease;
}
.home-blog-card:hover .blog-readmore .arrow,
.home-blog-card:hover .read-more .arrow {
	transform: translateX(5px);
}

/* Button micro-interaction (scale + shadow lift) */
.btn {
	transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn:hover {
	transform: translateY(-2px) scale(1.04);
	box-shadow: 0 14px 28px rgba(15, 76, 129, 0.22);
}
.btn:active {
	transform: translateY(0) scale(0.99);
}

/* Floating language flags on course cards */
.course-flag,
.popular-course-card .pc-flag {
	display: inline-block;
	animation: vxFlagFloat 4.5s ease-in-out infinite;
}
@keyframes vxFlagFloat {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-7px); }
}

/* Count-up numbers shouldn't reflow layout while ticking */
[data-count] { font-variant-numeric: tabular-nums; }

/* Respect users who prefer less motion: show everything, no movement */
@media (prefers-reduced-motion: reduce) {
	[data-reveal] {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
	.section-header[data-reveal].is-visible .section-title { animation: none; }
	.course-flag,
	.popular-course-card .pc-flag { animation: none; }
	.btn:hover { transform: none; }
}
