/**
 * T Cube Trainers Theme Core Stylesheet
 * Premium, Standalone, High-End Corporate UI
 */

/* ==================== 1. GLOBAL RESET & FOUNDATIONS ==================== */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: var(--font-body);
	background-color: var(--color-light);
	color: var(--color-text-dark);
	font-size: 16px;
	line-height: 1.7;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	color: var(--color-secondary);
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: 1.25rem;
}

p {
	margin-bottom: 1.5rem;
	color: #4a5568;
}

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: all 0.3s ease;
}

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

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

ul {
	list-style: none;
}

/* Screen Reader Text Helper */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

/* Container Utility */
.container {
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}

.container-narrow {
	max-width: 800px;
}

/* ==================== 2. SECTIONS & CARDS UTILITIES ==================== */
.section {
	padding: 100px 0;
	position: relative;
}

.section-dark {
	background-color: var(--color-dark);
	color: var(--color-text-light);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
	color: var(--color-text-light);
}

.section-dark p {
	color: #a0aec0;
}

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

.section-contrast {
	background-color: #0f0f0f;
	color: var(--color-text-light);
}

.section-contrast h2,
.section-contrast h3 {
	color: var(--color-text-light);
}

/* Sections Headers */
.section-header {
	margin-bottom: 60px;
	max-width: 700px;
}

.section-header-center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.pre-title {
	display: inline-block;
	color: var(--color-primary);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 12px;
	font-family: var(--font-body);
}

.section-title {
	font-size: 42px;
	font-weight: 800;
	position: relative;
	padding-bottom: 15px;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.section-header-center .section-title::after {
	left: 50%;
	transform: translateX(-50%);
}

/* Premium Button Styling */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 30px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 4px;
	transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
	cursor: pointer;
	border: 2px solid transparent;
	font-family: var(--font-body);
}

.btn-primary {
	background: linear-gradient(135deg, var(--color-primary) 0%, #8e1b1b 100%);
	color: var(--color-text-light);
	box-shadow: 0 4px 15px rgba(198, 40, 40, 0.3);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(198, 40, 40, 0.45);
	color: var(--color-text-light);
}

.btn-secondary {
	background-color: transparent;
	color: var(--color-text-light);
	border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
	background-color: var(--color-text-light);
	color: var(--color-secondary);
	border-color: var(--color-text-light);
	transform: translateY(-2px);
}

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

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

.btn-whatsapp {
	background-color: #25d366;
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
	background-color: #128c7e;
	color: #ffffff;
	transform: translateY(-2px);
}

.btn-sm {
	padding: 10px 20px;
	font-size: 12px;
}

.btn-block {
	display: flex;
	width: 100%;
}

.btn span, .btn i {
	display: inline-block;
	vertical-align: middle;
}

.btn i {
	margin-right: 8px;
}

/* Card General Design */
.card {
	background-color: #ffffff;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
	padding: 30px;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	position: relative;
	overflow: hidden;
}

.card:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* ==================== 3. STICKY HEADER NAVIGATION ==================== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	padding: 25px 0;
	transition: all 0.4s ease;
}

.site-header.scrolled {
	background-color: rgba(9, 9, 9, 0.9);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	padding: 15px 0;
	box-shadow: 0 4px 20px rgba(0,0,0,0.15);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.site-branding .site-title {
	font-size: 24px;
	font-weight: 800;
	margin-bottom: 0;
}

.site-branding .site-title a {
	color: var(--color-text-light);
	background: linear-gradient(135deg, var(--color-text-light) 0%, #C62828 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.site-header.scrolled .site-branding .site-title a {
	color: var(--color-text-light);
}

.custom-logo {
	max-height: 50px;
	width: auto;
}

/* Desktop Menu Layout */
.main-navigation ul {
	display: flex;
	align-items: center;
	gap: 32px;
}

.main-navigation ul a {
	color: rgba(255, 255, 255, 0.75);
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 8px 0;
	position: relative;
}

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

.main-navigation ul a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--color-primary);
	transition: width 0.3s ease;
}

.main-navigation ul a:hover::after,
.main-navigation ul li.current-menu-item a::after {
	width: 100%;
}

