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

:root {
	/* Exact Logo Colors */
	--primary: #34b5fa; /* Logo Sky Blue */
	--primary-hover: #0d91d9;
	--primary-glow: rgba(52, 181, 250, 0.14);
	--primary-glow-heavy: rgba(52, 181, 250, 0.28);

	--secondary: #ffdb52; /* Logo Yellow */
	--secondary-hover: #e8b900;
	--secondary-glow: rgba(255, 219, 82, 0.18);
	--secondary-glow-heavy: rgba(255, 219, 82, 0.34);

	--tertiary: #32ce88; /* Logo Green */
	--tertiary-hover: #16a56b;
	--tertiary-glow: rgba(50, 206, 136, 0.16);
	--tertiary-glow-heavy: rgba(50, 206, 136, 0.32);

	--coral: #ffdb52; /* Legacy accent now maps to logo yellow */
	--coral-hover: #c99500;
	--coral-glow: rgba(255, 219, 82, 0.18);
	--coral-glow-heavy: rgba(255, 219, 82, 0.34);

	/* Legacy/Compatibility Mappings */
	--primary-light: #1ba4eb;
	--white: #ffffff;
	--dark: #0f172a;
	--light: #fbfbfe;
	--gray-50: #f9fafb;
	--gray-100: #f3f4f6;
	--gray-200: #e5e7eb;
	--gray-300: #d1d5db;
	--gray-500: #6b7280;
	--gray-600: #475569;
	--gray-800: #1e293b;

	/* Premium Light Theme Backgrounds */
	--bg-darker: #eaf7ff; /* Bright light blue base */
	--bg-dark: #f7fbff; /* Fresh page canvas */
	--bg-card: #ffffff; /* Pure white cards */
	--bg-card-hover: #ffffff;
	--border-glass: rgba(0, 0, 0, 0.06); /* Frosted light border */
	--border-glass-hover: rgba(0, 0, 0, 0.12);

	/* Text Shades (Light Theme) */
	--text-white: #0f172a; /* Headings: Deep Charcoal */
	--text-light: #1e293b; /* Subheadings */
	--text-secondary: #475569; /* Body text: slate gray */
	--text-muted: #64748b; /* Muted text */

	--font-body: "Plus Jakarta Sans", sans-serif;
	--font-heading: "Plus Jakarta Sans", sans-serif;

	/* Shadows & Radii */
	--shadow-sm: 0 3px 12px rgba(15, 23, 42, 0.06);
	--shadow-md: 0 14px 34px -14px rgba(15, 23, 42, 0.13);
	--shadow-lg: 0 24px 54px -20px rgba(15, 23, 42, 0.18);
	--shadow-neon-blue: 0 12px 24px -8px rgba(52, 181, 250, 0.36);
	--shadow-neon-yellow: 0 12px 24px -8px rgba(255, 219, 82, 0.38);
	--shadow-neon-green: 0 12px 24px -8px rgba(50, 206, 136, 0.36);
	--shadow-neon-coral: 0 12px 24px -8px rgba(255, 219, 82, 0.4);

	--radius-sm: 8px;
	--radius-md: 16px;
	--radius-lg: 24px;
	--radius-xl: 32px;
	--radius-full: 9999px;

	--transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
	--transition-slow: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base resets & styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

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

body {
	font-family: var(--font-body);
	background: linear-gradient(180deg, #f7fbff 0%, #ffffff 42%, #f1fff8 100%);
	color: var(--text-secondary);
	line-height: 1.625;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	color: var(--text-white);
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: 0;
}

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

ul {
	list-style: none;
}

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

.container {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
	z-index: 2;
}

.section {
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.section-bg-white,
.section-bg-light {
	background-color: var(--bg-dark);
}

.section-bg-white {
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.98),
		rgba(247, 251, 255, 0.94)
	);
}

.section-bg-light {
	background: linear-gradient(
		135deg,
		rgba(52, 181, 250, 0.1) 0%,
		rgba(50, 206, 136, 0.09) 52%,
		rgba(255, 219, 82, 0.12) 100%
	);
}

/* Modern ambient glowing blobs - soft watercolor style in light mode */
.blob {
	position: absolute;
	border-radius: var(--radius-full);
	filter: blur(140px);
	z-index: 0;
	opacity: 0.08; /* Lower opacity for subtle light watercolor look */
	pointer-events: none;
}

.blob-1 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, var(--primary) 0%, transparent 80%);
	top: -10%;
	right: -100px;
}

.blob-2 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, var(--tertiary) 0%, transparent 80%);
	bottom: -10%;
	left: -200px;
}

.blob-3 {
	width: 450px;
	height: 450px;
	background: radial-gradient(circle, var(--secondary) 0%, transparent 80%);
	top: 35%;
	right: 5%;
}

/* Subtle border dividers with laser glow dot */
.line-accent {
	width: 100%;
	height: 1px;
	background: linear-gradient(
		to right,
		transparent,
		var(--border-glass),
		transparent
	);
	position: absolute;
	left: 0;
	overflow: hidden;
}

.line-accent::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 80px;
	height: 100%;
	background: linear-gradient(90deg, transparent, var(--primary), transparent);
	animation: laserTravel 6s infinite linear;
}

@keyframes laserTravel {
	0% {
		left: -10%;
	}
	100% {
		left: 110%;
	}
}

.line-accent-top {
	top: 0;
}
.line-accent-bottom {
	bottom: 0;
}

/* Hide retired playful wave SVGs */
.wave-divider {
	display: none !important;
}

/* Sticky Premium Glassmorphism Header */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: rgba(251, 251, 254, 0.8);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border-glass);
	padding: 12px 0;
	transition: var(--transition);
}

header::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 2px;
	background: linear-gradient(
		90deg,
		var(--primary),
		var(--tertiary),
		var(--secondary),
		var(--primary)
	);
	opacity: 0.72;
}

header.scrolled {
	box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
	background-color: rgba(255, 255, 255, 0.95);
	padding: 8px 0;
	border-bottom-color: rgba(0, 0, 0, 0.08);
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 6px 0;
}

.logo-container {
	display: flex;
	align-items: center;
	gap: 12px;
}

.logo-img {
	height: 46px;
	width: auto;
	object-fit: contain;
	filter: drop-shadow(0 2px 4px rgba(52, 181, 250, 0.1));
	transition: var(--transition);
}

.logo-text {
	display: flex;
	flex-direction: column;
}

.logo-title {
	font-size: 22px;
	font-weight: 900;
	color: var(--text-white);
	background: linear-gradient(
		135deg,
		var(--primary-hover),
		var(--tertiary-hover)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	letter-spacing: 0;
	line-height: 1;
}

.logo-subtitle {
	font-size: 9px;
	text-transform: uppercase;
	color: var(--secondary-hover);
	letter-spacing: 1.5px;
	font-weight: 800;
	margin-top: 3px;
}

/* Nav Link Hover line draw */
.nav-links {
	position: fixed;
	top: 72px;
	left: 0;
	width: 100%;
	height: calc(100vh - 72px);
	background-color: var(--bg-card);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 40px 24px;
	gap: 16px;
	box-shadow: var(--shadow-lg);
	transform: translateX(-100%);
	transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	z-index: 999;
	overflow-y: auto;
	border-right: 1px solid var(--border-glass);
}

.nav-links.active {
	transform: translateX(0);
}

.nav-link {
	font-weight: 700;
	color: var(--text-secondary);
	font-size: 16px;
	padding: 10px 16px;
	width: 100%;
	border-radius: var(--radius-md);
	position: relative;
}

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

.nav-cta {
	display: none; /* Hidden on mobile */
}

/* Hamburger button */
.hamburger {
	display: block;
	cursor: pointer;
	background: none;
	border: none;
	padding: 8px;
	z-index: 1001;
}

.hamburger span {
	display: block;
	width: 24px;
	height: 2px;
	background-color: var(--text-white);
	margin: 6px 0;
	transition: var(--transition);
	border-radius: var(--radius-full);
}

/* Dropdown Accordion for Mobile */
.nav-item-dropdown {
	position: relative;
	width: 100%;
}

.nav-link.dropdown-toggle::after {
	content: " ▾";
	font-size: 11px;
	display: inline-block;
	transition: var(--transition);
}

.dropdown-menu {
	display: none;
	background-color: rgba(0, 0, 0, 0.02);
	margin-top: 6px;
	padding: 6px 0 6px 12px;
	border-left: 2px solid var(--primary);
	min-width: auto;
	border-radius: 0;
	box-shadow: none;
	position: static;
}

.nav-item-dropdown.active-dropdown .dropdown-menu {
	display: block;
}

.dropdown-item {
	display: block;
	padding: 8px 16px;
	font-size: 14px;
	font-weight: 600;
	color: var(--text-secondary);
}

.dropdown-item:hover {
	color: var(--primary-hover);
}

/* Modern High-End Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: var(--radius-full);
	font-weight: 700;
	font-size: 14px;
	border: 1px solid transparent;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: var(--transition);
	box-shadow: var(--shadow-sm);
	z-index: 1;
}

.btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.04);
	opacity: 0;
	transition: var(--transition);
	z-index: -1;
}

.btn:hover::before {
	opacity: 1;
}

.btn:active {
	transform: translateY(1px);
}

.btn-primary {
	background-color: var(--primary);
	color: var(--white);
	border-color: var(--primary);
	font-weight: 800;
}

.btn-primary:hover {
	box-shadow: var(--shadow-neon-blue);
	transform: translateY(-2px);
}

.btn-secondary {
	background: var(--bg-card);
	border-color: rgba(52, 181, 250, 0.22);
	color: var(--text-white);
}

.btn-secondary:hover {
	border-color: var(--primary);
	color: var(--primary-hover);
	transform: translateY(-2px);
	box-shadow: var(--shadow-sm);
}

.btn-tertiary {
	background-color: var(--tertiary);
	color: var(--white);
	border-color: var(--tertiary);
	font-weight: 800;
}

.btn-tertiary:hover {
	box-shadow: var(--shadow-neon-green);
	transform: translateY(-2px);
}

.btn-coral {
	background-color: var(--secondary);
	color: var(--dark);
	border-color: rgba(255, 219, 82, 0.82);
	font-weight: 800;
}

.btn-coral:hover {
	box-shadow:
		var(--shadow-neon-yellow),
		0 12px 24px -10px rgba(50, 206, 136, 0.42);
	transform: translateY(-2px);
}

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

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

.btn-whatsapp {
	background-color: #10b981;
	border-color: #10b981;
	color: var(--white);
}

.btn-whatsapp-icon {
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	border-radius: var(--radius-full);
	object-fit: cover;
	background: #ffffff;
	box-shadow: 0 1px 4px rgba(15, 23, 42, 0.12);
}

.btn-whatsapp:hover {
	background-color: #059669;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

/* Hero Section (Premium light gradient backdrop) */
.hero {
	padding: 140px 0 80px;
	position: relative;
	background-image:
		linear-gradient(
			to bottom,
			rgba(251, 251, 254, 0.8) 0%,
			rgba(243, 244, 246, 0.97) 100%
		),
		url("../images/hero_bg.png");
	background-size: cover;
	background-position: center;
	color: var(--text-white);
	text-align: center;
	border-bottom: 1px solid var(--border-glass);
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(
		circle at center,
		rgba(52, 181, 250, 0.06) 0%,
		transparent 60%
	);
	pointer-events: none;
}

.hero-content {
	max-width: 100%;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.hero-badge {
	display: inline-block;
	padding: 8px 16px;
	background-color: rgba(52, 181, 250, 0.08);
	border: 1px solid rgba(52, 181, 250, 0.2);
	color: var(--primary-hover);
	font-weight: 800;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: var(--radius-full);
	margin-bottom: 24px;
}

.hero-title {
	font-size: 38px;
	font-weight: 900;
	color: var(--text-white);
	margin-bottom: 20px;
	line-height: 1.15;
	letter-spacing: 0;
}

.hero-title span {
	background: linear-gradient(
		135deg,
		var(--primary-hover) 0%,
		var(--primary) 36%,
		var(--tertiary) 72%,
		var(--secondary-hover) 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	filter: drop-shadow(0 2px 4px rgba(52, 181, 250, 0.08));
}

.hero-subtitle {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-secondary);
	margin-bottom: 24px;
	line-height: 1.4;
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}

.hero-desc {
	font-size: 15px;
	color: var(--text-secondary);
	margin-bottom: 36px;
	max-width: 680px;
	margin-left: auto;
	margin-right: auto;
}

.hero-ctas {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: center;
}

.hero-ctas .btn {
	width: 100%;
	max-width: 290px;
}

/* Section Header styling */
.section-header {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 60px;
}

.section-subtitle {
	color: var(--primary-hover);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 12px;
	margin-bottom: 12px;
	display: block;
}

.section-title {
	font-size: 28px;
	font-weight: 900;
	color: var(--text-white);
	letter-spacing: 0;
	line-height: 1.2;
}

.section-header-line {
	width: 86px;
	height: 4px;
	background: linear-gradient(
		to right,
		var(--primary),
		var(--tertiary),
		var(--secondary)
	);
	margin: 16px auto 0;
	border-radius: var(--radius-full);
	box-shadow: 0 8px 20px -10px rgba(52, 181, 250, 0.9);
}

/* Split Columns (Glass Cards side-by-side) */
.about-split,
.profile-section,
.contact-split {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	align-items: center;
}

.about-img-container {
	position: relative;
	order: 2;
}

.about-img-container::before {
	content: "";
	position: absolute;
	top: -15px;
	left: -15px;
	width: calc(100% + 30px);
	height: calc(100% + 30px);
	border: 1px solid var(--border-glass);
	border-radius: var(--radius-lg);
	pointer-events: none;
	z-index: 1;
}

.about-img {
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border-glass);
	position: relative;
	z-index: 2;
	aspect-ratio: 4/3;
	object-fit: cover;
	width: 100%;
}

.about-content {
	order: 1;
}

.about-content h3 {
	font-size: 22px;
	margin-bottom: 16px;
	color: var(--primary-hover);
}

.about-content p {
	color: var(--text-secondary);
	margin-bottom: 16px;
	font-size: 15px;
}

/* Grid layout bases */
.features-grid,
.programs-grid,
.testimonials-grid,
.gallery-grid,
.safety-badge-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

/* Modern Frosted Cards (Glassmorphism Light) */
.feature-card {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.98),
			rgba(247, 251, 255, 0.96)
		),
		var(--bg-card);
	padding: 36px;
	border-radius: var(--radius-lg);
	border: 1px solid rgba(52, 181, 250, 0.14);
	box-shadow: var(--shadow-sm);
	transition: var(--transition-slow);
}

.feature-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--primary),
		var(--tertiary),
		var(--secondary)
	);
}

.feature-card:hover {
	transform: translateY(-8px);
	border-color: var(--primary);
	box-shadow:
		var(--shadow-lg),
		0 10px 30px -10px rgba(52, 181, 250, 0.15);
}

.feature-icon-wrapper {
	width: 54px;
	height: 54px;
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}

.feature-icon-wrapper svg,
.feature-icon-wrapper i {
	width: 28px;
	height: 28px;
	font-size: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Color classes with logo colors */
.feature-card-1 .feature-icon-wrapper {
	background-color: var(--secondary-glow);
	color: var(--text-white);
	border: 1px solid rgba(255, 219, 82, 0.25);
}
.feature-card-2 .feature-icon-wrapper {
	background-color: var(--primary-glow);
	color: var(--primary-hover);
	border: 1px solid rgba(52, 181, 250, 0.25);
}
.feature-card-3 .feature-icon-wrapper {
	background-color: var(--tertiary-glow);
	color: var(--tertiary-hover);
	border: 1px solid rgba(50, 206, 136, 0.25);
}
.feature-card-4 .feature-icon-wrapper {
	background-color: var(--secondary-glow);
	color: var(--coral-hover);
	border: 1px solid rgba(255, 219, 82, 0.28);
}
.feature-card-5 .feature-icon-wrapper {
	background-color: var(--primary-glow);
	color: var(--primary-hover);
	border: 1px solid rgba(52, 181, 250, 0.25);
}

.feature-title {
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 10px;
	color: var(--text-white);
}

.feature-desc {
	color: var(--text-secondary);
	font-size: 14.5px;
}

/* Interactive Program Finder (Sleek layout) */
.finder-card {
	background:
		linear-gradient(
			135deg,
			rgba(255, 255, 255, 0.96),
			rgba(239, 250, 255, 0.96)
		),
		var(--bg-card);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-md);
	padding: 40px;
	border: 1px solid var(--border-glass);
	position: relative;
	z-index: 10;
}

.finder-title {
	text-align: center;
	font-size: 26px;
	color: var(--text-white);
	margin-bottom: 8px;
	font-weight: 900;
}

.finder-desc {
	text-align: center;
	color: var(--text-secondary);
	margin-bottom: 32px;
	font-size: 15px;
}

/* Progress Bar for Kids Finder */
.finder-progress-container {
	width: 100%;
	height: 6px;
	background-color: var(--gray-100);
	border-radius: var(--radius-full);
	margin-bottom: 40px;
	overflow: hidden;
	position: relative;
}

.finder-progress-fill {
	height: 100%;
	width: 0%; /* Dynamic width updated by JS */
	background: linear-gradient(to right, var(--primary), var(--tertiary));
	border-radius: var(--radius-full);
	transition: var(--transition-slow);
}

.finder-layout-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	align-items: start;
}