/* Mobile Hamburger Toggle */
.menu-toggle {
	display: none;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 10px;
	z-index: 1001;
}

.hamburger-box {
	width: 24px;
	height: 18px;
	display: inline-block;
	position: relative;
}

.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -1px;
	width: 24px;
	height: 2px;
	background-color: #ffffff;
	position: absolute;
	transition: transform 0.15s ease, background-color 0.15s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
	content: "";
	display: block;
	width: 24px;
	height: 2px;
	background-color: #ffffff;
	position: absolute;
	transition: transform 0.15s ease;
}

.hamburger-inner::before {
	top: -6px;
}

.hamburger-inner::after {
	bottom: -6px;
}

/* Hamburger active animation */
.menu-toggle[aria-expanded="true"] .hamburger-inner {
	transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .hamburger-inner::before {
	transform: translate3d(0, 6px, 0) rotate(-90deg);
}

.menu-toggle[aria-expanded="true"] .hamburger-inner::after {
	transform: translate3d(0, -6px, 0) rotate(-90deg);
}

/* Mobile Fullscreen Panel Overlay */
.mobile-navigation-overlay {
	position: fixed;
	top: 0;
	left: 100%;
	width: 100%;
	height: 100vh;
	background: rgba(9, 9, 9, 0.98);
	z-index: 999;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px;
	transition: left 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

.mobile-navigation-overlay.active {
	left: 0;
}

.mobile-nav ul {
	display: flex;
	flex-direction: column;
	gap: 25px;
	text-align: center;
	margin-bottom: 40px;
}

.mobile-nav ul a {
	color: #ffffff;
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-family: var(--font-heading);
}

/* ==================== 4. CINEMATIC HERO SECTION ==================== */
.hero-section {
	height: 100vh;
	min-height: 800px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background-color: var(--color-dark);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

/* Geometric Mesh Pattern Overlay */
.hero-geometric-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
					  linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
	background-size: 40px 40px;
	z-index: 1;
}

.hero-gradient-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 70% 30%, rgba(198, 40, 40, 0.15) 0%, transparent 60%),
				linear-gradient(180deg, rgba(9,9,9,0.7) 0%, rgba(9,9,9,0.98) 100%);
	z-index: 2;
}

.hero-container {
	position: relative;
	z-index: 3;
	padding-top: 100px;
}

.hero-inner {
	max-width: 900px;
}

.hero-pretitle {
	color: var(--color-accent);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 4px;
	margin-bottom: 20px;
	display: inline-block;
	animation: fadeInUp 0.8s ease forwards;
	font-family: var(--font-body);
}