.finder-steps {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.finder-group {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.finder-label {
	font-weight: 800;
	font-size: 12px;
	color: var(--primary-hover);
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.finder-options {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.finder-btn {
	padding: 16px 20px;
	border: 1px solid var(--border-glass);
	border-radius: var(--radius-md);
	background: var(--bg-dark);
	cursor: pointer;
	text-align: left;
	font-weight: 700;
	font-size: 14.5px;
	color: var(--text-secondary);
	transition: var(--transition);
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.finder-btn-icon {
	font-size: 20px;
	margin-bottom: 2px;
}

.finder-btn small {
	font-size: 11.5px;
	color: var(--text-muted);
	font-weight: 500;
}

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

.finder-btn.active {
	border-color: var(--primary);
	color: var(--text-white);
	background-color: rgba(52, 181, 250, 0.08);
	font-weight: 800;
	box-shadow: 0 4px 15px rgba(52, 181, 250, 0.1);
	transform: translateY(-2px);
}

.finder-result-container {
	display: flex;
	flex-direction: column;
	justify-content: stretch;
}

.finder-placeholder-panel {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: var(--bg-dark);
	border: 2px dashed var(--border-glass-hover);
	border-radius: var(--radius-lg);
	padding: 40px 32px;
	text-align: center;
	min-height: 320px;
	height: 100%;
	transition: var(--transition);
}

.finder-placeholder-icon {
	font-size: 48px;
	margin-bottom: 16px;
	animation: finderPulse 2s infinite ease-in-out;
}

@keyframes finderPulse {
	0% {
		transform: scale(1);
		opacity: 0.8;
	}
	50% {
		transform: scale(1.06);
		opacity: 1;
	}
	100% {
		transform: scale(1);
		opacity: 0.8;
	}
}

.finder-placeholder-title {
	font-size: 17px;
	font-weight: 800;
	color: var(--text-white);
	margin-bottom: 8px;
}

.finder-placeholder-desc {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.5;
	max-width: 280px;
}

.finder-result-panel {
	display: none;
	background-color: var(--bg-dark);
	border: 1.5px solid var(--tertiary);
	border-radius: var(--radius-lg);
	padding: 32px;
	text-align: center;
	box-shadow: var(--shadow-sm);
	animation: panelFadeIn 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes panelFadeIn {
	from {
		opacity: 0;
		transform: translateY(15px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.finder-result-panel.active {
	display: block;
	box-shadow: 0 15px 35px -10px rgba(50, 206, 136, 0.15);
}

/* Responsive grid options for finder */
@media (min-width: 769px) {
	.finder-layout-grid {
		grid-template-columns: 1.35fr 1fr;
		gap: 40px;
	}

	.finder-options-age {
		grid-template-columns: repeat(3, 1fr) !important;
	}

	.finder-options-goals {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

.finder-result-badge {
	display: inline-block;
	padding: 6px 14px;
	background-color: var(--tertiary-glow);
	color: var(--tertiary-hover);
	border: 1px solid rgba(50, 206, 136, 0.2);
	border-radius: var(--radius-full);
	font-weight: 800;
	font-size: 10px;
	text-transform: uppercase;
	margin-bottom: 12px;
	letter-spacing: 0.5px;
}

.finder-result-title {
	font-size: 22px;
	color: var(--text-white);
	margin-bottom: 10px;
	font-weight: 850;
}

.finder-result-text {
	color: var(--text-secondary);
	margin-bottom: 24px;
	font-size: 14.5px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

/* Kids Safety Badges */
.safety-badge-card {
	background-color: var(--bg-card);
	padding: 28px;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	text-align: center;
	border: 1px solid var(--border-glass);
	transition: var(--transition);
}

.safety-badge-card:hover {
	border-color: var(--tertiary);
	box-shadow:
		var(--shadow-md),
		0 10px 20px -10px rgba(50, 206, 136, 0.15);
	transform: translateY(-4px);
}

.safety-badge-icon {
	width: 52px;
	height: 52px;
	border-radius: var(--radius-full);
	background-color: var(--tertiary-glow);
	color: var(--tertiary-hover);
	border: 1px solid rgba(50, 206, 136, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}

.safety-badge-icon svg,
.safety-badge-icon i {
	width: 28px;
	height: 28px;
	font-size: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.safety-badge-title {
	font-size: 16px;
	font-weight: 800;
	margin-bottom: 8px;
	color: var(--text-white);
}

.safety-badge-desc {
	font-size: 13.5px;
	color: var(--text-secondary);
}

/* KHELO Milestones (Modern Progression Timeline) */
.milestones-wrapper {
	display: flex;
	flex-direction: column;
	gap: 32px;
	position: relative;
	margin-top: 40px;
}

.milestone-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
}

.milestone-badge-circle {
	width: 72px;
	height: 72px;
	border-radius: var(--radius-full);
	background-color: var(--bg-card);
	border: 2px solid var(--border-glass);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	box-shadow: var(--shadow-sm);
	font-size: 26px;
	transition: var(--transition);
	z-index: 2;
}

.milestone-item:hover .milestone-badge-circle {
	transform: scale(1.1);
	border-color: var(--secondary);
	box-shadow: var(--shadow-neon-yellow);
}

.milestone-title {
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 8px;
	color: var(--text-white);
}

.milestone-desc {
	font-size: 13.5px;
	color: var(--text-secondary);
	max-width: 260px;
}

/* Weekly Timetable dashboard (Mobile default list) */
.timetable-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	background: var(--bg-card);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-md);
	padding: 20px;
	border: 1px solid var(--border-glass);
}

.timetable-header-cell {
	display: none;
}

.timetable-cell {
	padding: 16px;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-glass);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background-color: var(--bg-dark);
	transition: var(--transition);
}

.timetable-cell:hover {
	background-color: var(--white);
	border-color: var(--border-glass-hover);
	box-shadow: var(--shadow-sm);
}

.timetable-day-label {
	background-color: var(--primary-glow);
	border-color: rgba(52, 181, 250, 0.15);
	font-weight: 800;
	color: var(--primary-hover);
	font-size: 15px;
	padding: 12px;
	margin-top: 16px;
}

.timetable-day-label:first-child {
	margin-top: 0;
}

.timetable-cell-title {
	font-weight: 800;
	font-size: 15px;
	color: var(--text-white);
}

.timetable-cell-subtitle {
	font-size: 12px;
	color: var(--text-secondary);
	margin-top: 4px;
}

.timetable-cell-age {
	display: inline-block;
	padding: 2px 10px;
	background-color: var(--secondary-glow);
	border-radius: var(--radius-full);
	font-size: 9px;
	font-weight: 800;
	color: var(--coral-hover);
	margin-top: 10px;
	border: 1px solid rgba(255, 219, 82, 0.22);
}

/* Program Cards (Frosted Glass panels) */
.program-card {
	background-color: var(--bg-card);
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-glass);
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: var(--transition-slow);
}

.program-card:hover {
	transform: translateY(-8px);
	box-shadow:
		var(--shadow-lg),
		0 15px 35px -10px rgba(52, 181, 250, 0.15);
	border-color: var(--primary);
}

.program-img-wrapper {
	position: relative;
	aspect-ratio: 16/10;
	border-bottom: 1px solid var(--border-glass);
}

.program-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.program-badge {
	position: absolute;
	top: 16px;
	right: 16px;
	padding: 5px 12px;
	color: var(--text-white);
	font-size: 10px;
	font-weight: 800;
	border-radius: var(--radius-full);
	background-color: var(--secondary);
	border: 1px solid rgba(255, 219, 82, 0.3);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.program-content {
	padding: 28px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.program-title {
	font-size: 22px;
	margin-bottom: 6px;
	color: var(--text-white);
}

.program-subtitle {
	font-size: 13.5px;
	font-weight: 800;
	color: var(--primary-hover);
	margin-bottom: 16px;
	letter-spacing: 0.5px;
}

.program-desc {
	font-size: 14.5px;
	color: var(--text-secondary);
	margin-bottom: 24px;
}

.program-list-title {
	font-weight: 800;
	font-size: 14px;
	margin-bottom: 12px;
	color: var(--text-light);
}

.program-benefits {
	margin-bottom: 24px;
}

.program-benefit-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13.5px;
	color: var(--text-secondary);
	margin-bottom: 8px;
}

.program-benefit-item svg,
.program-benefit-item i {
	color: var(--tertiary-hover);
	width: 16px;
	height: 16px;
	font-size: 16px;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.program-suitable {
	background-color: rgba(50, 206, 136, 0.04);
	padding: 12px 16px;
	border-radius: var(--radius-md);
	font-size: 13px;
	color: var(--text-secondary);
	margin-bottom: 28px;
	border-left: 3px solid var(--tertiary);
	margin-top: auto;
}

.program-cta-wrapper {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.program-cta-wrapper .btn {
	width: 100%;
}

/* Meet Priti Modi profile visual styles */
.profile-img-card {
	position: relative;
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	aspect-ratio: 4/5;
	width: 100%;
	border: 1px solid var(--border-glass);
}

.profile-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.profile-img-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 28px 24px;
	background: linear-gradient(
		to top,
		rgba(15, 23, 42, 0.95) 0%,
		rgba(15, 23, 42, 0) 100%
	);
	color: var(--white);
}

.profile-name {
	font-size: 26px;
	margin-bottom: 4px;
	font-weight: 900;
	color: var(--white);
}

.profile-title-text {
	color: var(--secondary);
	font-weight: 800;
	font-size: 14.5px;
	letter-spacing: 0.5px;
}

.profile-content h3 {
	font-size: 24px;
	color: var(--primary-hover);
	margin-bottom: 16px;
}

.profile-content p {
	color: var(--text-secondary);
	font-size: 15px;
	margin-bottom: 16px;
}

/* Gallery & Filtering component layout */
.gallery-filter-container {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 32px;
}

.gallery-filter-btn {
	padding: 8px 18px;
	border-radius: var(--radius-full);
	background-color: var(--bg-card);
	border: 1px solid var(--border-glass);
	font-weight: 800;
	font-size: 12.5px;
	color: var(--text-secondary);
	cursor: pointer;
	transition: var(--transition);
}

.gallery-filter-btn:hover {
	border-color: var(--primary);
	color: var(--primary-hover);
}

.gallery-filter-btn.active {
	background-color: var(--primary);
	border-color: var(--primary);
	color: var(--white);
	box-shadow: var(--shadow-neon-blue);
}

.gallery-item {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	aspect-ratio: 4/3;
	cursor: pointer;
	border: 1px solid var(--border-glass);
	transition: var(--transition-slow);
}

.gallery-item:hover {
	transform: translateY(-6px);
	box-shadow:
		var(--shadow-lg),
		0 10px 20px -10px rgba(52, 181, 250, 0.2);
	border-color: var(--primary);
}

.gallery-item-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition-slow);
}

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

.gallery-item-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		to top,
		rgba(15, 23, 42, 0.9) 0%,
		rgba(15, 23, 42, 0.2) 100%
	);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 20px;
	opacity: 0;
	transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
	opacity: 1;
}

.gallery-item-category {
	color: var(--secondary);
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 4px;
	letter-spacing: 0.5px;
}

.gallery-item-title {
	color: var(--white);
	font-size: 16px;
	font-weight: 800;
}

/* Lightbox Modal styles */
.lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(15, 23, 42, 0.9);
	backdrop-filter: blur(15px);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 2000;
	opacity: 0;
	transition: var(--transition);
	padding: 24px;
}

.lightbox.active {
	display: flex;
	opacity: 1;
}

.lightbox-content {
	position: relative;
	max-width: 800px;
	width: 100%;
	text-align: center;
}

.lightbox-img {
	max-width: 100%;
	max-height: 75vh;
	border-radius: var(--radius-md);
	border: 1px solid var(--border-glass);
	box-shadow: var(--shadow-lg);
}

.lightbox-close {
	position: absolute;
	top: -48px;
	right: 0;
	font-size: 36px;
	color: var(--white);
	background: none;
	border: none;
	cursor: pointer;
	transition: var(--transition);
}

.lightbox-close:hover {
	color: var(--coral);
}

.lightbox-caption {
	margin-top: 16px;
	color: var(--white);
	font-size: 16px;
	font-weight: 600;
}

/* Testimonials */
.testimonial-card {
	background-color: var(--bg-card);
	padding: 32px;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-glass);
	transition: var(--transition-slow);
}

.testimonial-card:hover {
	border-color: var(--primary);
	box-shadow:
		var(--shadow-md),
		0 10px 25px -10px rgba(52, 181, 250, 0.15);
	transform: translateY(-4px);
}

.testimonial-stars {
	font-size: 15px;
	color: var(--secondary-hover);
	margin-bottom: 12px;
}

.testimonial-text {
	font-size: 14.5px;
	color: var(--text-secondary);
	margin-bottom: 24px;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.testimonial-avatar {
	width: 44px;
	height: 44px;
	border-radius: var(--radius-full);
	background: linear-gradient(135deg, var(--primary) 0%, var(--tertiary) 100%);
	color: var(--white);
	font-size: 16px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
}

.testimonial-author-name {
	font-size: 14px;
	font-weight: 800;
	color: var(--text-white);
}

.testimonial-author-role {
	font-size: 11.5px;
	color: var(--text-muted);
}

/* FAQ Accordion list */
.faq-container {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-glass);
	background-color: var(--bg-card);
	overflow: hidden;
	transition: var(--transition);
}

.faq-item:hover {
	border-color: var(--border-glass-hover);
	box-shadow: var(--shadow-sm);
}

.faq-header {
	padding: 20px 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

.faq-question {
	font-size: 15px;
	font-weight: 800;
	color: var(--text-white);
}

.faq-icon-wrapper {
	color: var(--primary-hover);
	transition: var(--transition);
	display: flex;
	align-items: center;
	justify-content: center;
}

.faq-icon-wrapper svg,
.faq-icon-wrapper i {
	width: 16px;
	height: 16px;
	font-size: 16px;
}

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

.faq-body {
	max-height: 0;
	overflow: hidden;
	transition: var(--transition-slow);
}

.faq-content {
	padding: 0 24px 20px;
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.6;
}

/* Contact Info Panels & Inputs layout */
.contact-info-card {
	background-color: var(--bg-card);
	color: var(--text-white);
	padding: 32px;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border-glass);
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.contact-info-title {
	font-size: 24px;
	margin-bottom: 12px;
	font-weight: 900;
}

.contact-info-text {
	font-size: 14.5px;
	color: var(--text-secondary);
}

.contact-detail-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-detail-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.contact-detail-icon {
	color: var(--primary-hover);
	background-color: var(--primary-glow);
	padding: 10px;
	border-radius: var(--radius-md);
	border: 1px solid rgba(52, 181, 250, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-detail-content h4 {
	font-size: 11px;
	text-transform: uppercase;
	color: var(--text-muted);
	letter-spacing: 1px;
	margin-bottom: 4px;
}

.contact-detail-content p,
.contact-detail-content a {
	font-size: 15px;
	color: var(--text-white);
	font-weight: 600;
}

.contact-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.map-container {
	height: 220px;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-glass);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.form-card {
	background-color: var(--bg-card);
	padding: 32px;
	border-radius: var(--radius-xl);
	border: 1px solid var(--border-glass);
	box-shadow: var(--shadow-md);
}

.form-title {
	font-size: 24px;
	margin-bottom: 6px;
	font-weight: 900;
}

.form-subtitle {
	font-size: 14px;
	color: var(--text-secondary);
	margin-bottom: 28px;
}

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

.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

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

.form-label {
	font-size: 13px;
	font-weight: 700;
	color: var(--text-light);
}

.form-input,
.form-select,
.form-textarea {
	padding: 12px 16px;
	font-size: 14.5px;
	background-color: var(--bg-dark);
	border: 1px solid var(--border-glass);
	border-radius: var(--radius-md);
	color: var(--text-white);
	transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 10px rgba(52, 181, 250, 0.1);
	background-color: var(--white);
}

.form-select option {
	background-color: var(--white);
	color: var(--text-white);
}

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

/* Success popup toast alert */
.alert-popup {
	position: fixed;
	bottom: 100px;
	right: 24px;
	background-color: var(--bg-card);
	padding: 16px 24px;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg), var(--shadow-neon-green);
	display: flex;
	align-items: center;
	gap: 16px;
	border: 1px solid var(--tertiary);
	z-index: 1000;
	transform: translateY(150px);
	opacity: 0;
	transition: var(--transition-slow);
}

.alert-popup.active {
	transform: translateY(0);
	opacity: 1;
}

.alert-text h4 {
	font-size: 16px;
	font-weight: 800;
	color: var(--tertiary-hover);
}

.alert-text p {
	font-size: 13px;
	color: var(--text-secondary);
}

/* Override inline backgrounds to keep light mode consistent */
div[style*="background-color: var(--gray-100)"],
div[style*="background-color: var(--white)"],
div[style*="background-color:var(--gray-100)"],
div[style*="background-color:var(--white)"] {
	background-color: var(--bg-card) !important;
	border-color: var(--border-glass) !important;
}

/* Final CTA Section overlay */
.cta-section {
	padding: 100px 0;
	position: relative;
	background-image:
		linear-gradient(
			135deg,
			rgba(247, 251, 255, 0.86) 0%,
			rgba(225, 248, 255, 0.86) 42%,
			rgba(242, 255, 233, 0.9) 100%
		),
		url("../images/hero_bg.png");
	background-size: cover;
	background-position: center;
	border-top: 1px solid var(--border-glass);
}

.cta-container {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.cta-title {
	font-size: 34px;
	font-weight: 900;
	color: var(--text-white);
	margin-bottom: 16px;
}

.cta-desc {
	font-size: 16px;
	color: var(--text-secondary);
	margin-bottom: 32px;
}

.cta-buttons {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: center;
	justify-content: center;
}

.cta-buttons .btn {
	width: 100%;
	max-width: 290px;
}

/* Footer Section */
footer {
	padding: 60px 0 0;
	border-top: 1px solid var(--border-glass);
	background:
		linear-gradient(
			135deg,
			rgba(52, 181, 250, 0.12),
			rgba(50, 206, 136, 0.1),
			rgba(255, 219, 82, 0.16)
		),
		var(--bg-darker);
	position: relative;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 36px;
	margin-bottom: 40px;
}

.footer-brand-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.footer-brand-desc {
	font-size: 13.5px;
	color: var(--text-secondary);
	margin-bottom: 20px;
	line-height: 1.6;
}

.contact-socials {
	display: flex;
	gap: 12px;
}

.contact-social-btn {
	width: 40px;
	height: 40px;
	border-radius: var(--radius-full);
	background-color: var(--bg-card);
	border: 1px solid var(--border-glass);
	color: var(--text-secondary);
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-social-btn:hover {
	background-color: var(--primary-glow);
	border-color: var(--primary);
	color: var(--primary-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(52, 181, 250, 0.1);
}

.footer-title {
	font-size: 16px;
	font-weight: 800;
	color: var(--text-white);
	margin-bottom: 20px;
	position: relative;
	display: inline-block;
}

.footer-title::after {
	content: "";
	position: absolute;
	bottom: -6px;
	left: 0;
	width: 28px;
	height: 2px;
	background-color: var(--primary);
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	font-size: 13.5px;
	color: var(--text-secondary);
}

.footer-links a:hover {
	color: var(--primary-hover);
	padding-left: 4px;
}

.footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13.5px;
	color: var(--text-secondary);
	margin-bottom: 14px;
}

.footer-contact li svg,
.footer-contact li i {
	color: var(--primary-hover);
	width: 18px;
	height: 18px;
	font-size: 18px;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

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

.footer-bottom {
	border-top: 1px solid var(--border-glass);
	padding: 24px 0;
	font-size: 12.5px;
	color: var(--text-muted);
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
	text-align: center;
}

.footer-bottom p {
	margin: 0;
}

.footer-bottom-links {
	display: flex;
	gap: 20px;
}

.footer-bottom-links a:hover {
	color: var(--text-white);
}

/*************************************************
  TABLET & DESKTOP ENHANCEMENTS (min-width: 769px)
 **************************************************/
@media (min-width: 769px) {
	.section {
		padding: 100px 0;
	}
}

/*************************************************
  DESKTOP NAVIGATION ONLY (min-width: 1025px)
 **************************************************/
@media (min-width: 1025px) {
	/* Desktop Header & Nav */
	header {
		padding: 16px 0;
	}

	.navbar {
		padding: 0;
	}

	.logo-img {
		height: 54px;
	}

	header.scrolled .logo-img {
		height: 48px;
	}

	.logo-title {
		font-size: 24px;
	}

	.logo-subtitle {
		font-size: 10px;
	}

	.hamburger {
		display: none;
	}

	.nav-links {
		position: static;
		width: auto;
		height: auto;
		background-color: transparent;
		flex-direction: row;
		align-items: center;
		padding: 0;
		gap: 16px;
		box-shadow: none;
		overflow-y: visible;
		border-right: none;
		transform: none !important;
		transition: none !important;
	}

	.nav-link {
		font-size: 14.5px;
		padding: 8px 14px;
		width: auto;
	}

	.nav-link::before {
		content: "";
		position: absolute;
		bottom: 0;
		left: 14px;
		width: 0;
		height: 2px;
		background-color: var(--primary);
		transition: var(--transition);
	}

	.nav-link:hover::before,
	.nav-link.active::before {
		width: calc(100% - 28px);
	}

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

	.nav-cta {
		display: flex; /* Show CTA button */
	}

	/* Desktop Hover Dropdown Menu override */
	.nav-item-dropdown {
		width: auto;
	}

	.dropdown-menu {
		position: absolute;
		top: 100%;
		left: 0;
		background-color: var(--bg-card);
		box-shadow: var(--shadow-lg);
		border-radius: var(--radius-md);
		border: 1px solid var(--border-glass);
		padding: 12px 0;
		min-width: 250px;
		display: block;
		opacity: 0;
		visibility: hidden;
		transform: translateY(10px);
		z-index: 1001;
		transition: var(--transition);
	}

	.nav-item-dropdown:hover .dropdown-menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.dropdown-item {
		padding: 10px 24px;
		font-size: 14px;
		color: var(--text-secondary);
		transition: var(--transition);
	}

	.dropdown-item:hover {
		background-color: var(--gray-50);
		color: var(--primary-hover);
		padding-left: 28px;
	}
}

@media (min-width: 769px) {
	/* Hero Desktop Layout */
	.hero {
		padding: 180px 0 110px;
		text-align: left;
	}

	.hero-content {
		max-width: 760px;
	}

	.hero-badge {
		font-size: 12px;
		padding: 8px 18px;
	}

	.hero-title {
		font-size: 48px;
	}

	.hero-subtitle {
		font-size: 20px;
		margin-left: 0;
	}

	.hero-desc {
		font-size: 16px;
		margin-left: 0;
	}

	.hero-ctas {
		flex-direction: row;
		align-items: center;
	}

	.hero-ctas .btn {
		width: auto;
	}

	/* Section Header */
	.section-header {
		margin-bottom: 70px;
	}

	.section-title {
		font-size: 34px;
	}

	/* Split Columns Desktop */
	.about-split {
		grid-template-columns: 1.1fr 1fr;
		gap: 60px;
	}

	.about-img-container {
		order: 1;
	}

	.about-content {
		order: 2;
	}

	.profile-section {
		grid-template-columns: 1fr 1.2fr;
		gap: 60px;
	}

	.contact-split {
		grid-template-columns: 1fr 1.3fr;
		gap: 48px;
	}

	/* Grids Tablet overrides */
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px;
	}

	.programs-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}

	.testimonials-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 24px;
	}

	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.safety-badge-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	/* Milestones horizontal timeline */
	.milestones-wrapper {
		flex-direction: row;
		gap: 20px;
	}

	.milestones-wrapper::before {
		content: "";
		position: absolute;
		top: 36px;
		left: 40px;
		right: 40px;
		height: 2px;
		background-color: var(--border-glass);
		z-index: 1;
	}

	.milestone-item {
		flex: 1;
	}

	/* Timetable full Desktop grid calendar */
	.timetable-grid {
		grid-template-columns: 1.2fr repeat(3, 1fr);
		gap: 12px;
		padding: 28px;
	}

	.timetable-header-cell {
		display: flex; /* Show headers */
		align-items: center;
		justify-content: center;
		background-color: var(--bg-darker);
		color: var(--text-white);
		padding: 16px;
		font-weight: 800;
		border-radius: var(--radius-md);
		border: 1px solid var(--border-glass);
		font-size: 14.5px;
		text-transform: uppercase;
		letter-spacing: 0.5px;
	}

	.timetable-cell {
		padding: 16px;
		border-radius: var(--radius-md);
		background-color: var(--white);
	}

	.timetable-day-label {
		background-color: transparent;
		border-color: var(--border-glass);
		margin-top: 0;
		font-size: 15px;
		align-items: center;
		justify-content: center;
		font-weight: 800;
		color: var(--text-white);
	}

	/* Forms Desktop grid */
	.form-grid {
		grid-template-columns: 1fr 1fr;
		gap: 16px;
	}

	.form-group-full {
		grid-column: span 2;
	}

	/* Final CTA Section */
	.cta-section {
		padding: 110px 0;
	}

	.cta-title {
		font-size: 40px;
	}

	.cta-desc {
		font-size: 16.5px;
	}

	.cta-buttons {
		flex-direction: row;
	}

	.cta-buttons .btn {
		width: auto;
	}

	/* Footer Layout overrides */
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 36px;
	}

	.footer-bottom {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
}

/*************************************************
  LARGE DESKTOP ENHANCEMENTS (min-width: 1025px)
 **************************************************/
@media (min-width: 1025px) {
	.logo-title {
		font-size: 26px;
	}

	.nav-links {
		gap: 20px;
	}

	.nav-link {
		font-size: 15px;
	}

	.hero-title {
		font-size: 54px;
	}

	.section-title {
		font-size: 38px;
	}

	.features-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 32px;
	}

	.programs-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 32px;
	}

	.gallery-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 28px;
	}

	.safety-badge-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 24px;
	}

	/* Footer 4-Column Layout */
	.footer-grid {
		grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	}
}

/* Instructors Grid & Cards */
.instructors-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.instructor-card {
	background-color: var(--bg-card);
	border: 1px solid var(--border-glass);
	border-radius: var(--radius-lg);
	padding: 30px 24px;
	text-align: center;
	box-shadow: var(--shadow-sm);
	transition: var(--transition-slow);
}

.instructor-card:hover {
	transform: translateY(-6px);
	border-color: var(--primary);
	box-shadow:
		var(--shadow-lg),
		0 10px 25px -10px rgba(52, 181, 250, 0.15);
}

.instructor-avatar {
	width: 90px;
	height: 90px;
	border-radius: var(--radius-full);
	background: linear-gradient(135deg, var(--primary) 0%, var(--tertiary) 100%);
	color: var(--white);
	font-size: 28px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	box-shadow: var(--shadow-sm);
}

.instructor-avatar-1 {
	background: linear-gradient(135deg, var(--primary) 0%, var(--tertiary) 100%);
	color: #ffffff !important;
}
.instructor-avatar-2 {
	background: linear-gradient(
		135deg,
		var(--tertiary) 0%,
		var(--secondary) 100%
	);
	color: #ffffff !important;
}
.instructor-avatar-3 {
	background: linear-gradient(
		135deg,
		var(--secondary) 0%,
		var(--tertiary) 100%
	);
	color: #ffffff !important;
}
.instructor-avatar-4 {
	background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
	color: #ffffff !important;
}

.instructor-name {
	font-size: 18px;
	font-weight: 800;
	color: var(--text-white);
	margin-bottom: 4px;
}

.instructor-role {
	font-size: 13px;
	color: var(--primary-hover);
	font-weight: 700;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.instructor-bio {
	font-size: 13.5px;
	color: var(--text-secondary);
	line-height: 1.5;
	margin-bottom: 16px;
}

.instructor-badge {
	display: inline-block;
	padding: 3px 10px;
	background-color: rgba(52, 181, 250, 0.06);
	color: var(--primary-hover);
	border: 1px solid rgba(52, 181, 250, 0.15);
	font-size: 10px;
	font-weight: 800;
	border-radius: var(--radius-full);
	text-transform: uppercase;
}

@media (min-width: 769px) {
	.instructors-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1025px) {
	.instructors-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* Floating Quick Actions Menu Widget */
.quick-menu-container {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 1999;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

/* Toggle Main Button */
.quick-menu-toggle-btn {
	width: 56px;
	height: 56px;
	border-radius: var(--radius-full);
	background: linear-gradient(135deg, var(--primary) 0%, #0099ff 100%);
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(0, 153, 255, 0.3);
	position: relative;
	transition: var(--transition);
	z-index: 2001;
}

.quick-menu-toggle-btn:hover {
	transform: scale(1.05);
	box-shadow: 0 6px 20px rgba(0, 153, 255, 0.4);
}

/* Icon bars forming a plus sign */
.toggle-icon-bar {
	position: absolute;
	top: calc(50% - 1px);
	left: calc(50% - 9px);
	width: 18px;
	height: 2px;
	background-color: var(--white);
	transition: var(--transition);
	border-radius: var(--radius-full);
}

.quick-menu-toggle-btn .bar-1 {
	transform: rotate(0deg);
}

.quick-menu-toggle-btn .bar-2 {
	transform: rotate(90deg);
}

/* When menu is active, plus rotates to turn into cross */
.quick-menu-container.active .quick-menu-toggle-btn {
	background: linear-gradient(135deg, var(--coral) 0%, var(--coral-hover) 100%);
	box-shadow: 0 4px 15px rgba(244, 63, 94, 0.3);
}

.quick-menu-container.active .quick-menu-toggle-btn .bar-1 {
	transform: rotate(135deg);
}

.quick-menu-container.active .quick-menu-toggle-btn .bar-2 {
	transform: rotate(225deg);
}

/* Stack of options going upward */
.quick-menu-options {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	pointer-events: none; /* disable clicks when hidden */
	z-index: 2000;
}

/* Option Buttons Base */
.quick-menu-opt-btn {
	width: 48px;
	height: 48px;
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white) !important;
	box-shadow: var(--shadow-sm);
	position: relative;
	opacity: 0;
	transform: translateY(20px) scale(0.8);
	transition:
		transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
		opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.quick-menu-opt-btn svg,
.quick-menu-opt-btn i {
	width: 20px;
	height: 20px;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Color schemes for options */
.opt-call {
	background-color: var(--primary);
	box-shadow: 0 4px 12px rgba(52, 181, 250, 0.3);
}
.opt-call:hover {
	background-color: var(--primary-hover);
	transform: scale(1.1);
}

.opt-whatsapp {
	background-color: var(--tertiary);
	box-shadow: 0 4px 12px rgba(50, 206, 136, 0.3);
}
.opt-whatsapp:hover {
	background-color: var(--tertiary-hover);
	transform: scale(1.1);
}

.opt-map {
	background-color: var(--secondary);
	color: var(--text-white) !important;
	box-shadow: 0 4px 12px rgba(255, 219, 82, 0.3);
}
.opt-map:hover {
	background-color: var(--secondary-hover);
	transform: scale(1.1);
}

/* Hover Tooltips next to icons */
.quick-menu-tooltip {
	position: absolute;
	right: 64px;
	background-color: var(--bg-card);
	color: var(--text-white);
	padding: 6px 12px;
	border-radius: var(--radius-md);
	font-size: 11.5px;
	font-weight: 800;
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border-glass);
	opacity: 0;
	transform: translateX(10px);
	transition: var(--transition);
	pointer-events: none;
	white-space: nowrap;
}

.quick-menu-opt-btn:hover .quick-menu-tooltip {
	opacity: 1;
	transform: translateX(0);
}

/* Show options when container is active */
.quick-menu-container.active .quick-menu-options {
	pointer-events: auto; /* enable clicks */
}

.quick-menu-container.active .quick-menu-opt-btn {
	opacity: 1;
	transform: translateY(0) scale(1);
}

/* Sequential cascading animation delays for options upward */
.quick-menu-container.active .opt-map {
	transition-delay: 0s;
}

.quick-menu-container.active .opt-whatsapp {
	transition-delay: 0.05s;
}

.quick-menu-container.active .opt-call {
	transition-delay: 0.1s;
}

/* Breadcrumb Navigation styling */
.breadcrumb-container {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	white-space: nowrap;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 25px;
	background-color: var(--gray-100);
	padding: 8px 18px;
	border-radius: 50px;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.breadcrumb-container a {
	display: inline-flex;
	align-items: center;
	color: var(--text-secondary) !important;
	transition: var(--transition);
	text-decoration: none;
}

.breadcrumb-container a:hover {
	color: var(--primary) !important;
	opacity: 1 !important;
}

.breadcrumb-container span {
	color: var(--text-muted);
}

.breadcrumb-container .breadcrumb-separator {
	color: var(--gray-300);
	font-weight: 800;
}

.breadcrumb-container span.active {
	color: var(--primary-hover) !important;
}

/*************************************************
  MOBILE VIEW OVERLAY FIXES & ENHANCEMENTS (max-width: 768px)
 **************************************************/
@media (max-width: 1024px) {
	/* 1. Gallery Overlays always visible on touch devices */
	.gallery-item-overlay {
		opacity: 1 !important;
		background: linear-gradient(
			to top,
			rgba(15, 23, 42, 0.9) 0%,
			rgba(15, 23, 42, 0.35) 75%,
			transparent 100%
		) !important;
		padding: 12px !important;
	}

	.gallery-item-title {
		font-size: 13.5px !important;
		font-weight: 700 !important;
	}

	.gallery-item-category {
		font-size: 9px !important;
		margin-bottom: 2px !important;
	}

	/* Prevent image scaling issues on mobile for gallery */
	.gallery-item:hover .gallery-item-img {
		transform: none !important;
	}

	/* 2. Meet Our Founder Profile Card Overlays & Image Crops */
	.profile-img-card {
		aspect-ratio: 4/3 !important;
		max-height: 320px !important;
	}

	.profile-img-overlay {
		padding: 20px 16px !important;
		background: linear-gradient(
			to top,
			rgba(15, 23, 42, 0.9) 0%,
			rgba(15, 23, 42, 0.2) 100%
		) !important;
	}

	.profile-name {
		font-size: 20px !important;
		margin-bottom: 2px !important;
	}

	.profile-title-text {
		font-size: 12px !important;
	}

	/* 3. Lightbox Close Button optimization on mobile */
	.lightbox-close {
		position: fixed !important;
		top: 16px !important;
		right: 16px !important;
		left: auto !important;
		font-size: 28px !important;
		background-color: rgba(15, 23, 42, 0.6) !important;
		color: #ffffff !important;
		width: 44px !important;
		height: 44px !important;
		border-radius: var(--radius-full) !important;
		display: flex !important;
		align-items: center;
		justify-content: center;
		line-height: 1 !important;
		z-index: 2001 !important;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
		border: 1px solid rgba(255, 255, 255, 0.2) !important;
	}

	/* 4. WhatsApp Floating Tooltip optimization on mobile */
	.whatsapp-tooltip {
		display: none !important;
	}

	/* 5. Mobile Menu Left Alignment Guarantee */
	.nav-links {
		align-items: flex-start !important;
		text-align: left !important;
	}
	.nav-link {
		text-align: left !important;
	}
	.dropdown-item {
		text-align: left !important;
	}

	/* 6. Navbar Mobile Overflow Prevention */
	header .container.navbar {
		padding: 0 16px !important;
	}
	.logo-img {
		height: 38px !important;
	}
	.logo-title {
		font-size: 19px !important;
	}
	.logo-subtitle {
		font-size: 8px !important;
		letter-spacing: 1px !important;
	}
	.logo-container {
		gap: 8px !important;
	}
}

/* Center aligned hero overrides */
.hero-center {
	text-align: center !important;
}

.hero-center .hero-content {
	max-width: 860px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

.hero-center .hero-title {
	margin-left: auto !important;
	margin-right: auto !important;
}

.hero-center .hero-subtitle {
	margin-left: auto !important;
	margin-right: auto !important;
}

.hero-center .hero-desc {
	margin-left: auto !important;
	margin-right: auto !important;
}

.hero-center .hero-ctas {
	justify-content: center !important;
}

/* ==========================================================================
   Contact Redesign Section (Premium 4-Card Grid & Map Split)
   ========================================================================== */

/* ==========================================================================
   Production conversion and local SEO polish
   ========================================================================== */

.blob-wrapper {
	display: none;
}

.hero-production {
	min-height: 680px;
	display: flex;
	align-items: center;
	text-align: left;
	padding: 132px 0 88px;
	background-image:
		linear-gradient(
			90deg,
			rgba(247, 251, 255, 0.98) 0%,
			rgba(238, 250, 255, 0.9) 48%,
			rgba(231, 255, 244, 0.6) 100%
		),
		url("../images/hero_bg.png");
	background-position: center;
	background-size: cover;
}

.hero-production::before {
	background:
		linear-gradient(180deg, rgba(52, 181, 250, 0.13), rgba(50, 206, 136, 0.08)),
		linear-gradient(
			90deg,
			rgba(255, 255, 255, 0) 0%,
			rgba(255, 255, 255, 0.64) 100%
		);
}

.hero-production-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
	gap: 56px;
	align-items: center;
}

.hero-production .hero-content {
	max-width: 720px;
	margin: 0;
}

.hero-production .hero-title {
	font-size: clamp(42px, 4.45vw, 58px);
	letter-spacing: 0;
	line-height: 1.06;
	margin-bottom: 24px;
}

.hero-production .hero-subtitle {
	font-size: 21px;
	margin-left: 0;
	max-width: 680px;
}

.hero-production .hero-desc {
	font-size: 16.5px;
	max-width: 640px;
	margin-left: 0;
}

.hero-production .hero-ctas {
	align-items: flex-start;
	justify-content: flex-start;
}

.hero-trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 28px;
}

.hero-trust-row span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 7px 12px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: var(--radius-full);
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.86),
		rgba(234, 247, 255, 0.86)
	);
	color: var(--text-secondary);
	font-size: 12.5px;
	font-weight: 800;
	box-shadow: var(--shadow-sm);
}

.hero-visual-card {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.68);
	box-shadow: 0 28px 80px -36px rgba(15, 23, 42, 0.38);
	background: var(--white);
	aspect-ratio: 1 / 1;
	max-height: 520px;
}

.hero-visual-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-visual-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(15, 23, 42, 0.78), transparent 54%);
}

.hero-visual-panel {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 18px;
	z-index: 2;
	padding: 18px;
	border-radius: var(--radius-md);
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.94),
		rgba(241, 255, 248, 0.94)
	);
	box-shadow: var(--shadow-lg);
}