.hero-title {
	font-size: 58px;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 25px;
	line-height: 1.15;
	animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.hero-title span {
	background: linear-gradient(135deg, #ffffff 40%, var(--color-accent) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-subtext {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 40px;
	max-width: 650px;
	line-height: 1.8;
	animation: fadeInUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.hero-actions {
	display: flex;
	gap: 20px;
	margin-bottom: 60px;
	animation: fadeInUp 1.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* Floating Stat Badges */
.hero-stats-row {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
	animation: fadeInUp 1.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.stat-badge {
	display: flex;
	align-items: center;
	gap: 15px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 12px 24px;
	border-radius: 6px;
	backdrop-filter: blur(8px);
}

.stat-val {
	font-size: 26px;
	font-weight: 800;
	color: var(--color-accent);
	font-family: var(--font-body);
}

.stat-lbl {
	font-size: 12px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.6);
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1.3;
}

/* Keyframe animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ==================== 5. WHO WE ARE & COUNTERS ==================== */
.split-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.about-preview-image {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.about-preview-image::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, transparent 40%, rgba(9, 9, 9, 0.8) 100%);
}

.about-preview-image img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	transition: transform 0.6s ease;
}

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

.about-counters-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 40px;
}

.counter-card {
	text-align: center;
	border-radius: 6px;
	padding: 24px 15px;
	background-color: #ffffff;
	border: 1px solid #e2e8f0;
	box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.counter-num {
	font-size: 38px;
	font-weight: 800;
	color: var(--color-primary);
	line-height: 1;
	margin-bottom: 8px;
	font-family: var(--font-body);
}

.counter-label {
	font-size: 11px;
	font-weight: 700;
	color: var(--color-secondary);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* ==================== 6. PROGRAMS GRID SHOWCASE ==================== */
.programs-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

.program-card {
	padding: 40px 30px;
	height: 100%;
	display: flex;
	flex-direction: column;
	border-top: 4px solid var(--color-primary);
}

.program-card-icon {
	width: 60px;
	height: 60px;
	border-radius: 8px;
	background-color: rgba(198, 40, 40, 0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	font-size: 24px;
	color: var(--color-primary);
	transition: all 0.3s ease;
}

.program-card:hover .program-card-icon {
	background-color: var(--color-primary);
	color: #ffffff;
	transform: scale(1.08);
}

.program-tag {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--color-primary);
	margin-bottom: 8px;
}

.program-title {
	font-size: 22px;
	font-weight: 700;
	color: var(--color-secondary);
	margin-bottom: 15px;
}

.program-desc {
	font-size: 14px;
	color: #718096;
	margin-bottom: 25px;
	flex-grow: 1;
	line-height: 1.6;
}

.program-topics-label {
	font-size: 11px;
	font-weight: 800;
	color: var(--color-secondary);
	text-transform: uppercase;
	margin-bottom: 8px;
}

.program-topics-list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 30px;
}

.program-topic-tag {
	background-color: #f1f5f9;
	color: #475569;
	font-size: 11px;
	padding: 4px 10px;
	border-radius: 4px;
	font-weight: 500;
}

.btn-text {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--color-primary);
}

.btn-text:hover {
	color: var(--color-accent);
}

.btn-text i {
	transition: transform 0.3s ease;
}

.btn-text:hover i {
	transform: translateX(4px);
}

/* ==================== 7. WHY CHOOSE US GRID ==================== */
.why-us-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.why-card {
	padding: 40px;
	border-radius: 8px;
	background-color: rgba(255,255,255, 0.02);
	border: 1px solid rgba(255,255,255, 0.05);
}

.why-icon {
	font-size: 32px;
	color: var(--color-accent);
	margin-bottom: 20px;
}

.why-title {
	font-size: 22px;
	color: #ffffff;
	margin-bottom: 12px;
}

.why-desc {
	font-size: 14px;
	color: #a0aec0;
	line-height: 1.6;
}

/* ==================== 8. TESTIMONIALS SLIDER ==================== */
.testimonials-slider-container {
	position: relative;
	overflow: hidden;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.testimonials-track {
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
	min-width: 100%;
	padding: 20px;
}

.testimonial-bubble {
	background-color: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 50px;
	text-align: center;
	position: relative;
	box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.testimonial-quote-icon {
	font-size: 48px;
	color: rgba(198, 40, 40, 0.08);
	position: absolute;
	top: 25px;
	left: 50%;
	transform: translateX(-50%);
}

.testimonial-text {
	font-family: var(--font-heading);
	font-size: 22px;
	font-style: italic;
	line-height: 1.6;
	color: var(--color-secondary);
	margin-bottom: 30px;
	position: relative;
	z-index: 2;
}

.testimonial-rating {
	color: #ffb800;
	margin-bottom: 20px;
	font-size: 14px;
}

.testimonial-author-name {
	font-size: 16px;
	font-weight: 700;
	color: var(--color-secondary);
}

.testimonial-author-role {
	font-size: 12px;
	color: #718096;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Slider navigation dots */
.slider-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 30px;
}

.slider-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #cbd5e1;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: all 0.3s ease;
}

.slider-dot.active {
	background-color: var(--color-primary);
	transform: scale(1.2);
}

/* ==================== 9. PROFESSIONAL GALLERY SYSTEM ==================== */
.gallery-filters {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.filter-btn {
	background-color: transparent;
	border: 1px solid #cbd5e1;
	color: var(--color-secondary);
	padding: 8px 20px;
	border-radius: 30px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: #ffffff;
}

/* Masonry/Grid Layout */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.gallery-item {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	height: 280px;
	cursor: pointer;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
	transition: all 0.4s ease;
}

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

.gallery-item-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(9,9,9,0.2) 0%, rgba(198, 40, 40, 0.85) 100%);
	opacity: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 25px;
	transition: opacity 0.4s ease;
}

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

.gallery-item:hover .gallery-item-image {
	transform: scale(1.08);
}

.gallery-item-cat {
	color: var(--color-text-light);
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 5px;
}

.gallery-item-zoom {
	color: var(--color-text-light);
	font-size: 20px;
	margin-top: 10px;
	align-self: flex-start;
}

/* ==================== 10. LIGHTBOX POPUP SYSTEM ==================== */
.lightbox-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(9, 9, 9, 0.96);
	z-index: 2000;
	display: none;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

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

.lightbox-content-wrapper {
	max-width: 90%;
	max-height: 85%;
	position: relative;
	transform: scale(0.95);
	transition: transform 0.3s ease;
}

.lightbox-modal.active .lightbox-content-wrapper {
	transform: scale(1);
}

.lightbox-img {
	max-width: 100%;
	max-height: 80vh;
	border-radius: 4px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-close-btn {
	position: absolute;
	top: -40px;
	right: 0;
	background: transparent;
	border: none;
	color: #ffffff;
	font-size: 28px;
	cursor: pointer;
	transition: color 0.2s;
}

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

/* ==================== 11. ENQUIRY FORM & CONTACTS ==================== */
.contact-details-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 50px;
}

.contact-detail-card {
	text-align: center;
	padding: 40px 30px;
}

.contact-detail-card i {
	font-size: 32px;
	color: var(--color-primary);
	margin-bottom: 20px;
}

.contact-detail-card h4 {
	font-size: 18px;
	margin-bottom: 10px;
}

.contact-detail-card p {
	font-size: 14px;
	color: #718096;
	margin-bottom: 0;
}

/* Enquiry Form */
.enquiry-form-card {
	max-width: 800px;
	margin: 0 auto;
	padding: 50px;
}

.form-grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 25px;
	margin-bottom: 25px;
}