.hero-visual-panel strong {
	display: block;
	margin-bottom: 12px;
	color: var(--text-white);
	font-size: 15px;
}

.hero-chip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.hero-chip-list a {
	padding: 7px 10px;
	border-radius: var(--radius-full);
	background: var(--primary-glow);
	color: var(--primary-hover);
	font-size: 12px;
	font-weight: 800;
	border: 1px solid rgba(52, 181, 250, 0.18);
}

.conversion-strip {
	position: relative;
	z-index: 3;
	margin-top: -44px;
}

.conversion-strip-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.conversion-strip-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 22px 24px;
	border-radius: var(--radius-md);
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.98),
		rgba(239, 250, 255, 0.96)
	);
	border: 1px solid rgba(52, 181, 250, 0.18);
	box-shadow: var(--shadow-md);
}

.conversion-strip-item span {
	color: var(--primary-hover);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.8px;
}

.conversion-strip-item strong {
	color: var(--text-white);
	font-size: 17px;
	line-height: 1.25;
}

.conversion-strip-action {
	background:
		linear-gradient(
			135deg,
			rgba(50, 206, 136, 0.2),
			rgba(52, 181, 250, 0.16),
			rgba(255, 219, 82, 0.16)
		),
		var(--white);
}

.program-entry-section {
	padding-top: 100px;
}

.program-entry-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.program-entry-card {
	display: grid;
	grid-template-rows: 190px 1fr;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(52, 181, 250, 0.16);
	border-radius: var(--radius-lg);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(248, 252, 255, 0.98)),
		var(--white);
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
}

.program-entry-card::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 4px;
	background: linear-gradient(
		90deg,
		var(--primary),
		var(--tertiary),
		var(--secondary)
	);
	opacity: 0.9;
}

.program-entry-card:hover {
	transform: translateY(-6px);
	border-color: rgba(52, 181, 250, 0.36);
	box-shadow: var(--shadow-lg);
}

.program-entry-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.program-entry-card div {
	padding: 22px;
}

.program-entry-card span {
	color: var(--tertiary-hover);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.8px;
}

.program-entry-card h3 {
	margin: 7px 0 9px;
	font-size: 19px;
	letter-spacing: 0;
}

.program-entry-card p {
	color: var(--text-secondary);
	font-size: 13.5px;
	line-height: 1.55;
}

.local-seo-section {
	border-top: 1px solid var(--border-glass);
}

.local-seo-grid {
	display: grid;
	grid-template-columns: 1.08fr 0.92fr;
	gap: 48px;
	align-items: center;
}

.local-seo-grid p {
	margin-bottom: 16px;
	color: var(--text-secondary);
}