.form-group {
	margin-bottom: 25px;
	display: flex;
	flex-direction: column;
}

.form-label {
	font-size: 12px;
	font-weight: 700;
	color: var(--color-secondary);
	text-transform: uppercase;
	margin-bottom: 8px;
	letter-spacing: 0.5px;
}

.form-control {
	padding: 14px 18px;
	border: 1px solid #cbd5e1;
	border-radius: 4px;
	background-color: #f8fafc;
	font-size: 14px;
	font-family: var(--font-body);
	transition: all 0.3s ease;
}

.form-control:focus {
	border-color: var(--color-primary);
	background-color: #ffffff;
	box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.1);
	outline: none;
}

textarea.form-control {
	resize: vertical;
}

/* AJAX Response Message */
.form-response-msg {
	margin-top: 25px;
	padding: 15px 20px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
	display: none;
}

.form-response-msg.success {
	background-color: #d1fae5;
	color: #065f46;
	border-left: 4px solid #10b981;
}

.form-response-msg.error {
	background-color: #fee2e2;
	color: #991b1b;
	border-left: 4px solid #ef4444;
}

/* Loading Shimmer state */
.btn-loading {
	position: relative;
	color: transparent !important;
	pointer-events: none;
}

.btn-loading::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	top: 50%;
	left: 50%;
	margin-top: -10px;
	margin-left: -10px;
	border: 2px solid #ffffff;
	border-top-color: transparent;
	border-radius: 50%;
	animation: btnSpinner 0.8s linear infinite;
}

@keyframes btnSpinner {
	to { transform: rotate(360deg); }
}

/* ==================== 12. DEDICATED INNER PAGE LAYOUTS ==================== */
.page-banner {
	padding: 150px 0 100px 0;
	background-color: var(--color-secondary);
	background-size: cover;
	background-position: center;
	position: relative;
}

.page-banner::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(9,9,9,0.7) 0%, rgba(9,9,9,0.96) 100%);
	z-index: 1;
}

.banner-content {
	position: relative;
	z-index: 2;
}

.banner-pretitle {
	display: inline-block;
	color: var(--color-accent);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 12px;
}

.banner-title {
	font-size: 46px;
	color: #ffffff;
	margin-bottom: 0;
}

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