.local-search-card {
	padding: 34px;
	border-radius: var(--radius-lg);
	background:
		linear-gradient(
			135deg,
			rgba(255, 219, 82, 0.22),
			rgba(52, 181, 250, 0.14),
			rgba(50, 206, 136, 0.12)
		),
		var(--white);
	border: 1px solid rgba(52, 181, 250, 0.18);
	box-shadow: var(--shadow-md);
}

.local-search-card h3 {
	margin-bottom: 18px;
	font-size: 22px;
}

.local-search-card ul {
	display: grid;
	gap: 12px;
	margin-bottom: 26px;
}

.local-search-card li {
	position: relative;
	padding-left: 22px;
	font-size: 14.5px;
	font-weight: 700;
	color: var(--text-secondary);
}

.local-search-card li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.65em;
	width: 8px;
	height: 8px;
	border-radius: var(--radius-full);
	background: var(--tertiary);
}

.form-helper-text {
	margin-top: 12px;
	color: var(--text-muted);
	font-size: 12.5px;
	text-align: center;
	line-height: 1.45;
}

.mobile-lead-bar {
	display: none;
}

@media (max-width: 1024px) {
	.hero-production {
		min-height: auto;
		padding-top: 132px;
	}

	.hero-production-grid,
	.local-seo-grid {
		grid-template-columns: 1fr;
	}

	.hero-visual-card {
		max-width: 560px;
		margin: 0 auto;
		aspect-ratio: 16 / 10;
	}

	.program-entry-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {

	.hero-production {
		text-align: left;
		padding: 118px 0 68px;
		background-image:
			linear-gradient(
				180deg,
				rgba(251, 251, 254, 0.96) 0%,
				rgba(251, 251, 254, 0.9) 62%,
				rgba(251, 251, 254, 0.98) 100%
			),
			url("../images/hero_bg.png");
	}

	.hero-production .hero-title {
		font-size: 38px;
	}

	.hero-production .hero-subtitle {
		font-size: 18px;
	}

	.hero-production .hero-ctas .btn {
		width: 100%;
		max-width: none;
	}

	.hero-trust-row {
		gap: 8px;
	}

	.hero-trust-row span {
		font-size: 11.5px;
	}

	.hero-trust-row span:nth-child(3) {
		display: none;
	}

	.hero-visual-card {
		display: none;
	}

	.conversion-strip {
		margin-top: 0;
	}

	.conversion-strip-grid,
	.program-entry-grid {
		grid-template-columns: 1fr;
	}

	.conversion-strip-item {
		padding: 18px;
	}

	.program-entry-section {
		padding-top: 72px;
	}

	.program-entry-card {
		grid-template-rows: 180px 1fr;
	}

	.local-search-card {
		padding: 26px;
	}

	.mobile-lead-bar {
		position: fixed;
		left: 12px;
		right: 12px;
		bottom: 12px;
		z-index: 1200;
		display: grid;
		grid-template-columns: 0.8fr 1.2fr 1fr;
		gap: 8px;
		padding: 8px;
		border: 1px solid rgba(15, 23, 42, 0.1);
		border-radius: var(--radius-full);
		background: rgba(255, 255, 255, 0.94);
		backdrop-filter: blur(18px);
		box-shadow: 0 16px 40px -18px rgba(15, 23, 42, 0.35);
	}

	.mobile-lead-bar a {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 42px;
		border-radius: var(--radius-full);
		font-size: 12.5px;
		font-weight: 900;
		color: var(--text-white);
		background: var(--gray-100);
	}

	.mobile-lead-bar a:nth-child(2) {
		background: linear-gradient(135deg, var(--secondary), var(--tertiary));
		color: var(--dark);
	}

	.mobile-lead-bar a:nth-child(3) {
		background: var(--tertiary);
		color: var(--white);
	}
}

.contact-cards-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-bottom: 60px;
}

@media (min-width: 576px) {
	.contact-cards-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	.contact-cards-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.contact-card-item {
	background-color: var(--bg-card);
	padding: 36px 24px;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-glass);
	box-shadow: var(--shadow-sm);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	transition: var(--transition-slow);
}

.contact-card-item:hover {
	transform: translateY(-6px);
	border-color: var(--primary);
	box-shadow:
		var(--shadow-lg),
		0 10px 25px -10px rgba(52, 181, 250, 0.12);
}

.contact-card-icon-wrapper {
	width: 60px;
	height: 60px;
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.contact-card-icon-wrapper svg,
.contact-card-icon-wrapper i {
	width: 32px;
	height: 32px;
	font-size: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Icon specific theme color sets */
.contact-card-whatsapp .contact-card-icon-wrapper {
	background-color: var(--tertiary-glow);
	color: var(--tertiary-hover);
	border: 1px solid rgba(50, 206, 136, 0.25);
}

.contact-card-phone .contact-card-icon-wrapper {
	background-color: var(--primary-glow);
	color: var(--primary-hover);
	border: 1px solid rgba(52, 181, 250, 0.25);
}

.contact-card-instagram .contact-card-icon-wrapper {
	background-color: var(--secondary-glow);
	color: var(--coral-hover);
	border: 1px solid rgba(255, 219, 82, 0.28);
}

.contact-card-location .contact-card-icon-wrapper {
	background-color: var(--secondary-glow);
	color: var(--text-white);
	border: 1px solid rgba(255, 219, 82, 0.25);
}

.contact-card-title {
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 10px;
	color: var(--text-white);
}

.contact-card-value {
	font-size: 14.5px;
	color: var(--text-secondary);
	margin-bottom: 24px;
	line-height: 1.5;
	font-weight: 500;
	flex-grow: 1;
}

.contact-card-value a {
	font-weight: 700;
	transition: var(--transition);
}

.contact-card-value a:hover {
	color: var(--primary-hover);
}

.contact-card-btn {
	width: 100%;
	padding: 12px 24px;
	border-radius: var(--radius-full);
	font-size: 13px;
	font-weight: 800;
	text-align: center;
	border: 1px solid transparent;
	transition: var(--transition);
	display: inline-block;
	box-sizing: border-box;
}

.contact-card-btn-wa {
	background-color: var(--tertiary-glow);
	color: var(--tertiary-hover);
	border-color: var(--tertiary-hover);
}

.contact-card-btn-wa:hover {
	background-color: var(--tertiary-hover);
	color: var(--white);
	box-shadow: var(--shadow-neon-green);
}

.contact-card-btn-phone {
	background-color: var(--primary-glow);
	color: var(--primary-hover);
	border-color: var(--primary-hover);
}

.contact-card-btn-phone:hover {
	background-color: var(--primary-hover);
	color: var(--white);
	box-shadow: var(--shadow-neon-blue);
}

.contact-card-btn-insta {
	background-color: var(--secondary-glow);
	color: var(--coral-hover);
	border-color: var(--coral-hover);
}

.contact-card-btn-insta:hover {
	background: linear-gradient(135deg, var(--secondary), var(--tertiary));
	color: var(--dark);
	box-shadow: var(--shadow-neon-yellow);
}

.contact-card-btn-loc {
	background-color: var(--secondary-glow);
	color: var(--text-white);
	border-color: var(--secondary-hover);
}

.contact-card-btn-loc:hover {
	background-color: var(--secondary-hover);
	color: var(--text-white);
	box-shadow: var(--shadow-neon-yellow);
}

/* Asymmetrical map and form layout */
.contact-split-redesign {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	align-items: stretch;
}

@media (min-width: 992px) {
	.contact-split-redesign {
		grid-template-columns: 1.2fr 1fr;
		gap: 48px;
	}
}

.map-card-redesign {
	background-color: var(--bg-card);
	border-radius: var(--radius-xl);
	border: 1px solid var(--border-glass);
	box-shadow: var(--shadow-md);
	padding: 16px;
	display: flex;
	flex-direction: column;
	min-height: 480px;
	height: 100%;
}

.map-card-redesign iframe {
	border-radius: var(--radius-lg);
	width: 100%;
	height: 100%;
	min-height: 450px;
	border: 0;
	flex-grow: 1;
}

/* Solid logo-color theme: no gradients, only yellow, blue, and green. */
body,
.section-bg-white,
.section-bg-light {
	background: var(--bg-dark) !important;
}

header::after,
.section-header-line,
.feature-card::before,
.program-entry-card::after,
.line-accent,
.line-accent::after {
	background: var(--primary) !important;
}

.logo-title,
.hero-title span {
	background: none !important;
	-webkit-background-clip: initial !important;
	-webkit-text-fill-color: initial !important;
	color: var(--primary-hover) !important;
	filter: none !important;
}

.logo-subtitle,
.section-subtitle,
.program-entry-card span,
.breadcrumb-container span.active {
	color: var(--tertiary-hover) !important;
}

.btn-primary,
.nav-cta .btn-coral,
.mobile-lead-bar a:nth-child(2) {
	background: var(--primary) !important;
	color: var(--white) !important;
	border-color: var(--primary) !important;
}

.hero-ctas .btn-coral,
.cta-buttons .btn-secondary,
.contact-card-btn-loc,
.finder-result-badge,
.timetable-cell-age {
	background: var(--secondary) !important;
	color: var(--dark) !important;
	border-color: var(--secondary-hover) !important;
}

.btn-whatsapp,
.btn-tertiary,
.contact-card-btn-wa,
.mobile-lead-bar a:nth-child(3) {
	background: var(--tertiary) !important;
	color: var(--white) !important;
	border-color: var(--tertiary) !important;
}

.btn-secondary,
.btn-outline,
.conversion-strip-item,
.feature-card,
.finder-card,
.program-entry-card,
.testimonial-card,
.faq-item,
.contact-card-item,
.form-card,
.map-card-redesign,
.local-search-card,
.hero-trust-row span,
.hero-visual-panel {
	background: var(--white) !important;
	border-color: rgba(52, 181, 250, 0.18) !important;
}

.conversion-strip-item:nth-child(1),
.feature-card-2,
.program-entry-card:nth-child(3n + 1) {
	border-color: rgba(52, 181, 250, 0.34) !important;
}

.conversion-strip-item:nth-child(2),
.feature-card-3,
.program-entry-card:nth-child(3n + 2) {
	border-color: rgba(50, 206, 136, 0.34) !important;
}

.conversion-strip-item:nth-child(3),
.feature-card-1,
.program-entry-card:nth-child(3n) {
	border-color: rgba(255, 219, 82, 0.45) !important;
}

.feature-card-1 .feature-icon-wrapper,
.contact-card-location .contact-card-icon-wrapper,
.contact-card-instagram .contact-card-icon-wrapper,
.safety-badge-icon {
	background: var(--secondary-glow) !important;
	color: var(--coral-hover) !important;
	border-color: rgba(255, 219, 82, 0.32) !important;
}

.feature-card-2 .feature-icon-wrapper,
.feature-card-5 .feature-icon-wrapper,
.contact-card-phone .contact-card-icon-wrapper,
.instructor-avatar-1 {
	background: var(--primary) !important;
	color: var(--white) !important;
	border-color: var(--primary) !important;
}

.feature-card-3 .feature-icon-wrapper,
.feature-card-4 .feature-icon-wrapper,
.contact-card-whatsapp .contact-card-icon-wrapper,
.instructor-avatar-2,
.instructor-avatar-3,
.instructor-avatar-4 {
	background: var(--tertiary) !important;
	color: var(--white) !important;
	border-color: var(--tertiary) !important;
}

.hero,
.hero-production {
	background-color: #f3fbff !important;
	background-image: url("../images/hero_bg.png") !important;
	background-size: cover !important;
	background-position: center !important;
}

/* Dark theme style overrides for CTA Section */
.cta-section {
	background-color: #0f172a !important;
	background-image: linear-gradient(rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.88)), url("../images/hero_bg.png") !important;
	background-size: cover !important;
	background-position: center !important;
	border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.cta-section .cta-title {
	color: #ffffff !important;
}

.cta-section .cta-desc {
	color: rgba(255, 255, 255, 0.8) !important;
}

.hero::before,
.hero-production::before {
	background: rgba(247, 251, 255, 0.88) !important;
}

.hero-visual-card::after,
.gallery-item-overlay,
.profile-img-overlay {
	background: rgba(15, 23, 42, 0.58) !important;
}

footer {
	background: var(--bg-darker) !important;
}

.contact-card-btn-insta:hover,
.btn-coral:hover,
.btn-primary:hover,
.btn-tertiary:hover,
.btn-whatsapp:hover,
.contact-card-btn-wa:hover,
.contact-card-btn-phone:hover,
.contact-card-btn-loc:hover {
	filter: brightness(0.96);
}

/* Production polish from DESIGN.md: clear actions, solid colors, accessible states. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 3px solid var(--secondary);
	outline-offset: 3px;
}

.btn,
.contact-card-btn,
.mobile-lead-bar a,
.gallery-filter-btn,
.finder-btn,
.faq-header {
	min-height: 48px;
}

.btn,
.contact-card-btn,
.conversion-strip-item,
.program-entry-card,
.feature-card,
.contact-card-item,
.finder-card,
.form-card,
.local-search-card {
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		border-color 0.2s ease,
		background-color 0.2s ease;
}

.btn:hover,
.contact-card-btn:hover,
.conversion-strip-item:hover,
.program-entry-card:hover,
.feature-card:hover,
.contact-card-item:hover {
	transform: translateY(-2px);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
	border-color: var(--primary) !important;
	box-shadow: 0 0 0 4px var(--primary-glow) !important;
}

.contact-card-item:nth-child(3n + 1),
.finder-btn:nth-child(3n + 1) {
	border-color: rgba(52, 181, 250, 0.34) !important;
}

.contact-card-item:nth-child(3n + 2),
.finder-btn:nth-child(3n + 2) {
	border-color: rgba(50, 206, 136, 0.34) !important;
}

.contact-card-item:nth-child(3n),
.finder-btn:nth-child(3n) {
	border-color: rgba(255, 219, 82, 0.48) !important;
}

.feature-card:nth-child(3n + 1)::before,
.program-entry-card:nth-child(3n + 1)::after {
	background: var(--primary) !important;
}

.feature-card:nth-child(3n + 2)::before,
.program-entry-card:nth-child(3n + 2)::after {
	background: var(--tertiary) !important;
}

.feature-card:nth-child(3n)::before,
.program-entry-card:nth-child(3n)::after {
	background: var(--secondary) !important;
}

.contact-card-btn-insta:hover {
	background: var(--secondary) !important;
	color: var(--dark) !important;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

/* ==========================================================================
   Milestone Connected Dotted Curves (SVG Paths for Desktop, Hidden on Mobile)
   ========================================================================== */

.milestone-roadmap {
	position: relative;
	max-width: 1240px;
	margin: 40px auto 0;
}

.milestone-curves {
	position: absolute;
	top: -22px;
	left: 0;
	width: 100%;
	height: 150px;
	pointer-events: none;
	z-index: 1;
}

.curve {
	fill: none;
	stroke-width: 2.5;
	stroke-dasharray: 2 10;
	opacity: 0.85;
	stroke-linecap: round;
}

.curve-blue {
	stroke: var(--primary);
}

.curve-yellow {
	stroke: var(--secondary);
}

.curve-green {
	stroke: var(--tertiary);
}

/* Drawing animations via SVG Mask offsets */
@keyframes drawCurve {
	to {
		stroke-dashoffset: 0;
	}
}

.mask-path {
	stroke-dasharray: 100;
	stroke-dashoffset: 100;
	animation: drawCurve 1.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.mask-path-blue {
	animation-delay: 0.1s;
}

.mask-path-yellow {
	animation-delay: 0.7s;
}

.mask-path-green {
	animation-delay: 1.3s;
}

/* Redraw on hover of the roadmap container */
.milestone-roadmap:hover .mask-path {
	stroke-dashoffset: 100;
	animation: none;
}

.milestone-roadmap:hover .mask-path-blue {
	animation: drawCurve 1.5s cubic-bezier(0.25, 0.8, 0.25, 1) 0s forwards;
}

.milestone-roadmap:hover .mask-path-yellow {
	animation: drawCurve 1.5s cubic-bezier(0.25, 0.8, 0.25, 1) 0.6s forwards;
}

.milestone-roadmap:hover .mask-path-green {
	animation: drawCurve 1.5s cubic-bezier(0.25, 0.8, 0.25, 1) 1.2s forwards;
}

/* ==========================================================================
   New Premium Milestone Progression Layout (No Dotted Lines)
   ========================================================================== */

.milestones-modern-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-top: 45px;
}

@media (min-width: 576px) {
	.milestones-modern-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	.milestones-modern-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.milestone-card-modern {
	background-color: var(--bg-card);
	border: 1px solid var(--border-glass);
	border-radius: var(--radius-lg);
	padding: 36px 28px;
	position: relative;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	transition:
		transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
		box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
		border-color 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.milestone-card-top-bar {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 6px;
	background-color: var(--gray-200);
	transition: background-color 0.35s ease;
}

.milestone-card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.milestone-card-number {
	font-size: 48px;
	font-weight: 900;
	line-height: 1;
	color: var(--text-muted);
	opacity: 0.15;
	transition:
		opacity 0.35s ease,
		color 0.35s ease;
	font-family: var(--font-heading);
}

.milestone-card-icon {
	font-size: 28px;
	width: 54px;
	height: 54px;
	background-color: var(--bg-dark);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border-glass);
	box-shadow: var(--shadow-sm);
	transition:
		transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
		background-color 0.35s ease,
		border-color 0.35s ease;
}

.milestone-card-title {
	font-size: 18px;
	font-weight: 850;
	margin-bottom: 10px;
	color: var(--text-white);
	line-height: 1.3;
}

.milestone-card-desc {
	font-size: 13.5px;
	color: var(--text-secondary);
	line-height: 1.6;
}

/* Sky Blue Card Style */
.milestone-card-blue .milestone-card-top-bar {
	background-color: var(--primary);
}
.milestone-card-blue:hover {
	transform: translateY(-8px);
	border-color: var(--primary);
	box-shadow:
		var(--shadow-lg),
		0 12px 24px -10px rgba(52, 181, 250, 0.25);
}
.milestone-card-blue:hover .milestone-card-number {
	color: var(--primary);
	opacity: 0.3;
}
.milestone-card-blue:hover .milestone-card-icon {
	transform: scale(1.1) rotate(-5deg);
	background-color: var(--primary-glow);
	border-color: var(--primary);
}

/* Yellow/Gold Card Style */
.milestone-card-yellow .milestone-card-top-bar {
	background-color: var(--secondary);
}
.milestone-card-yellow:hover {
	transform: translateY(-8px);
	border-color: var(--secondary);
	box-shadow:
		var(--shadow-lg),
		0 12px 24px -10px rgba(255, 219, 82, 0.35);
}
.milestone-card-yellow:hover .milestone-card-number {
	color: var(--secondary);
	opacity: 0.3;
}
.milestone-card-yellow:hover .milestone-card-icon {
	transform: scale(1.1) rotate(5deg);
	background-color: var(--secondary-glow);
	border-color: var(--secondary);
}

/* Emerald Green Card Style */
.milestone-card-green .milestone-card-top-bar {
	background-color: var(--tertiary);
}
.milestone-card-green:hover {
	transform: translateY(-8px);
	border-color: var(--tertiary);
	box-shadow:
		var(--shadow-lg),
		0 12px 24px -10px rgba(50, 206, 136, 0.25);
}
.milestone-card-green:hover .milestone-card-number {
	color: var(--tertiary);
	opacity: 0.3;
}
.milestone-card-green:hover .milestone-card-icon {
	transform: scale(1.1) rotate(-5deg);
	background-color: var(--tertiary-glow);
	border-color: var(--tertiary);
}

/* Coral Rose Card Style */
.milestone-card-coral .milestone-card-top-bar {
	background-color: var(--coral);
}
.milestone-card-coral:hover {
	transform: translateY(-8px);
	border-color: var(--coral);
	box-shadow:
		var(--shadow-lg),
		0 12px 24px -10px rgba(244, 63, 94, 0.25);
}
.milestone-card-coral:hover .milestone-card-number {
	color: var(--coral);
	opacity: 0.3;
}
.milestone-card-coral:hover .milestone-card-icon {
	transform: scale(1.1) rotate(5deg);
	background-color: var(--coral-glow);
	border-color: var(--coral);
}

/* Turf Specifications Grid */
.turf-specs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
	margin: 30px 0 40px;
}
.turf-spec-card {
	background-color: var(--gray-100);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-md);
	padding: 16px;
	display: flex;
	align-items: center;
	gap: 14px;
	transition: var(--transition);
}
.turf-spec-card:hover {
	transform: translateY(-2px);
	border-color: var(--primary-light);
	background-color: var(--white);
	box-shadow: var(--shadow-sm);
}
.turf-spec-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	font-size: 18px;
	box-shadow: var(--shadow-xs);
	flex-shrink: 0;
	border: 1px solid var(--gray-200);
}
.turf-spec-info {
	display: flex;
	flex-direction: column;
}
.turf-spec-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--text-secondary);
	margin-bottom: 2px;
	font-weight: 700;
}
.turf-spec-value {
	font-size: 14px;
	font-weight: 800;
	color: var(--dark);
	line-height: 1.3;
}