/* General WP Editor Content Styling */
.markup-content p {
	font-size: 16px;
	margin-bottom: 1.8rem;
	color: #334155;
	line-height: 1.8;
}

.markup-content h2 {
	font-size: 32px;
	margin-top: 3.5rem;
	margin-bottom: 1.5rem;
}

.markup-content h3 {
	font-size: 24px;
	margin-top: 2.5rem;
	margin-bottom: 1.2rem;
}

.markup-content ul {
	margin-bottom: 2rem;
	padding-left: 20px;
	list-style: disc;
}

.markup-content ul li {
	margin-bottom: 8px;
}

/* Timeline Layout (About template) */
.timeline-block {
	position: relative;
	padding-left: 40px;
	margin-bottom: 40px;
}

.timeline-block::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 2px;
	background-color: var(--color-primary);
}

.timeline-block::after {
	content: '';
	position: absolute;
	left: -5px;
	top: 8px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: var(--color-primary);
	border: 2px solid var(--color-light);
}

.timeline-year {
	font-size: 20px;
	font-weight: 800;
	color: var(--color-primary);
	margin-bottom: 5px;
	font-family: var(--font-body);
}

/* Compare Grid (Why Us Page) */
.compare-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-top: 60px;
}

.compare-card {
	padding: 40px;
}

.compare-card-primary {
	border-top: 4px solid var(--color-primary);
}

.compare-list li {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 18px;
	font-size: 15px;
}

.compare-list li i {
	color: var(--color-primary);
	font-size: 16px;
	margin-top: 4px;
}

/* Program Detail Accordions (Programs Template) */
.program-detail-block {
	margin-bottom: 80px;
	padding-bottom: 80px;
	border-bottom: 1px solid #e2e8f0;
}

.program-detail-block:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.syllabus-accordion-item {
	border: 1px solid #cbd5e1;
	border-radius: 6px;
	margin-bottom: 15px;
	overflow: hidden;
}

.syllabus-accordion-header {
	background-color: #f8fafc;
	padding: 18px 24px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 700;
	color: var(--color-secondary);
	transition: background-color 0.2s;
}

.syllabus-accordion-header:hover {
	background-color: #f1f5f9;
}

.syllabus-accordion-content {
	padding: 24px;
	background-color: #ffffff;
	border-top: 1px solid #cbd5e1;
	display: none;
}

/* Scroll reveal helper classes */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

/* ==================== 12a. PREMIUM FOOTER STYLE ==================== */

/* --- Footer Wrapper --- */
.site-footer {
	position: relative;
	color: #94a3b8;
	padding-top: 100px;
	padding-bottom: 0;
	overflow: hidden;

	/* Layered cinematic dark background with crimson glow */
	background:
		radial-gradient(ellipse 80% 40% at 50% 0%, rgba(198, 40, 40, 0.13) 0%, transparent 60%),
		radial-gradient(ellipse 40% 60% at 80% 100%, rgba(139, 0, 0, 0.07) 0%, transparent 55%),
		radial-gradient(ellipse 30% 40% at 10% 80%, rgba(198, 40, 40, 0.05) 0%, transparent 50%),
		linear-gradient(180deg, #0d0d0d 0%, #060606 60%, #030303 100%);

	box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.6);
}

/* Luxury glowing top accent bar */
.site-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(198, 40, 40, 0.3) 20%,
		rgba(220, 60, 60, 0.9) 50%,
		rgba(198, 40, 40, 0.3) 80%,
		transparent 100%
	);
	box-shadow: 0 0 20px rgba(198, 40, 40, 0.4), 0 0 60px rgba(198, 40, 40, 0.15);
}

/* Subtle geometric texture overlay */
.site-footer::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle at 1px 1px, rgba(255,255,255,0.012) 1px, transparent 0);
	background-size: 40px 40px;
	pointer-events: none;
	z-index: 0;
}

/* --- Main Footer Container --- */
.footer-widgets {
	width: min(1200px, 92%);
	margin-inline: auto;
	padding: 0;
	position: relative;
	z-index: 1;
}

/* --- 4-Column Balanced Grid --- */
.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 55px;
	align-items: start;
}

/* --- Column Base --- */
.footer-col {
	display: flex;
	flex-direction: column;
}

/* --- Column 1: Brand Logo --- */
.footer-logo {
	font-size: 26px;
	font-weight: 900;
	margin-bottom: 18px;
	letter-spacing: 0.3px;
	line-height: 1.1;
	background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 50%, var(--color-accent, #e53935) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Tagline accent under logo */
.footer-tagline {
	display: block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: rgba(198, 40, 40, 0.75);
	margin-bottom: 18px;
	margin-top: -10px;
}

.brand-desc {
	font-size: 13.5px;
	line-height: 1.85;
	color: #7a8a9e;
	margin-bottom: 28px;
	max-width: 285px;
}

/* --- Column Headings --- */
.footer-col-title {
	font-size: 11px;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 28px;
	position: relative;
	padding-bottom: 14px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
}

.footer-col-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 28px;
	height: 2px;
	background: linear-gradient(90deg, var(--color-primary, #c62828), transparent);
	border-radius: 2px;
}

/* --- Footer Nav Links --- */
.footer-links-list {
	display: flex;
	flex-direction: column;
	gap: 2px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links-list li {
	margin: 0;
}

.footer-links-list a {
	color: #6b7f96;
	font-size: 14px;
	font-weight: 400;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	position: relative;
	padding: 6px 0 6px 0;
	transition: color 0.3s ease, transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
	text-decoration: none;
}

.footer-links-list a i.link-icon {
	font-size: 8px;
	color: rgba(198, 40, 40, 0.35);
	transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), color 0.3s ease;
	flex-shrink: 0;
}

/* Animated underline reveal */
.footer-links-list a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 4px;
	width: 0;
	height: 1px;
	background: linear-gradient(90deg, var(--color-primary, #c62828), rgba(198, 40, 40, 0.4));
	transition: width 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.footer-links-list a:hover {
	color: #e8edf3;
	transform: translateX(6px);
}

.footer-links-list a:hover i.link-icon {
	color: var(--color-primary, #c62828);
	transform: translateX(2px);
}

.footer-links-list a:hover::after {
	width: 100%;
}

/* --- Contact Info Column --- */
.contact-details-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.contact-details-list li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.contact-icon {
	width: 36px;
	height: 36px;
	min-width: 36px;
	border-radius: 50%;
	background: rgba(198, 40, 40, 0.08);
	border: 1px solid rgba(198, 40, 40, 0.15);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--color-primary, #c62828);
	font-size: 13px;
	transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
	flex-shrink: 0;
	margin-top: 2px;
}

.contact-text {
	font-size: 13.5px;
	line-height: 1.65;
	color: #6b7f96;
	flex: 1;
}

.contact-link {
	transition: color 0.28s ease;
	text-decoration: none;
}

.contact-link:hover {
	color: #dce6f0;
}

.contact-details-list li:hover .contact-icon {
	background: var(--color-primary, #c62828);
	border-color: var(--color-primary, #c62828);
	color: #ffffff;
	transform: scale(1.12) rotate(-5deg);
	box-shadow: 0 6px 18px rgba(198, 40, 40, 0.35);
}

/* --- WhatsApp Button — Premium Pill --- */
.whatsapp-footer-cta {
	margin-top: 26px;
}

.whatsapp-footer-cta .btn-whatsapp {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: linear-gradient(135deg, #1db954 0%, #0f9d58 100%);
	color: #ffffff !important;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.3px;
	padding: 12px 26px;
	box-shadow:
		0 4px 20px rgba(29, 185, 84, 0.25),
		0 1px 0 rgba(255, 255, 255, 0.1) inset;
	transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
	border: none;
	text-decoration: none;
	position: relative;
	overflow: hidden;
}

.whatsapp-footer-cta .btn-whatsapp::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
	transition: left 0.5s ease;
}

.whatsapp-footer-cta .btn-whatsapp:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow:
		0 10px 30px rgba(29, 185, 84, 0.4),
		0 4px 12px rgba(0, 0, 0, 0.2);
	background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.whatsapp-footer-cta .btn-whatsapp:hover::before {
	left: 100%;
}

.whatsapp-footer-cta .btn-whatsapp .fab {
	font-size: 16px;
}

/* --- Social Icons — Glassmorphism Circular --- */
.social-links-wrapper {
	display: flex;
	gap: 11px;
	flex-wrap: wrap;
}

.social-link {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.09);
	color: #6b7f96;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
	position: relative;
	overflow: hidden;
}

.social-link::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: radial-gradient(circle at 40% 40%, rgba(255,255,255,0.06), transparent 70%);
	opacity: 0;
	transition: opacity 0.35s ease;
}

.social-link:hover {
	background: var(--color-primary, #c62828);
	border-color: rgba(198, 40, 40, 0.5);
	color: #ffffff;
	transform: translateY(-5px);
	box-shadow:
		0 8px 25px rgba(198, 40, 40, 0.4),
		0 0 0 1px rgba(198, 40, 40, 0.2);
}

.social-link:hover::before {
	opacity: 1;
}

/* --- Footer Bottom Bar --- */
.footer-bottom {
	position: relative;
	z-index: 1;
	margin-top: 70px;
	padding: 28px 0;
	background: rgba(0, 0, 0, 0.35);
	border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.footer-bottom::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(198, 40, 40, 0.6), transparent);
}

.footer-bottom-flex {
	width: min(1200px, 92%);
	margin-inline: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}

.footer-copyright p,
.footer-designer p {
	font-size: 12px;
	color: #3d4f63;
	margin-bottom: 0;
	letter-spacing: 0.2px;
}

.footer-bottom-links {
	display: flex;
	align-items: center;
	gap: 8px;
}

.footer-policy-link {
	color: #3d4f63;
	font-size: 12px;
	text-decoration: none;
	transition: color 0.28s ease;
	letter-spacing: 0.2px;
}

.footer-policy-link:hover {
	color: #c0cdd8;
}

.separator-dot {
	color: #252f3a;
	font-size: 10px;
}

/* ==================== 13. RESPONSIVE BREAKPOINTS ==================== */

/* Tablet (1024px) */
@media (max-width: 1024px) {
	.programs-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.gallery-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.why-us-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.split-layout {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.about-preview-image img {
		height: 380px;
	}
	
	.hero-title {
		font-size: 46px;
	}

	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 48px 36px;
	}
}

/* Small Tablet / Mobile Landscape (768px) */
@media (max-width: 768px) {
	.section {
		padding: 80px 0;
	}

	.menu-toggle {
		display: block;
	}

	.main-navigation,
	.header-cta {
		display: none;
	}

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

	.hero-subtext {
		font-size: 16px;
	}

	.hero-stats-row {
		gap: 20px;
	}

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

	.contact-details-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.form-grid-2 {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.enquiry-form-card {
		padding: 30px 20px;
	}

	.compare-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.about-counters-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 48px;
		text-align: center;
	}

	.footer-logo {
		margin-inline: auto;
	}

	.footer-tagline {
		display: block;
		text-align: center;
	}

	.brand-desc {
		margin-inline: auto;
		max-width: 340px;
	}

	.footer-col-title::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.footer-links-list {
		align-items: center;
	}

	.footer-links-list a {
		justify-content: center;
	}

	.footer-links-list a:hover {
		transform: translateX(0) scale(1.02);
	}

	.social-links-wrapper {
		justify-content: center;
		margin-top: 18px;
	}

	.contact-details-list li {
		justify-content: center;
		flex-direction: row;
		text-align: left;
		max-width: 280px;
		margin-inline: auto;
	}

	.whatsapp-footer-cta {
		text-align: center;
	}

	.footer-bottom {
		margin-top: 50px;
	}

	.footer-bottom-flex {
		flex-direction: column;
		gap: 14px;
		text-align: center;
	}

	.footer-bottom-links {
		justify-content: center;
	}
}

/* Mobile Portrait (480px) */
@media (max-width: 480px) {
	.hero-title {
		font-size: 32px;
	}

	.hero-actions {
		flex-direction: column;
		gap: 15px;
	}

	.hero-actions .btn {
		width: 100%;
	}

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

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

	.gallery-filters {
		gap: 8px;
	}

	.filter-btn {
		padding: 6px 14px;
		font-size: 11px;
	}

	.testimonial-bubble {
		padding: 30px 20px;
	}

	.testimonial-text {
		font-size: 16px;
	}
}