/* Page Load and Scroll Reveal Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-fade-in-up {
	animation: fadeInUp 0.7s cubic-bezier(0.21, 0.6, 0.35, 1) forwards;
	opacity: 0;
}

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }

.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s cubic-bezier(0.21, 0.6, 0.35, 1), transform 0.8s cubic-bezier(0.21, 0.6, 0.35, 1);
}

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

/* Stagger delay for grids */
.reveal-stagger > * {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s cubic-bezier(0.21, 0.6, 0.35, 1), transform 0.8s cubic-bezier(0.21, 0.6, 0.35, 1);
}

.reveal-stagger.active > * {
	opacity: 1;
	transform: translateY(0);
}

.reveal-stagger.active > *:nth-child(1) { transition-delay: 50ms; }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 150ms; }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 250ms; }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 350ms; }
.reveal-stagger.active > *:nth-child(5) { transition-delay: 450ms; }
.reveal-stagger.active > *:nth-child(6) { transition-delay: 550ms; }
.reveal-stagger.active > *:nth-child(7) { transition-delay: 650ms; }
.reveal-stagger.active > *:nth-child(8) { transition-delay: 750ms; }

/* Final production motion layer: solid-color, lightweight, and scroll-driven. */
.scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 2500;
	height: 3px;
	pointer-events: none;
	background: transparent;
}

.scroll-progress span {
	display: block;
	width: 0;
	height: 100%;
	background: var(--primary);
	box-shadow: 0 0 16px rgba(52, 181, 250, 0.34);
	transition: width 0.12s linear;
}

:target {
	scroll-margin-top: 110px;
}

@keyframes heroRise {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes heroImageIn {
	from {
		opacity: 0;
		transform: translateY(22px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes softPulse {
	0%,
	100% {
		box-shadow: 0 16px 34px -16px rgba(50, 206, 136, 0.42);
	}
	50% {
		box-shadow: 0 18px 42px -14px rgba(50, 206, 136, 0.58);
	}
}

body.is-ready .hero-production .hero-title {
	animation: heroRise 0.72s cubic-bezier(0.21, 0.6, 0.35, 1) both;
}

body.is-ready .hero-production .hero-subtitle {
	animation: heroRise 0.72s cubic-bezier(0.21, 0.6, 0.35, 1) 0.08s both;
}

body.is-ready .hero-production .hero-desc {
	animation: heroRise 0.72s cubic-bezier(0.21, 0.6, 0.35, 1) 0.16s both;
}

body.is-ready .hero-production .hero-ctas {
	animation: heroRise 0.72s cubic-bezier(0.21, 0.6, 0.35, 1) 0.24s both;
}

body.is-ready .hero-trust-row {
	animation: heroRise 0.72s cubic-bezier(0.21, 0.6, 0.35, 1) 0.32s both;
}

body.is-ready .hero-visual-card {
	animation: heroImageIn 0.82s cubic-bezier(0.21, 0.6, 0.35, 1) 0.18s both;
}

.reveal-on-scroll,
.reveal {
	opacity: 0;
	transform: translateY(34px);
	transition:
		opacity 0.75s cubic-bezier(0.21, 0.6, 0.35, 1),
		transform 0.75s cubic-bezier(0.21, 0.6, 0.35, 1);
	will-change: opacity, transform;
}

.reveal-on-scroll.is-visible,
.reveal.is-visible,
.reveal.active {
	opacity: 1;
	transform: translateY(0);
}

.reveal-stagger > * {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.72s cubic-bezier(0.21, 0.6, 0.35, 1),
		transform 0.72s cubic-bezier(0.21, 0.6, 0.35, 1),
		box-shadow 0.24s ease,
		border-color 0.24s ease;
	will-change: opacity, transform;
}

.reveal-stagger.is-visible > *,
.reveal-stagger.active > * {
	opacity: 1;
	transform: translateY(0);
}

.reveal-stagger.is-visible > *:nth-child(1),
.reveal-stagger.active > *:nth-child(1) { transition-delay: 25ms; }
.reveal-stagger.is-visible > *:nth-child(2),
.reveal-stagger.active > *:nth-child(2) { transition-delay: 75ms; }
.reveal-stagger.is-visible > *:nth-child(3),
.reveal-stagger.active > *:nth-child(3) { transition-delay: 125ms; }
.reveal-stagger.is-visible > *:nth-child(4),
.reveal-stagger.active > *:nth-child(4) { transition-delay: 175ms; }
.reveal-stagger.is-visible > *:nth-child(5),
.reveal-stagger.active > *:nth-child(5) { transition-delay: 225ms; }
.reveal-stagger.is-visible > *:nth-child(6),
.reveal-stagger.active > *:nth-child(6) { transition-delay: 275ms; }
.reveal-stagger.is-visible > *:nth-child(7),
.reveal-stagger.active > *:nth-child(7) { transition-delay: 325ms; }
.reveal-stagger.is-visible > *:nth-child(8),
.reveal-stagger.active > *:nth-child(8) { transition-delay: 375ms; }
.reveal-stagger.is-visible > *:nth-child(9),
.reveal-stagger.active > *:nth-child(9) { transition-delay: 425ms; }
.reveal-stagger.is-visible > *:nth-child(10),
.reveal-stagger.active > *:nth-child(10) { transition-delay: 475ms; }
.reveal-stagger.is-visible > *:nth-child(11),
.reveal-stagger.active > *:nth-child(11) { transition-delay: 525ms; }
.reveal-stagger.is-visible > *:nth-child(12),
.reveal-stagger.active > *:nth-child(12) { transition-delay: 575ms; }

.btn,
.contact-card-btn,
.mobile-lead-bar a,
.hero-chip-list a,
.gallery-filter-btn,
.finder-btn {
	position: relative;
	overflow: hidden;
}

.btn:hover,
.contact-card-btn:hover,
.mobile-lead-bar a:hover,
.hero-chip-list a:hover,
.gallery-filter-btn:hover,
.finder-btn:hover {
	transform: translateY(-2px);
}

.btn:active,
.contact-card-btn:active,
.mobile-lead-bar a:active,
.gallery-filter-btn:active,
.finder-btn:active {
	transform: translateY(0) scale(0.98);
}

.btn-whatsapp,
.whatsapp-float .whatsapp-icon-btn {
	animation: softPulse 2.8s ease-in-out infinite;
}

.program-entry-card img,
.gallery-item-img,
.about-img,
.hero-visual-card img {
	transition: transform 0.65s cubic-bezier(0.21, 0.6, 0.35, 1);
}

.program-entry-card:hover img,
.gallery-item:hover .gallery-item-img,
.about-img-container:hover .about-img,
.hero-visual-card:hover img {
	transform: scale(1.045);
}

.faq-header[aria-expanded="true"] {
	border-color: rgba(52, 181, 250, 0.28);
}

.quick-menu-toggle-btn {
	background: var(--primary) !important;
	box-shadow: 0 12px 28px -14px rgba(52, 181, 250, 0.75) !important;
}

.quick-menu-container.active .quick-menu-toggle-btn {
	background: var(--secondary) !important;
	box-shadow: 0 12px 28px -14px rgba(255, 219, 82, 0.72) !important;
}

.quick-menu-container.active .quick-menu-toggle-btn .toggle-icon-bar {
	background-color: var(--dark);
}

.opt-call {
	background-color: var(--primary) !important;
}

.opt-whatsapp {
	background-color: var(--tertiary) !important;
}

.opt-map {
	background-color: var(--secondary) !important;
	color: var(--dark) !important;
}

@media (max-width: 768px) {
	:target {
		scroll-margin-top: 92px;
	}

	.scroll-progress {
		height: 2px;
	}

	.reveal-on-scroll,
	.reveal,
	.reveal-stagger > * {
		transform: translateY(22px);
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	.scroll-progress span {
		transition: none !important;
	}

	.reveal-on-scroll,
	.reveal,
	.reveal-stagger > * {
		opacity: 1 !important;
		transform: none !important;
	}
}

/* Events Page CSS Styles - Compact & Blog Redesign */
.upcoming-event-container {
	background: var(--bg-card);
	border: 1px solid var(--border-glass);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	margin-bottom: 40px;
}

@media (min-width: 992px) {
	.upcoming-event-container {
		grid-template-columns: 1.1fr 1fr;
	}
}

.upcoming-event-img-wrapper {
	position: relative;
	min-height: 250px;
	height: 100%;
}

.upcoming-event-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}

.upcoming-event-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background: var(--primary);
	color: #ffffff;
	padding: 5px 12px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
	z-index: 2;
}

.upcoming-event-details {
	padding: 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media (min-width: 992px) {
	.upcoming-event-details {
		padding: 30px;
	}
}

.upcoming-event-title {
	font-size: 24px;
	color: var(--dark);
	margin-bottom: 12px;
	font-weight: 800;
	line-height: 1.25;
}

.upcoming-event-desc {
	color: var(--gray-600);
	font-size: 14.5px;
	line-height: 1.55;
	margin-bottom: 20px;
}

.event-meta-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	margin-bottom: 20px;
	padding: 16px;
	background: var(--gray-100);
	border-radius: 8px;
}

@media (min-width: 576px) {
	.event-meta-list {
		grid-template-columns: 1fr 1fr;
	}
}

.event-meta-item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--gray-850);
	font-size: 13.5px;
	font-weight: 500;
}

.event-meta-item i {
	font-size: 14px;
	color: var(--primary);
	width: 18px;
	text-align: center;
}

/* Event Registration Form */
.event-reg-form-wrapper {
	background: var(--gray-50);
	border: 1px solid var(--gray-200);
	border-radius: 8px;
	padding: 20px;
}

.event-reg-form-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 12px;
	display: flex;
	align-items: center;
}

.event-reg-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	margin-bottom: 15px;
}

@media (min-width: 576px) {
	.event-reg-grid {
		grid-template-columns: 1fr 1fr;
	}
	.event-reg-grid .form-group-full {
		grid-column: span 2;
	}
}

/* Past Events Grid - Compact */
.past-events-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

@media (min-width: 768px) {
	.past-events-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.past-events-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.past-event-card {
	background: var(--bg-card);
	border: 1px solid var(--border-glass);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.02);
	transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.35, 1), box-shadow 0.3s cubic-bezier(0.21, 0.6, 0.35, 1);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.past-event-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
	border-color: rgba(52, 181, 250, 0.3);
}

.past-event-img-wrapper {
	height: 165px;
	overflow: hidden;
	position: relative;
}

.past-event-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.past-event-card:hover .past-event-img {
	transform: scale(1.05);
}

.past-event-info {
	padding: 18px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.past-event-date {
	font-size: 11px;
	color: var(--primary);
	font-weight: 700;
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.past-event-title {
	font-size: 17px;
	color: var(--dark);
	margin-bottom: 8px;
	font-weight: 700;
	line-height: 1.35;
}

.past-event-desc {
	color: var(--gray-600);
	font-size: 13.5px;
	line-height: 1.5;
}


