:root {
	/* ========================================
	   FONT VARIABLES
	   ======================================== */
	--font-base: "Work Sans", sans-serif;

	/* ========================================
	   BRAND COLORS (from new design _variables.scss)
	   Primary: #1d1e56 (dark blue)
	   Secondary: #de5983 (pink)
	   ======================================== */
	--color-primary: #1d1e56;
	--color-primary-rgb: 29, 30, 86;
	--color-secondary: #de5983;
	--color-secondary-rgb: 222, 89, 131;
	--color-accent: #5798b5;
	--color-success: #4b79b7;
	--color-yellow: #aeae03;
	--color-muted-sage: #9661735f;

	/* ========================================
	   NEUTRAL COLORS
	   ======================================== */
	--color-white: #ffffff;
	--color-white-rgb: 255, 255, 255;
	--color-black: #000000;
	--color-black-rgb: 0, 0, 0;
	--neutral-dark: #0e0e17;
	--neutral-dark-rgb: 14, 14, 23;
	--color-light:#ffffff;

	/* ========================================
	   FONT COLORS (from new design)
	   ======================================== */
	--text-light: #ffffff;
	--text-medium: #555555;
	--text-dark: #11135e;
	--text-silv: #55555574;

	/* ========================================
	   BUTTON COLORS
	   ======================================== */
	--btn-primary-bg: var(--color-primary);
	--btn-primary-color: var(--text-light);
	--btn-secondary-bg: var(--color-secondary);
	--btn-secondary-color: var(--text-light);

	/* ========================================
	   DARK SHADES
	   ======================================== */
	--color-dark-1: #0e0e17;
	--color-dark-1-rgb: 14, 14, 23;
	--color-dark-2: #1d1e56;
	--color-dark-2-rgb: 29, 30, 86;
	--color-dark-3: #151640;
	--color-dark-3-rgb: 21, 22, 64;
	--color-dark-4: #0a0a12;
	--color-dark-4-rgb: 10, 10, 18;
	--color-dark-5: #2a2b7a;
	--color-dark-6: #3a3b9a;
	--color-dark-7: #1a1a2e;
	--color-dark-7-rgb: 26, 26, 46;

	/* ========================================
	   GRAY SHADES
	   ======================================== */
	--color-gray-900: #333333;
	--color-gray-700: #666666;
	--color-gray-600: #6c757d;
	--color-gray-100: #f8f9fc;

	/* ========================================
	   ACCENT COLORS
	   ======================================== */
	--color-gold: #ffc107;
	--color-sea-nymph: #70a496;
	--color-green-1: #70a496;
	--color-green-2: #5a8a7a;

	/* ========================================
	   SHADOWS (from new design)
	   ======================================== */
	--text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
	--box-shadow-light: 0 4px 12px rgba(0, 0, 0, 0.15);
	--box-shadow-heavy: 0 8px 20px rgba(0, 0, 0, 0.25);
	--box-shadow-secondary: 0 8px 20px #da9baf39;

	/* ========================================
	   OVERLAYS (from new design)
	   ======================================== */
	--black-overlay: #00000050;
	--secondary-overlay: #da9baf39;
	--primary-overlay: #11135e99;
	--white-overlay: #ffffff13;

	/* ========================================
	   BACKGROUND RGB VALUES
	   ======================================== */
	--color-body-overlay-rgb: 17, 19, 94;
	--color-nav-bg-1-rgb: 10, 10, 18;
	--color-nav-bg-2-rgb: 25, 26, 75;
	--color-nav-bg-scrolled-1-rgb: 8, 8, 15;
	--color-nav-bg-scrolled-2-rgb: 20, 21, 65;

	/* ========================================
	   BRAND ALIASES (for backward compatibility)
	   --color-brand uses secondary (pink) color
	   ======================================== */
	--color-brand: #de5983;
	--color-brand-rgb: 222, 89, 131;
	--color-brand-2: #e47a9c;
	--color-brand-2-rgb: 228, 122, 156;
	--color-brand-3: #f09ab5;

	/* ========================================
	   TEXT COLOR VARIABLES
	   ======================================== */
	--color-text: #2d3748;
	--color-text-muted: #718096;
	--white: #ffffff;
}

/* ========================================
   GLOBAL IMPROVEMENTS
   ======================================== */
html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-base);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

a:focus,
button:focus {
	outline: 2px solid var(--color-brand);
	outline-offset: 2px;
}

::-webkit-scrollbar {
	width: 10px;
}
::-webkit-scrollbar-track {
	background: var(--color-dark-1);
}
::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, var(--color-brand), var(--color-dark-2));
	border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
	background: var(--color-brand);
}

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

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

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

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.03);
	}
}

@keyframes shimmer {
	0% {
		background-position: -200% 0;
	}
	100% {
		background-position: 200% 0;
	}
}

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

@keyframes glow {
	0%, 100% {
		box-shadow: 0 0 20px rgba(var(--color-brand-rgb), 0.3);
	}
	50% {
		box-shadow: 0 0 40px rgba(var(--color-brand-rgb), 0.5);
	}
}

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

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

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

.animate-fadeInLeft {
	animation: fadeInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-fadeInRight {
	animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-scaleIn {
	animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

[data-animate] {
	opacity: 0;
	transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animate-visible {
	opacity: 1;
}

/* ========================================
   HEADER + NAVBAR
   ======================================== */
nav.navbar.navbar-expand-lg {
	position: sticky;
	top: 0;
	background: linear-gradient(135deg, rgba(var(--color-nav-bg-1-rgb), 0.95), rgba(var(--color-nav-bg-2-rgb), 0.95)) !important;
	backdrop-filter: blur(25px) saturate(180%);
	-webkit-backdrop-filter: blur(25px) saturate(180%);
	box-shadow: 0 4px 40px rgba(var(--color-black-rgb), 0.2), 0 1px 0 rgba(var(--color-white-rgb), 0.05) inset;
	z-index: 9999;
	width: 100%;
	height: 90px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border-bottom: 1px solid rgba(var(--color-brand-rgb), 0.1);
}

nav.navbar.navbar-expand-lg.scrolled {
	height: 72px;
	background: linear-gradient(135deg, rgba(var(--color-nav-bg-scrolled-1-rgb), 0.98), rgba(var(--color-nav-bg-scrolled-2-rgb), 0.98)) !important;
	box-shadow: 0 8px 50px rgba(var(--color-black-rgb), 0.3), 0 1px 0 rgba(var(--color-white-rgb), 0.03) inset;
	border-bottom: 1px solid rgba(var(--color-brand-rgb), 0.15);
}

nav.navbar .container-fluid {
	padding: 0 4rem;
	max-width: 1500px;
	margin: 0 auto;
	height: 100%;
	display: flex;
	align-items: center;
}

nav.navbar .navbar-toggler {
	color: var(--color-brand);
	border: 1px solid rgba(var(--color-brand-rgb), 0.3);
	padding: 0.35rem 0.5rem;
	border-radius: 0.5rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	background: rgba(var(--color-brand-rgb), 0.08);
}

nav.navbar .navbar-toggler:hover {
	border-color: var(--color-brand);
	background: rgba(var(--color-brand-rgb), 0.15);
	transform: scale(1.02);
}

nav.navbar .navbar-toggler:focus {
	box-shadow: 0 0 0 2px rgba(var(--color-brand-rgb), 0.2);
}

nav.navbar .navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
	width: 1.1em;
	height: 1.1em;
}

nav.navbar .navbar-brand {
	width: auto;
	transition: all 0.3s ease;
	position: relative;
	background: var(--color-white);
	padding: 4px 8px;
	border-radius: 6px;
	box-shadow: 0 2px 6px rgba(var(--color-black-rgb), 0.1);
}

nav.navbar .navbar-brand:hover {
	transform: scale(1.02);
	box-shadow: 0 3px 10px rgba(var(--color-black-rgb), 0.12);
}

nav.navbar .navbar-brand .navbar-logo {
	width: 80px;
	height: auto;
	object-fit: contain;
	display: block;
}

nav.navbar .navbar-brand.navbar-brand--sm {
	padding: 4px 8px;
	border-radius: 5px;
}

nav.navbar .navbar-brand.navbar-brand--sm .navbar-logo {
	width: 70px;
}

nav.navbar .nav-item {
	margin: 0 0.15rem;
}

nav.navbar .nav-item .nav-link {
	text-transform: capitalize;
	color: rgba(var(--color-white-rgb), 0.9) !important;
	font-size: 0.92rem;
	font-weight: 500;
	padding: 0.6rem 1.1rem;
	border-radius: 0.6rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	letter-spacing: 0.3px;
}

nav.navbar .nav-item .nav-link::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(var(--color-brand-rgb), 0.12), rgba(var(--color-brand-rgb), 0.05));
	border-radius: 0.6rem;
	opacity: 0;
	transition: opacity 0.3s ease;
}

nav.navbar .nav-item .nav-link:hover::before {
	opacity: 1;
}

nav.navbar .nav-item .nav-link::after {
	content: '';
	position: absolute;
	bottom: 4px;
	left: 50%;
	width: 0;
	height: 2.5px;
	background: linear-gradient(90deg, var(--color-brand), var(--color-brand-2));
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	transform: translateX(-50%);
	border-radius: 2px;
}

nav.navbar .nav-item .nav-link:hover {
	color: var(--color-white) !important;
}

nav.navbar .nav-item .nav-link:hover::after {
	width: 55%;
}

nav.navbar .nav-item .nav-link.active {
	color: var(--color-brand) !important;
}

nav.navbar .nav-item .nav-link.active::after {
	width: 55%;
}

nav.navbar .account-dropdown {
	background: linear-gradient(135deg, var(--color-brand), var(--color-brand-2));
	color: var(--color-white);
	border: none;
	padding: 0.5rem 1.25rem;
	border-radius: 8px;
	font-size: 0.88rem;
	box-shadow: 0 3px 12px rgba(var(--color-brand-rgb), 0.3);
	cursor: pointer;
	width: fit-content;
	transition: all 0.3s ease;
	min-height: 40px;
	display: flex;
	align-items: center;
	gap: 0.4rem;
	position: relative;
}

nav.navbar .account-dropdown:hover {
	background: linear-gradient(135deg, var(--color-brand-2), var(--color-brand));
	transform: translateY(-1px);
	box-shadow: 0 5px 18px rgba(var(--color-brand-rgb), 0.4);
}

nav.navbar .account-dropdown:hover .nav-link {
	color: var(--color-white) !important;
}

nav.navbar .account-dropdown .nav-link {
	text-transform: capitalize;
	color: var(--color-white) !important;
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.2px;
	padding: 0;
}

nav.navbar .account-dropdown .nav-link::after,
nav.navbar .account-dropdown .nav-link::before {
	display: none;
}

nav.navbar .account-dropdown .dropdown-menu {
	margin-top: 0.5rem;
	background: var(--color-white);
	border: 1px solid rgba(var(--color-black-rgb), 0.08);
	border-radius: 8px;
	box-shadow: 0 8px 25px rgba(var(--color-black-rgb), 0.12);
	padding: 0.4rem;
	min-width: 180px;
}

nav.navbar .account-dropdown .dropdown-menu .dropdown-item {
	color: var(--color-gray-900);
	text-transform: capitalize;
	font-weight: 500;
	padding: 0.55rem 1rem;
	border-radius: 6px;
	transition: all 0.2s ease;
	font-size: 0.85rem;
}

nav.navbar .account-dropdown .dropdown-menu .dropdown-item:hover {
	background: rgba(var(--color-brand-rgb), 0.1);
	color: var(--color-brand);
}

@media (max-width: 990px) {
	nav.navbar .container-fluid {
		padding: 0 1.5rem;
	}
	nav.navbar .offcanvas-start {
		height: 100vh;
		width: 85% !important;
		max-width: 380px;
		border-right: 1px solid rgba(var(--color-brand-rgb), 0.2);
	}
	nav.navbar .offcanvas-body {
		flex-direction: column;
		justify-content: start !important;
		padding: 1.5rem;
		gap: 1rem;
	}
	nav.navbar .offcanvas-body,
	nav.navbar .offcanvas-header {
		background: linear-gradient(180deg, var(--color-dark-4) 0%, var(--color-dark-3) 100%);
	}
	nav.navbar .offcanvas-header {
		padding: 1.25rem 1.5rem;
		border-bottom: 1px solid rgba(var(--color-brand-rgb), 0.15);
	}
	nav.navbar .offcanvas-body .navbar-nav {
		width: 100%;
		gap: 0.5rem;
	}
	nav.navbar .offcanvas-body .navbar-nav .nav-item .nav-link {
		padding: 0.85rem 1.25rem;
		font-size: 1rem;
		border-radius: 0.75rem;
	}
	nav.navbar .offcanvas-body .navbar-nav .nav-item .nav-link:hover {
		background: rgba(var(--color-brand-rgb), 0.1);
	}
	nav.navbar .account-dropdown {
		width: 100%;
		justify-content: center;
		margin-top: 1rem;
		padding: 0.9rem 1.5rem;
	}
	nav.navbar .account-dropdown .dropdown-toggle {
		color: var(--color-white) !important;
	}
	nav.navbar .account-dropdown .dropdown-menu {
		width: 100%;
		margin-top: 0.5rem;
	}
}

body.app-page {
	position: relative;
	min-height: 100vh;
}

body.app-page::before {
	content: "";
	position: fixed;
	inset: 0;
	background-color: rgba(var(--color-body-overlay-rgb), 0.6);
	z-index: -1;
}

body.app-page::after {
	content: "";
	position: fixed;
	inset: 0;
	background: var(--body-bg-image) center/cover no-repeat;
	z-index: -2;
}

/* ========================================
   FOOTER
   ======================================== */
footer.footer {
	height: max-content;
	background-image: linear-gradient(135deg, rgba(var(--color-dark-1-rgb), 0.95), rgba(var(--color-dark-2-rgb), 0.92)), var(--footer-bg-image) !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	box-shadow: 0 -5px 30px rgba(var(--color-black-rgb), 0.2) !important;
	padding: 0 !important;
	position: relative;
}

footer.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--color-brand), var(--color-secondary), var(--color-brand));
}

footer.footer .container {
	padding: 1.5rem 1.5rem 1rem !important;
	max-width: 1200px !important;
}

.footer-grid {
	display: grid;
	grid-template-columns: 150px 1fr 1.8fr;
	gap: 1.5rem;
	align-items: start;
}

.footer-brand {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
}

.footer-links,
.footer-contact {
	padding: 0;
}

.footer-title {
	color: #ffffff;
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.6rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid rgba(var(--color-brand-rgb), 0.4);
	position: relative;
}

.footer-title::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 40px;
	height: 2px;
	background: var(--color-brand);
}

.footer-list {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

/* Quick Links - 2 columns layout */
.footer-links .footer-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.25rem 1rem;
}

footer.footer .footer-item {
	margin-bottom: 0 !important;
}

footer.footer .footer-item .footer-link {
	text-decoration: none !important;
	text-transform: capitalize !important;
	color: rgba(var(--color-white-rgb), 0.8) !important;
	font-size: 0.85rem !important;
	transition: all 0.3s ease !important;
	position: relative !important;
	padding-left: 0 !important;
	display: inline-block;
}

footer.footer .footer-item .footer-link::before {
	content: '›';
	position: absolute;
	left: -15px;
	opacity: 0;
	transition: all 0.3s ease;
	color: var(--color-brand);
}

footer.footer .footer-item .footer-link:hover {
	color: var(--color-brand) !important;
	padding-left: 15px !important;
}

footer.footer .footer-item .footer-link:hover::before {
	opacity: 1;
	left: 0;
}

footer.footer .info-item {
	display: flex !important;
	align-items: center !important;
	margin-bottom: 0.35rem !important;
	padding: 0.2rem 0 !important;
}

footer.footer .info-item .fa-solid {
	color: var(--color-brand) !important;
	font-size: 0.8rem !important;
	width: 22px !important;
	height: 22px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	background: rgba(var(--color-brand-rgb), 0.15);
	border-radius: 50%;
	flex-shrink: 0;
}

footer.footer .info-item .company-info {
	margin-left: 8px !important;
	color: rgba(var(--color-white-rgb), 0.85) !important;
	text-transform: none !important;
	font-size: 0.8rem !important;
}

footer.footer .copy-right {
	color: rgba(var(--color-white-rgb), 0.7) !important;
	font-size: 0.75rem !important;
	padding: 0.6rem 1rem !important;
	background: rgba(var(--color-black-rgb), 0.25);
	border-top: 1px solid rgba(var(--color-white-rgb), 0.1);
	margin-top: 0.5rem;
}

footer.footer .copy-right hr {
	display: none;
}

.footer-logo-wrapper {
	background: var(--color-white);
	padding: 6px 10px;
	border-radius: 8px;
	display: inline-block;
	box-shadow: 0 4px 15px rgba(var(--color-black-rgb), 0.15);
	transition: transform 0.3s ease;
}

.footer-logo-wrapper:hover {
	transform: translateY(-3px);
}

.footer-logo {
	max-width: 80px;
	height: auto;
	display: block;
}

.footer-logo:hover {
	transform: none;
}

/* ========================================
   SESSION/EVENT DETAIL PAGE STYLES
   ======================================== */

/* Session Hero with Background */
.session-hero.hero--with-bg {
	background-size: cover;
	background-position: center;
	position: relative;
}

.session-hero.hero--with-bg::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(var(--color-secondary-rgb), 0.9) 0%, rgba(var(--color-primary-rgb), 0.85) 100%);
	z-index: 1;
}

.session-hero .container {
	position: relative;
	z-index: 2;
}

/* Session Details Section */
.session-details-section {
	background: var(--color-light);
}

/* Session Card */
.session-card {
	background: var(--color-white);
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(var(--color-black-rgb), 0.08);
	overflow: hidden;
}

.session-card__header {
	background: linear-gradient(135deg, var(--color-brand), var(--color-primary));
	padding: 1.25rem 1.5rem;
}

.session-card__title {
	color: var(--color-white);
	font-size: 1.25rem;
	font-weight: 600;
	margin: 0;
	display: flex;
	align-items: center;
}

.session-card__title i {
	opacity: 0.8;
}

.session-card__body {
	padding: 1.5rem;
}

.session-card__body .rich-description {
	color: #333333 !important;
	line-height: 1.8;
	font-size: 1rem;
}

.session-card__body .rich-description p {
	margin-bottom: 1rem;
	color: #333333 !important;
}

.session-card__body .rich-description ul.clean-list {
	padding-left: 1.5rem;
	margin-bottom: 1rem;
	color: #333333 !important;
}

.session-card__body .rich-description ul.clean-list li {
	margin-bottom: 0.5rem;
	position: relative;
	color: #333333 !important;
}

/* Session Sidebar */
.session-sidebar {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

/* Sidebar Card */
.sidebar-card {
	background: var(--color-white);
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(var(--color-black-rgb), 0.08);
	overflow: hidden;
}

.sidebar-card--primary {
	border: 2px solid var(--color-brand);
}

.sidebar-card__header {
	background: linear-gradient(135deg, var(--color-brand), var(--color-secondary));
	padding: 1rem 1.25rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.sidebar-card--primary .sidebar-card__header {
	background: linear-gradient(135deg, var(--color-brand), var(--color-secondary));
}

.sidebar-card__header i {
	color: var(--color-white);
	font-size: 1.1rem;
	opacity: 0.9;
}

.sidebar-card__header h5 {
	color: var(--color-white);
	font-size: 1rem;
	font-weight: 600;
	margin: 0;
}

.sidebar-card__body {
	padding: 1.25rem;
}

/* Join Buttons */
.join-buttons {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.btn-join {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.875rem 1.25rem;
	border-radius: 10px;
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-join--speaker {
	background: transparent;
	border: 2px solid var(--color-brand);
	color: var(--color-brand);
}

.btn-join--speaker:hover {
	background: var(--color-brand);
	color: var(--color-white);
	transform: translateY(-2px);
}

.btn-join--viewer {
	background: linear-gradient(135deg, var(--color-brand), var(--color-secondary));
	border: none;
	color: var(--color-white);
	box-shadow: 0 4px 15px rgba(var(--color-brand-rgb), 0.3);
}

.btn-join--viewer:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(var(--color-brand-rgb), 0.4);
	color: var(--color-white);
}

.join-note {
	margin-top: 1rem;
	margin-bottom: 0;
	font-size: 0.85rem;
	color: var(--color-text-muted);
	text-align: center;
}

/* Additional Join Button Variants */
.btn-join--meeting {
	background: linear-gradient(135deg, #28a745, #20c997);
	border: none;
	color: var(--color-white);
	box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-join--meeting:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
	color: var(--color-white);
}

.btn-join--meeting-link {
	background: linear-gradient(135deg, rgba(23, 162, 184, 0.1), rgba(23, 162, 184, 0.2));
	border: 2px solid #17a2b8;
	color: #17a2b8;
	text-decoration: none;
	cursor: pointer;
}

.btn-join--meeting-link:hover {
	background: linear-gradient(135deg, #17a2b8, #138496);
	color: var(--color-white);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(23, 162, 184, 0.4);
}

.btn-join--request {
	background: transparent;
	border: 2px solid var(--color-secondary);
	color: var(--color-secondary);
}

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

.btn-join--status {
	cursor: default;
	pointer-events: none;
}

.btn-join--pending {
	background: rgba(255, 193, 7, 0.15);
	border: 2px solid #ffc107;
	color: #856404;
}

.btn-join--approved {
	background: rgba(40, 167, 69, 0.15);
	border: 2px solid #28a745;
	color: #155724;
}

.btn-join--countdown {
	background: rgba(23, 162, 184, 0.15);
	border: 2px solid #17a2b8;
	color: #0c5460;
	cursor: default;
	pointer-events: none;
}

.btn-join--ended {
	background: rgba(108, 117, 125, 0.15);
	border: 2px solid #6c757d;
	color: #495057;
	cursor: default;
	pointer-events: none;
}

/* Details List */
.details-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.details-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 0.875rem 0;
	border-bottom: 1px solid rgba(var(--color-black-rgb), 0.06);
}

.details-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.details-item:first-child {
	padding-top: 0;
}

.details-icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: linear-gradient(135deg, rgba(var(--color-brand-rgb), 0.1), rgba(var(--color-secondary-rgb), 0.1));
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.details-icon i {
	color: var(--color-brand);
	font-size: 0.95rem;
}

.details-content {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.details-label {
	font-size: 0.8rem;
	color: var(--color-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.details-value {
	font-size: 0.95rem;
	color: var(--color-text);
	font-weight: 500;
}

/* Speakers List */
.speakers-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.speaker-chip {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.625rem;
	background: rgba(var(--color-brand-rgb), 0.05);
	border-radius: 10px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.speaker-chip:hover {
	background: rgba(var(--color-brand-rgb), 0.1);
	transform: translateX(5px);
}

.speaker-chip__avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--color-white);
	box-shadow: 0 2px 8px rgba(var(--color-black-rgb), 0.1);
}

.speaker-chip__name {
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--color-text);
}

.speaker-label {
	color: var(--color-text);
	font-size: 0.95rem;
}

/* ========================================
   SPEAKERS PAGE STYLES
   ======================================== */

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

/* Speaker Card */
.speaker-card {
	background: var(--color-white);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(var(--color-black-rgb), 0.08);
	transition: all 0.4s ease;
	height: 100%;
}

.speaker-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 40px rgba(var(--color-brand-rgb), 0.2);
}

.speaker-card__image {
	position: relative;
	overflow: hidden;
	background: #f5f5f5;
}

.speaker-card__image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s ease;
}

.speaker-card:hover .speaker-card__image img {
	transform: scale(1.08);
}

.speaker-card__overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(var(--color-brand-rgb), 0.9), rgba(var(--color-secondary-rgb), 0.9));
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 0.4s ease;
}

.speaker-card:hover .speaker-card__overlay {
	opacity: 1;
}

.speaker-card__view {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--color-white);
	font-weight: 600;
	font-size: 0.85rem;
	padding: 0.5rem 1rem;
	background: rgba(var(--color-white-rgb), 0.2);
	border-radius: 50px;
	transform: translateY(15px);
	transition: all 0.4s ease;
}

.speaker-card:hover .speaker-card__view {
	transform: translateY(0);
}

.speaker-card__content {
	padding: 0.875rem;
	text-align: center;
}

.speaker-card__name {
	margin: 0 0 0.25rem 0;
	font-size: 0.95rem;
	font-weight: 600;
}

.speaker-card__name a {
	color: var(--color-text);
	text-decoration: none;
	transition: color 0.3s ease;
}

.speaker-card__name a:hover {
	color: var(--color-brand);
}

.speaker-card__title {
	margin: 0;
	font-size: 0.8rem;
	color: var(--color-text-muted);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Pagination Styles */
.pagination-wrapper {
	display: flex;
	justify-content: center;
}

.pagination-wrapper .pagination {
	gap: 0.5rem;
}

.pagination-wrapper .page-item .page-link {
	border: none;
	background: var(--color-white);
	color: var(--color-text);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	font-weight: 500;
	box-shadow: 0 2px 8px rgba(var(--color-black-rgb), 0.08);
	transition: all 0.3s ease;
}

.pagination-wrapper .page-item .page-link:hover {
	background: var(--color-brand);
	color: var(--color-white);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(var(--color-brand-rgb), 0.3);
}

.pagination-wrapper .page-item.active .page-link {
	background: linear-gradient(135deg, var(--color-brand), var(--color-secondary));
	color: var(--color-white);
	box-shadow: 0 4px 15px rgba(var(--color-brand-rgb), 0.4);
}

.pagination-wrapper .page-item.disabled .page-link {
	background: var(--color-light);
	color: var(--color-text-muted);
	cursor: not-allowed;
}

/* Speakers Page Responsive */
@media (max-width: 576px) {
	.speaker-card__content {
		padding: 0.75rem;
	}
	
	.speaker-card__name {
		font-size: 0.9rem;
	}
	
	.speaker-card__title {
		font-size: 0.75rem;
	}
	
	.pagination-wrapper .page-item .page-link {
		width: 36px;
		height: 36px;
		font-size: 0.9rem;
	}
}

/* ========================================
   SPEAKER PROFILE PAGE STYLES
   ======================================== */

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

/* Speaker Profile Card */
.speaker-profile-card {
	background: var(--color-white);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 25px rgba(var(--color-black-rgb), 0.08);
	position: sticky;
	top: 100px;
}

.speaker-profile-card__image {
	width: 100%;
	background: linear-gradient(135deg, rgba(var(--color-brand-rgb), 0.1), rgba(var(--color-secondary-rgb), 0.1));
}

.speaker-profile-card__image img {
	width: 100%;
	height: auto;
	display: block;
}

.speaker-profile-card__content {
	padding: 1.5rem;
	text-align: center;
}

.speaker-profile-card__name {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-text);
	margin: 0 0 0.5rem 0;
}

.speaker-profile-card__title {
	font-size: 1rem;
	color: var(--color-brand);
	margin: 0 0 1.25rem 0;
	font-weight: 500;
}

.speaker-profile-card__info {
	border-top: 1px solid rgba(var(--color-black-rgb), 0.08);
	padding-top: 1.25rem;
	margin-bottom: 1.25rem;
}

.speaker-profile-card__info .info-row {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	padding: 0.75rem 0;
	text-align: left;
}

.speaker-profile-card__info .info-row:not(:last-child) {
	border-bottom: 1px solid rgba(var(--color-black-rgb), 0.05);
}

.speaker-profile-card__info .info-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: linear-gradient(135deg, rgba(var(--color-brand-rgb), 0.1), rgba(var(--color-secondary-rgb), 0.1));
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.speaker-profile-card__info .info-icon i {
	color: var(--color-brand);
	font-size: 1rem;
}

.speaker-profile-card__info .info-text {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.speaker-profile-card__info .info-label {
	font-size: 0.75rem;
	color: var(--color-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.speaker-profile-card__info .info-value {
	font-size: 0.9rem;
	color: var(--color-text);
	text-decoration: none;
	word-break: break-all;
	transition: color 0.3s ease;
}

.speaker-profile-card__info .info-value:hover {
	color: var(--color-brand);
}

.speaker-profile-card__social {
	display: flex;
	justify-content: center;
	gap: 0.75rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(var(--color-black-rgb), 0.08);
}

.speaker-profile-card__social .social-link {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	font-size: 1rem;
	transition: all 0.3s ease;
}

.speaker-profile-card__social .social-link--facebook {
	background: #1877f2;
}

.speaker-profile-card__social .social-link--twitter {
	background: #000000;
}

.speaker-profile-card__social .social-link--linkedin {
	background: #0a66c2;
}

.speaker-profile-card__social .social-link:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(var(--color-black-rgb), 0.2);
}

/* Speaker Detail Card */
.speaker-detail-card {
	background: var(--color-white);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 25px rgba(var(--color-black-rgb), 0.08);
}

.speaker-detail-card__header {
	background: linear-gradient(135deg, var(--color-brand), var(--color-primary));
	padding: 1rem 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.speaker-detail-card__header i {
	color: var(--color-white);
	font-size: 1.1rem;
	opacity: 0.9;
}

.speaker-detail-card__header h3 {
	color: var(--color-white);
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0;
}

.speaker-detail-card__body {
	padding: 1.5rem;
}

.biography-text {
	color: #333333;
	line-height: 1.8;
	font-size: 1rem;
}

/* Session Group */
.session-group {
	margin-bottom: 1.5rem;
}

.session-group:last-child {
	margin-bottom: 0;
}

.session-group__header {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.875rem 1rem;
	background: linear-gradient(135deg, rgba(var(--color-brand-rgb), 0.1), rgba(var(--color-secondary-rgb), 0.1));
	border-radius: 10px;
	margin-bottom: 1rem;
}

.session-group__header i {
	color: var(--color-brand);
}

.session-group__header span {
	font-weight: 600;
	color: var(--color-text);
}

.session-group__date {
	margin-left: auto;
	font-size: 0.9rem;
	color: var(--color-text-muted) !important;
	font-weight: 400 !important;
}

.session-group__list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

/* Session Item */
.session-item {
	display: flex;
	gap: 1rem;
	padding: 1rem;
	background: rgba(var(--color-black-rgb), 0.02);
	border-radius: 12px;
	border-left: 3px solid var(--color-brand);
	transition: all 0.3s ease;
}

.session-item:hover {
	background: rgba(var(--color-brand-rgb), 0.05);
	transform: translateX(5px);
}

.session-item__time {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--color-brand);
	font-weight: 600;
	font-size: 0.9rem;
	white-space: nowrap;
	min-width: 120px;
}

.session-item__content {
	flex: 1;
}

.session-item__title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-text);
	margin: 0 0 0.5rem 0;
}

.session-item__desc {
	font-size: 0.9rem;
	color: var(--color-text-muted);
	margin: 0 0 0.75rem 0;
	line-height: 1.6;
}

.btn-session-details {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.5rem 1rem;
	background: transparent;
	border: 1px solid var(--color-brand);
	color: var(--color-brand);
	border-radius: 6px;
	font-size: 0.85rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-session-details:hover {
	background: var(--color-brand);
	color: var(--color-white);
}

/* Session Modal */
.session-modal .modal-content {
	border: none;
	border-radius: 16px;
	overflow: hidden;
}

.session-modal .modal-header {
	background: linear-gradient(135deg, var(--color-brand), var(--color-primary));
	border: none;
	padding: 1.25rem 1.5rem;
}

.session-modal .modal-title {
	color: var(--color-white);
	font-size: 1.1rem;
	font-weight: 600;
	display: flex;
	align-items: center;
}

.session-modal .btn-close {
	filter: brightness(0) invert(1);
	opacity: 0.8;
}

.session-modal .modal-body {
	padding: 1.5rem;
}

.session-modal__content {
	color: #333333;
	line-height: 1.8;
}

.session-modal .modal-footer {
	border-top: 1px solid rgba(var(--color-black-rgb), 0.08);
	padding: 1rem 1.5rem;
}

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

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

/* Contact Info Cards */
.contact-info-wrapper {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.contact-info-card {
	background: var(--color-white);
	border-radius: 16px;
	padding: 1.5rem;
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	box-shadow: 0 4px 20px rgba(var(--color-black-rgb), 0.08);
	transition: all 0.3s ease;
}

.contact-info-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(var(--color-brand-rgb), 0.15);
}

.contact-info-card__icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--color-brand), var(--color-secondary));
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-info-card__icon i {
	color: var(--color-white);
	font-size: 1.25rem;
}

.contact-info-card__content h4 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-text);
	margin: 0 0 0.5rem 0;
}

.contact-info-card__content p,
.contact-info-card__content a {
	font-size: 0.95rem;
	color: var(--color-text-muted);
	margin: 0;
	text-decoration: none;
	transition: color 0.3s ease;
	line-height: 1.6;
}

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

/* Contact Form Card */
.contact-form-card {
	background: var(--color-white);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 25px rgba(var(--color-black-rgb), 0.08);
}

.contact-form-card__header {
	background: linear-gradient(135deg, var(--color-brand), var(--color-primary));
	padding: 1.25rem 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.contact-form-card__header i {
	color: var(--color-white);
	font-size: 1.25rem;
	opacity: 0.9;
}

.contact-form-card__header h3 {
	color: var(--color-white);
	font-size: 1.15rem;
	font-weight: 600;
	margin: 0;
}

.contact-form-card__body {
	padding: 1.5rem;
}

/* Contact Form Styling */
.contact-form .form-group {
	margin-bottom: 0;
}

.contact-form .form-label {
	display: block;
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 0.5rem;
	font-size: 0.95rem;
}

.contact-form .form-label i {
	color: var(--color-brand);
}

.contact-form .form-control {
	border: 2px solid rgba(var(--color-black-rgb), 0.1);
	border-radius: 12px;
	padding: 0.875rem 1rem;
	font-size: 1rem;
	transition: all 0.3s ease;
	background-color: var(--color-white);
}

.contact-form .form-control:focus {
	border-color: var(--color-brand);
	box-shadow: 0 0 0 4px rgba(var(--color-brand-rgb), 0.1);
	background-color: var(--color-white);
}

.contact-form textarea.form-control {
	min-height: 130px;
	resize: vertical;
}

.btn-contact-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	padding: 1rem 2rem;
	background: linear-gradient(135deg, var(--color-brand), var(--color-secondary));
	border: none;
	border-radius: 12px;
	color: var(--color-white);
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(var(--color-brand-rgb), 0.3);
}

.btn-contact-submit:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(var(--color-brand-rgb), 0.4);
	background: linear-gradient(135deg, var(--color-brand), var(--color-secondary));
	color: var(--color-white);
}

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

/* Contact Page Responsive */
@media (max-width: 992px) {
	.contact-info-wrapper {
		flex-direction: row;
		flex-wrap: wrap;
	}
	
	.contact-info-card {
		flex: 1;
		min-width: 280px;
	}
}

@media (max-width: 768px) {
	.contact-info-wrapper {
		flex-direction: column;
	}
	
	.contact-info-card {
		min-width: auto;
	}
}

@media (max-width: 576px) {
	.contact-form-card__body {
		padding: 1rem;
	}
	
	.contact-info-card {
		padding: 1rem;
	}
	
	.contact-info-card__icon {
		width: 48px;
		height: 48px;
	}
	
	.btn-contact-submit {
		padding: 0.875rem 1.5rem;
	}
}

/* Speaker Profile Responsive */
@media (max-width: 992px) {
	.speaker-profile-card {
		position: static;
		margin-bottom: 1.5rem;
	}
}

@media (max-width: 768px) {
	.session-item {
		flex-direction: column;
		gap: 0.75rem;
	}
	
	.session-item__time {
		min-width: auto;
	}
	
	.speaker-profile-card__name {
		font-size: 1.25rem;
	}
}

@media (max-width: 576px) {
	.speaker-profile-card__content {
		padding: 1rem;
	}
	
	.speaker-detail-card__body {
		padding: 1rem;
	}
	
	.session-group__header {
		flex-wrap: wrap;
	}
	
	.session-group__date {
		width: 100%;
		margin-left: 0;
		margin-top: 0.5rem;
	}
}

/* Session Page Responsive */
@media (max-width: 992px) {
	.session-details-section .row {
		flex-direction: column-reverse;
	}
	
	.session-sidebar {
		margin-bottom: 1.5rem;
	}
}

@media (max-width: 576px) {
	.session-card__header,
	.sidebar-card__header {
		padding: 1rem;
	}
	
	.session-card__body,
	.sidebar-card__body {
		padding: 1rem;
	}
	
	.btn-join {
		padding: 0.75rem 1rem;
		font-size: 0.9rem;
	}
	
	.details-icon {
		width: 32px;
		height: 32px;
	}
	
	.speaker-chip__avatar {
		width: 36px;
		height: 36px;
	}
}

/* Footer Responsive */
@media (max-width: 992px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
	
	.footer-brand {
		grid-column: 1 / -1;
		align-items: center;
	}
}

@media (max-width: 768px) {
	footer.footer .container {
		padding: 2rem 1rem 1rem !important;
	}
	
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 1.5rem;
	}
	
	.footer-brand {
		grid-column: 1 / -1;
		align-items: center;
	}
	
	.footer-title {
		font-size: 0.9rem;
		text-align: center;
	}
	
	.footer-title::after {
		left: 50%;
		transform: translateX(-50%);
	}
	
	.footer-list {
		align-items: center;
	}
	
	footer.footer .info-item {
		justify-content: center;
	}
}

@media (max-width: 576px) {
	footer.footer .container {
		padding: 1.75rem 1rem 1rem !important;
	}
	
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 1.25rem;
		text-align: center;
	}
	
	.footer-brand {
		align-items: center;
	}
	
	.footer-links,
	.footer-contact {
		display: block !important;
	}
	
	.footer-title {
		font-size: 0.85rem;
	}
	
	.footer-list {
		align-items: center;
		gap: 0.5rem;
	}
	
	footer.footer .footer-item .footer-link {
		font-size: 0.9rem !important;
	}
	
	footer.footer .info-item {
		justify-content: center;
		margin-bottom: 0.5rem !important;
		padding: 0.35rem 0 !important;
	}
	
	footer.footer .info-item .fa-solid {
		font-size: 0.9rem !important;
		width: 24px !important;
		height: 24px !important;
	}
	
	footer.footer .info-item .company-info {
		font-size: 0.85rem !important;
		margin-left: 10px !important;
	}
	
	.footer-logo-wrapper {
		padding: 8px 12px;
	}
	
	.footer-logo {
		max-width: 85px;
	}
	
	footer.footer .copy-right {
		font-size: 0.75rem !important;
		padding: 0.75rem 1rem !important;
	}
}

/* Password Toggle */
.pw-wrap {
	position: relative;
	display: block;
	width: 100%;
}

.pw-toggle-btn {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: 0;
	padding: 4px;
	line-height: 1;
	color: var(--color-gray-600);
	cursor: pointer;
	z-index: 2;
}

.pw-toggle-btn:focus {
	outline: none;
	box-shadow: none;
}

.pw-toggle-btn svg {
	display: block;
	width: 18px;
	height: 18px;
}

.pw-input {
	padding-right: 2.75rem;
}

[dir="rtl"] .pw-toggle-btn {
	right: auto;
	left: 10px;
}

[dir="rtl"] .pw-input {
	padding-right: 0.75rem;
	padding-left: 2.75rem;
}

/* ========================================
   MAIN HERO SECTION
   ======================================== */
.main-hero {
	min-height: 92vh;
	height: auto;
	width: 100%;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.main-hero .hero-bg-video {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 0;
}

.main-hero .hero-bg-video .bg-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.main-hero .hero-bg-video .bg-overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(135deg, rgba(var(--color-dark-1-rgb), 0.92) 0%, rgba(var(--color-dark-2-rgb), 0.88) 100%);
}

.main-hero .hero-body {
	position: relative;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	z-index: 1;
	padding: 2rem 4rem;
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 3rem;
	align-items: center;
}

.main-hero .hero-body .hero-content {
	width: 100%;
}

.main-hero .hero-body .hero-content .hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: linear-gradient(135deg, var(--color-brand), var(--color-dark-2));
	color: var(--color-white);
	padding: 0.5rem 1.25rem;
	border-radius: 2rem;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 1.25rem;
	width: fit-content;
	box-shadow: 0 4px 20px rgba(var(--color-brand-rgb), 0.35);
	animation: fadeInUp 0.6s ease;
	position: relative;
	overflow: hidden;
}

.main-hero .hero-body .hero-content .hero-badge::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(var(--color-white-rgb), 0.2), transparent);
	animation: shimmer 3s infinite;
}

.main-hero .hero-body .hero-content .hero-event-date {
	color: var(--color-brand);
	font-size: 0.9rem;
	font-weight: 600;
	background: rgba(var(--color-brand-rgb), 0.12);
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	border-left: 4px solid var(--color-brand);
	width: fit-content;
	margin-top: 1rem;
}

.main-hero .hero-body .hero-content .hero-event-date i {
	color: var(--color-brand);
}

.main-hero .hero-body .hero-content .hero-title {
	text-transform: capitalize;
	font-size: clamp(2rem, 4.5vw, 3.2rem);
	font-weight: 800;
	color: var(--color-white);
	text-shadow: 0 4px 30px rgba(var(--color-black-rgb), 0.4);
	line-height: 1.15;
	letter-spacing: -0.5px;
	animation: fadeInUp 0.8s ease 0.2s both;
	margin-bottom: 0.5rem;
}

.main-hero .hero-body .hero-content .hero-description {
	font-size: clamp(1rem, 2vw, 1.25rem);
	font-weight: 400;
	color: rgba(var(--color-white-rgb), 0.85);
	text-shadow: 0 2px 10px rgba(var(--color-black-rgb), 0.3);
	margin-top: 0.75rem;
	line-height: 1.6;
	max-width: 85%;
	animation: fadeInUp 0.8s ease 0.4s both;
}

.main-hero .hero-body .hero-content .hero-btns {
	gap: 0.75rem;
	animation: fadeInUp 0.8s ease 0.6s both;
	margin-top: 1.5rem;
}

.main-hero .hero-body .hero-content .hero-btns .explore-event-btn {
	background: linear-gradient(135deg, var(--color-dark-2), var(--color-dark-5));
	color: var(--color-white);
	border: none;
	text-transform: capitalize;
	font-weight: 600;
	font-size: 0.85rem;
	padding: 0.75rem 1.5rem;
	border-radius: 0.6rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 15px rgba(var(--color-dark-2-rgb), 0.35);
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.main-hero .hero-body .hero-content .hero-btns .explore-event-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(var(--color-white-rgb), 0.2), transparent);
	transition: left 0.5s ease;
}

.main-hero .hero-body .hero-content .hero-btns .explore-event-btn:hover {
	background: linear-gradient(135deg, var(--color-dark-5), var(--color-dark-6));
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(var(--color-dark-2-rgb), 0.5);
}

.main-hero .hero-body .hero-content .hero-btns .explore-event-btn:hover::before {
	left: 100%;
}

.main-hero .hero-body .hero-content .hero-btns .become-partner-btn {
	background: linear-gradient(135deg, var(--color-brand), var(--color-brand-2));
	color: var(--color-white);
	border: none;
	text-transform: capitalize;
	font-weight: 600;
	font-size: 0.85rem;
	padding: 0.75rem 1.5rem;
	border-radius: 0.6rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 15px rgba(var(--color-brand-rgb), 0.35);
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.main-hero .hero-body .hero-content .hero-btns .become-partner-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(var(--color-white-rgb), 0.3), transparent);
	transition: left 0.5s ease;
}

.main-hero .hero-body .hero-content .hero-btns .become-partner-btn:hover {
	background: linear-gradient(135deg, var(--color-brand-2), var(--color-brand-3));
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(var(--color-brand-rgb), 0.5);
}

.main-hero .hero-body .hero-content .hero-btns .become-partner-btn:hover::before {
	left: 100%;
}

.main-hero .hero-body .hero-special-section .hero-special-box {
	width: 100%;
	max-width: 420px;
	min-width: 380px;
	height: auto;
	margin: 0 auto;
	background: linear-gradient(145deg, rgba(var(--color-dark-1-rgb), 0.88), rgba(var(--color-dark-2-rgb), 0.78));
	box-shadow: 0 25px 60px rgba(var(--color-black-rgb), 0.45), inset 0 1px 0 rgba(var(--color-white-rgb), 0.1);
	backdrop-filter: blur(25px);
	padding: 2rem 2.5rem;
	border-radius: 1.5rem;
	gap: 1.25rem;
	border: 1px solid rgba(var(--color-brand-rgb), 0.2);
	animation: fadeInRight 0.8s ease 0.4s both;
	position: relative;
	overflow: visible;
	display: flex;
	flex-direction: column;
}

.main-hero .hero-body .hero-special-section .hero-special-box::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(var(--color-brand-rgb), 0.1) 0%, transparent 50%);
	pointer-events: none;
}

.main-hero .hero-body .hero-special-section .hero-special-box .box-title {
	background: linear-gradient(to right, rgba(var(--color-body-overlay-rgb), 0.7), rgba(var(--color-brand-rgb), 0.25));
	padding: 0.85rem 1.25rem;
	border-radius: 0.6rem;
}

.main-hero .hero-body .hero-special-section .hero-special-box .box-title .title {
	color: var(--color-white);
	text-shadow: 2px 2px 1px rgba(var(--color-brand-rgb), 0.22);
	font-weight: 700;
	font-size: 1.15rem;
	letter-spacing: 0.5px;
}

.main-hero .hero-body .hero-special-section .hero-special-box .box-title .description {
	color: var(--color-white);
	font-size: 0.95rem;
	line-height: 1.5;
	margin-top: 0.35rem;
}

.main-hero .hero-body .hero-special-section .hero-special-box .event-title {
	background: linear-gradient(to right, rgba(var(--color-body-overlay-rgb), 0.7), rgba(var(--color-brand-rgb), 0.25));
	padding: 0.85rem 1.25rem;
	border-radius: 0.6rem;
}

.main-hero .hero-body .hero-special-section .hero-special-box .event-title p {
	text-transform: capitalize;
	color: var(--color-white);
	text-shadow: 1px 1px 1px rgba(var(--color-black-rgb), 0.4);
	font-size: 1rem;
	font-weight: 600;
	margin: auto 0;
	letter-spacing: 0.3px;
}

.main-hero .hero-body .hero-special-section .hero-special-box .countdown {
	flex-wrap: nowrap !important;
	gap: 0.75rem;
	justify-content: center;
}

.main-hero .hero-body .hero-special-section .hero-special-box .countdown > div {
	background: linear-gradient(145deg, rgba(var(--color-dark-2-rgb), 0.9), rgba(var(--color-dark-1-rgb), 0.95));
	width: 75px;
	min-width: 75px;
	max-width: 80px;
	aspect-ratio: 1/1;
	height: auto;
	border-radius: 0.85rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border: 1px solid rgba(var(--color-brand-rgb), 0.3);
	box-shadow: 0 6px 20px rgba(var(--color-black-rgb), 0.35);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	flex-shrink: 0;
}

.main-hero .hero-body .hero-special-section .hero-special-box .countdown > div:hover {
	transform: scale(1.1) translateY(-3px);
	box-shadow: 0 10px 30px rgba(var(--color-brand-rgb), 0.35);
}

.main-hero .hero-body .hero-special-section .hero-special-box .countdown > div .time-number {
	color: var(--color-white);
	text-shadow: 0 0 12px rgba(var(--color-brand-rgb), 0.5);
	font-weight: 800;
	font-size: 1.6rem;
	line-height: 1;
}

.main-hero .hero-body .hero-special-section .hero-special-box .countdown > div .time-info {
	color: var(--color-brand);
	text-transform: uppercase;
	font-weight: 700;
	font-size: 0.65rem;
	letter-spacing: 0.8px;
	margin-top: 0.35rem;
}

.main-hero .hero-body .hero-special-section .hero-special-box .box-btn {
	text-decoration: none;
	background-color: var(--color-brand);
	color: var(--color-white);
	width: 100%;
}

.main-hero .hero-body .hero-special-section .hero-special-box .box-btn:hover {
	background-color: var(--color-brand-2);
}

.main-hero .hero-body .hero-special-section .hero-special-box .box-btn-outline {
	text-decoration: none;
	background-color: transparent;
	color: var(--color-white);
	width: 100%;
	border: 2px solid var(--color-brand);
}

.main-hero .hero-body .hero-special-section .hero-special-box .box-btn-outline:hover {
	background-color: var(--color-brand);
	color: var(--color-white);
}

.main-hero .hero-body .hero-special-section .hero-special-box .box-btn-secondary {
	text-decoration: none;
	background-color: var(--color-dark-2);
	color: var(--color-white);
	width: 100%;
	border: 2px solid var(--color-dark-2);
}

.main-hero .hero-body .hero-special-section .hero-special-box .box-btn-secondary:hover {
	background-color: var(--color-dark-5);
	border-color: var(--color-dark-5);
}

.main-hero .hero-body .hero-special-section .hero-special-box .hero-box-buttons {
	gap: 0.65rem;
	margin-top: 0.75rem;
}

.main-hero .hero-body .hero-special-section .hero-special-box .hero-box-buttons .btn {
	padding: 0.75rem 1.25rem;
	font-weight: 600;
	font-size: 0.92rem;
	border-radius: 0.6rem;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 1200px) {
	.main-hero .hero-body {
		padding: 2rem;
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
}

@media (max-width: 990px) {
	.main-hero {
		min-height: auto;
		padding: 6rem 0 3rem;
	}
	.main-hero .hero-body {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 2.5rem;
		padding: 0 1.5rem;
	}
	.main-hero .hero-body .hero-content {
		width: 100% !important;
		text-align: center;
	}
	.main-hero .hero-body .hero-content .hero-badge {
		margin: 0 auto 1.25rem;
	}
	.main-hero .hero-body .hero-content .hero-event-date {
		margin: 0.75rem auto 0;
	}
	.main-hero .hero-body .hero-content .hero-description {
		max-width: 100%;
	}
	.main-hero .hero-body .hero-content .hero-btns {
		justify-content: center;
		flex-wrap: wrap;
	}
	.main-hero .hero-special-section {
		width: 100%;
		max-width: 420px;
	}
	.main-hero .hero-special-section .hero-special-box {
		width: 100% !important;
		max-width: 100%;
		min-width: unset;
	}
}

@media (max-width: 600px) {
	.main-hero {
		padding: 5rem 0 2rem;
	}
	.main-hero .hero-body {
		padding: 0 1rem;
		gap: 2rem;
	}
	.main-hero .hero-body .hero-content .hero-btns {
		flex-direction: column;
		gap: 0.75rem;
	}
	.main-hero .hero-body .hero-content .hero-btns .btn {
		width: 100%;
	}
	.main-hero .hero-body .hero-special-section .hero-special-box {
		padding: 1.5rem;
		gap: 1rem;
		min-width: unset;
	}
	.main-hero .hero-body .hero-special-section .hero-special-box .countdown {
		flex-wrap: wrap !important;
		gap: 0.5rem;
	}
	.main-hero .hero-body .hero-special-section .hero-special-box .countdown > div {
		width: 60px;
		min-width: 60px;
	}
}

/* ========================================
   DISCOVERY EVENTROOM SECTION
   ======================================== */
.discovery-eventroom {
	background: var(--color-white);
	padding: 4rem 1rem;
	height: auto;
	width: 100%;
	position: relative;
	overflow: hidden;
}

.discovery-eventroom::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(var(--color-brand-rgb), 0.03) 0%, transparent 70%);
	pointer-events: none;
}

.discovery-eventroom::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(var(--color-dark-2-rgb), 0.03) 0%, transparent 70%);
	pointer-events: none;
}

.discovery-eventroom .discovery-eventroom-body {
	gap: 4rem;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

@media (max-width: 1000px) {
	.discovery-eventroom {
		padding: 2.5rem 1rem;
	}
	.discovery-eventroom .discovery-eventroom-body {
		flex-direction: column-reverse;
		gap: 2rem;
	}
}

.discovery-eventroom .discovery-eventroom-body .discovery-eventroom-img {
	position: relative;
	flex-shrink: 0;
}

.discovery-eventroom .discovery-eventroom-body .discovery-eventroom-img::before {
	display: none;
}

.discovery-eventroom .discovery-eventroom-body .discovery-eventroom-img::after {
	display: none;
}

.discovery-eventroom .discovery-eventroom-body .discovery-eventroom-img .section-image {
	width: 500px;
	max-width: 100%;
	border-radius: 1rem;
	box-shadow: 0 8px 20px rgba(var(--color-black-rgb), 0.25);
	position: relative;
	z-index: 1;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.discovery-eventroom .discovery-eventroom-body .discovery-eventroom-img .section-image:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(var(--color-black-rgb), 0.3);
}

@media (max-width: 1000px) {
	.discovery-eventroom .discovery-eventroom-body .discovery-eventroom-img .section-image {
		width: 100%;
	}
}

.discovery-eventroom .discovery-eventroom-body .discovery-eventroom-info {
	max-width: 550px;
}

.discovery-eventroom .discovery-eventroom-body .discovery-eventroom-info .discovery-title {
	color: var(--color-dark-2);
	font-weight: 700;
	font-size: 1.1rem;
	text-transform: capitalize;
	margin-bottom: 0.5rem;
}

.discovery-eventroom .discovery-eventroom-body .discovery-eventroom-info .discovery-title::before {
	content: "";
	display: inline-block;
	width: 40px;
	height: 3px;
	background: var(--color-dark-2);
	margin-right: 8px;
	vertical-align: middle;
	border-radius: 3px;
}

.discovery-eventroom .discovery-eventroom-body .discovery-eventroom-info .feature-item {
	gap: 1rem;
	margin-top: 1.5rem;
	padding: 0;
	border-radius: 0;
	transition: all 0.3s ease;
	border: none;
	background: transparent;
}

.discovery-eventroom .discovery-eventroom-body .discovery-eventroom-info .feature-item:hover {
	background: transparent;
	border-color: transparent;
	box-shadow: none;
	transform: translateX(5px);
}

.discovery-eventroom .discovery-eventroom-body .discovery-eventroom-info .feature-item .feature-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-brand);
	color: var(--color-white);
	padding: 1rem;
	border-radius: 0.7rem;
	width: 50px;
	height: 50px;
	font-size: 1.1rem;
	box-shadow: 0 4px 10px rgba(var(--color-brand-rgb), 0.25);
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.discovery-eventroom .discovery-eventroom-body .discovery-eventroom-info .feature-item:hover .feature-icon {
	transform: scale(1.1);
	box-shadow: 0 6px 15px rgba(var(--color-brand-rgb), 0.35);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	flex-shrink: 0;
}


.discovery-eventroom .discovery-eventroom-body .discovery-eventroom-info .feature-item:hover .feature-icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 8px 25px rgba(var(--color-brand-rgb), 0.4);
}

.discovery-eventroom .discovery-eventroom-body .discovery-eventroom-info .feature-item .feature-title {
	color: var(--color-black);
	font-weight: 700;
	font-size: 1.3rem;
	padding: 0;
	margin: 0 0 0.3rem 0;
	line-height: 1.4;
}

.discovery-eventroom .discovery-eventroom-body .discovery-eventroom-info .feature-item .feature-description {
	margin: 0;
	color: #555555;
	font-size: 1.1rem;
	line-height: 1.6;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonial-section {
	padding: 3.5rem 2rem;
	background: linear-gradient(135deg, var(--color-dark-1) 0%, var(--color-dark-2) 50%, var(--color-dark-1) 100%);
	width: 100%;
	position: relative;
	overflow: hidden;
}

.testimonial-section::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 900px;
	height: 900px;
	background: radial-gradient(circle, rgba(var(--color-brand-rgb), 0.08) 0%, transparent 50%);
	pointer-events: none;
}

.testimonial-section::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(var(--color-dark-2-rgb), 0.3) 0%, transparent 70%);
	pointer-events: none;
}

.testimonial-section .testimonial-header {
	margin-bottom: 2rem;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
}

.testimonial-section .testimonial-header .section-badge {
	display: inline-block;
	background: linear-gradient(135deg, var(--color-brand), var(--color-dark-2));
	color: var(--color-white);
	padding: 0.5rem 1.25rem;
	border-radius: 2rem;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 0.75rem;
	box-shadow: 0 4px 15px rgba(var(--color-brand-rgb), 0.3);
}

.testimonial-section .testimonial-header .main-title {
	color: var(--color-white);
	font-size: clamp(1.5rem, 3.5vw, 2.2rem);
	font-weight: 800;
	margin-bottom: 0.5rem;
}

.testimonial-section .testimonial-header .sub-title {
	color: rgba(var(--color-white-rgb), 0.7);
	font-size: clamp(0.9rem, 1.5vw, 1rem);
	font-weight: 400;
	max-width: 550px;
	margin: 0 auto;
	line-height: 1.6;
}

.testimonial-section .testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.testimonial-section .testimonial-card {
	background: linear-gradient(145deg, rgba(var(--color-white-rgb), 0.08), rgba(var(--color-white-rgb), 0.02));
	border: 1px solid rgba(var(--color-brand-rgb), 0.12);
	border-radius: 1rem;
	padding: 1.5rem;
	position: relative;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(10px);
}

.testimonial-section .testimonial-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--color-brand), var(--color-dark-2));
	border-radius: 1rem 1rem 0 0;
}

.testimonial-section .testimonial-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(var(--color-brand-rgb), 0.2);
	border-color: rgba(var(--color-brand-rgb), 0.35);
}

.testimonial-section .testimonial-card .quote-icon {
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-size: 1.5rem;
	color: rgba(var(--color-brand-rgb), 0.12);
}

.testimonial-section .testimonial-card .testimonial-content {
	margin-bottom: 1rem;
}

.testimonial-section .testimonial-card .testimonial-text {
	color: rgba(var(--color-white-rgb), 0.85);
	font-size: 0.9rem;
	line-height: 1.7;
	font-style: italic;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.testimonial-section .testimonial-card .testimonial-rating {
	margin-bottom: 1rem;
}

.testimonial-section .testimonial-card .testimonial-rating i {
	color: var(--color-gold);
	font-size: 0.85rem;
	margin-right: 2px;
}

.testimonial-section .testimonial-card .testimonial-author {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(var(--color-white-rgb), 0.1);
}

.testimonial-section .testimonial-card .author-image img {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--color-brand);
	box-shadow: 0 4px 12px rgba(var(--color-brand-rgb), 0.25);
}

.testimonial-section .testimonial-card .author-info .author-name {
	color: var(--color-white);
	font-size: 0.9rem;
	font-weight: 700;
	margin-bottom: 0.15rem;
}

.testimonial-section .testimonial-card .author-info .author-position {
	color: var(--color-brand);
	font-size: 0.8rem;
	font-weight: 500;
}

@media (max-width: 1024px) {
	.testimonial-section .testimonial-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.25rem;
	}
}

@media (max-width: 700px) {
	.testimonial-section {
		padding: 2.5rem 1rem;
	}
	.testimonial-section .testimonial-header .main-title {
		font-size: 1.5rem;
	}
	.testimonial-section .testimonial-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	.testimonial-section .testimonial-card {
		padding: 1.25rem;
	}
}

/* ========================================
   SCHEDULES SECTION
   ======================================== */
.schedules-section {
	height: max-content;
	padding: 3.5rem 2rem;
	background: linear-gradient(180deg, var(--color-dark-2) 0%, var(--color-dark-3) 50%, var(--color-dark-1) 100%);
	position: relative;
	overflow: hidden;
}

.schedules-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(90deg, rgba(var(--color-brand-rgb), 0.03) 1px, transparent 1px), linear-gradient(0deg, rgba(var(--color-brand-rgb), 0.03) 1px, transparent 1px);
	background-size: 60px 60px;
	pointer-events: none;
}

.schedules-section::after {
	content: '';
	position: absolute;
	top: 20%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(var(--color-brand-rgb), 0.08) 0%, transparent 60%);
	pointer-events: none;
}

.schedules-section .schedules-titles {
	position: relative;
	z-index: 1;
	margin-bottom: 1.5rem;
}

.schedules-section .schedules-titles .main-title {
	color: var(--color-white);
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	text-transform: capitalize;
	margin-bottom: 0.5rem;
}

.schedules-section .schedules-titles .sub-title {
	color: var(--color-brand);
	font-size: clamp(1rem, 2vw, 1.2rem);
	font-weight: 500;
	text-transform: capitalize;
}

.schedules-section .events-by-dates {
	gap: 0.75rem;
	position: relative;
	z-index: 1;
	padding: 0 1rem;
	margin-bottom: 2rem;
}

.schedules-section .events-by-dates .eventDayBtn {
	border: 1px solid rgba(var(--color-brand-rgb), 0.25);
	padding: 0.85rem 1.5rem;
	border-radius: 0.85rem;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	background: linear-gradient(145deg, rgba(var(--color-white-rgb), 0.06), rgba(var(--color-white-rgb), 0.02));
	text-decoration: none;
	backdrop-filter: blur(8px);
	min-width: 120px;
}

.schedules-section .events-by-dates .eventDayBtn .name-of-day {
	color: var(--color-brand);
	font-weight: 700;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.schedules-section .events-by-dates .eventDayBtn .date-of-day {
	color: var(--color-white);
	font-weight: 500;
	font-size: 0.8rem;
	text-transform: capitalize;
	opacity: 0.85;
}

.schedules-section .events-by-dates .eventDayBtn:hover {
	transform: translateY(-4px);
	border-color: var(--color-brand);
	box-shadow: 0 8px 25px rgba(var(--color-brand-rgb), 0.25);
	background: rgba(var(--color-brand-rgb), 0.12);
}

.schedules-section .events-by-dates .eventDayBtn.active {
	border-color: transparent;
	background: linear-gradient(135deg, var(--color-brand), var(--color-brand-2));
	box-shadow: 0 8px 30px rgba(var(--color-brand-rgb), 0.4);
	transform: translateY(-2px);
}

.schedules-section .events-by-dates .eventDayBtn.active .name-of-day {
	color: var(--color-white);
}

/* Event Dates Pagination */
.events-dates-pagination-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

.dates-nav-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(var(--color-brand-rgb), 0.15);
	border: 1px solid rgba(var(--color-brand-rgb), 0.3);
	color: var(--color-brand);
	font-size: 1rem;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.dates-nav-btn:hover:not(:disabled) {
	background: var(--color-brand);
	color: var(--color-white);
	transform: scale(1.1);
	box-shadow: 0 4px 15px rgba(var(--color-brand-rgb), 0.4);
}

.dates-nav-btn:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.events-dates-pagination-wrapper .events-by-dates {
	flex: 1;
	margin-bottom: 0 !important;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	gap: 1rem;
}

.events-dates-pagination-wrapper .events-by-dates .eventDayBtn {
	flex: 0 0 auto;
	min-width: 160px;
	max-width: 200px;
	display: none;
}

.dates-pagination-info {
	color: rgba(var(--color-white-rgb), 0.6);
	font-size: 0.8rem;
}

.dates-pagination-info .pagination-text {
	background: rgba(var(--color-brand-rgb), 0.1);
	padding: 0.25rem 0.75rem;
	border-radius: 1rem;
	font-weight: 500;
}

.schedules-section .schedules-cards-body {
	width: 100%;
	max-width: 1000px;
	gap: 1rem;
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
}

/* Use new event-card styles in home page schedules section */
.schedules-section .event-date-group {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.schedules-section .event-card {
	display: grid;
	grid-template-columns: 90px 1fr auto;
	gap: 0;
	background: rgba(var(--color-white-rgb), 0.03);
	border: 1px solid rgba(var(--color-white-rgb), 0.08);
	border-radius: 1rem;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.schedules-section .event-card:hover {
	background: rgba(var(--color-white-rgb), 0.06);
	border-color: rgba(var(--color-secondary-rgb), 0.3);
	transform: translateX(3px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Legacy styles for backward compatibility */
.schedules-section .schedules-cards-body .event-card-container {
	width: 100%;
	min-height: auto;
	height: max-content;
	gap: 0.75rem;
}

.schedules-section .schedules-cards-body .event-card-container .event-time {
	height: fit-content;
	gap: 0.5rem;
	min-width: 80px;
}

.schedules-section .schedules-cards-body .event-card-container .event-time .start-to-end .event-start-time {
	color: var(--color-white);
	font-size: 0.95rem;
	font-weight: 700;
	display: block;
}

.schedules-section .schedules-cards-body .event-card-container .event-time .start-to-end .event-end-time {
	color: rgba(var(--color-white-rgb), 0.7);
	font-size: 0.75rem;
	font-weight: 500;
	display: block;
}

.schedules-section .schedules-cards-body .event-card-container .event-time .clock-icon i {
	color: var(--color-brand);
	font-size: 1rem;
}

.schedules-section .schedules-cards-body .event-card-container .card {
	background: linear-gradient(145deg, rgba(var(--color-white-rgb), 0.08), rgba(var(--color-white-rgb), 0.02));
	backdrop-filter: blur(12px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	border-radius: 1rem;
	border: 1px solid rgba(var(--color-brand-rgb), 0.12);
	box-shadow: 0 8px 30px rgba(var(--color-black-rgb), 0.2);
	flex: 1;
	position: relative;
}

.schedules-section .schedules-cards-body .event-card-container .card::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, var(--color-brand), var(--color-dark-2));
	border-radius: 1rem 0 0 1rem;
}

.schedules-section .schedules-cards-body .event-card-container .card .card-body {
	width: 100%;
	height: 100%;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
}

@media (max-width: 990px) {
	.schedules-section .schedules-cards-body .event-card-container .card .card-body {
		flex-direction: column;
	}
	.schedules-section .schedules-cards-body .event-card-container .card .card-body .calendar-info > .btn {
		width: 100% !important;
	}
}

.schedules-section .schedules-cards-body .event-card-container .card .card-body .event-info .event-category {
	text-transform: uppercase;
	color: var(--color-white);
	font-size: 0.7rem;
	font-weight: 700;
	background: linear-gradient(135deg, var(--color-green-1), var(--color-green-2));
	padding: 0.4rem 0.85rem;
	border-radius: 2rem;
	letter-spacing: 0.5px;
	display: inline-block;
}

.schedules-section .schedules-cards-body .event-card-container .card .card-body .event-info .event-title {
	color: var(--color-white);
	text-transform: capitalize;
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.35;
	margin-top: 0.65rem;
}

.schedules-section .schedules-cards-body .event-card-container .card .card-body .event-info .event-description {
	color: rgba(var(--color-white-rgb), 0.7);
	font-size: 0.9rem;
	line-height: 1.6;
	margin: 0.35rem 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.schedules-section .schedules-cards-body .event-card-container .card .card-body .event-info .event-speakers-pic .speaker-pic {
	width: 32px;
	height: 32px;
	object-fit: cover;
	border-radius: 50%;
	border: 2px solid var(--color-white);
	transition: 0.3s ease;
	box-shadow: 0 2px 8px rgba(var(--color-black-rgb), 0.2);
}

.schedules-section .schedules-cards-body .event-card-container .card .card-body .event-info .event-speakers-pic .speaker-pic:not(:first-child) {
	margin-left: -12px;
}

.schedules-section .schedules-cards-body .event-card-container .card .card-body .event-info .event-speakers-pic .speaker-pic:hover {
	z-index: 5;
	transform: scale(1.15) translateY(-2px);
}

.schedules-section .schedules-cards-body .event-card-container .card .card-body .calendar-info {
	gap: 0.5rem;
	align-self: center;
}

.schedules-section .schedules-cards-body .event-card-container .card .card-body .calendar-info > .btn {
	text-transform: capitalize;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	width: 150px;
	height: auto;
	padding: 0.6rem 1rem;
	font-size: 0.85rem;
	border-radius: 0.6rem;
}

.schedules-section .schedules-cards-body .event-card-container .card .card-body .calendar-info .add-to-schedules-btn {
	color: var(--color-white);
	font-weight: 600;
	background: linear-gradient(135deg, var(--color-brand), var(--color-brand-2));
	border: none;
	box-shadow: 0 4px 15px rgba(var(--color-brand-rgb), 0.3);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.schedules-section .schedules-cards-body .event-card-container .card .card-body .calendar-info .add-to-schedules-btn:hover {
	background: linear-gradient(135deg, var(--color-brand-2), var(--color-brand-3));
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(var(--color-brand-rgb), 0.4);
}

.schedules-section .schedules-cards-body .event-card-container .card .card-body .calendar-info .view-event-btn {
	background: rgba(var(--color-white-rgb), 0.06);
	backdrop-filter: blur(8px);
	color: var(--color-brand);
	border: 2px solid rgba(var(--color-brand-rgb), 0.5);
	font-weight: 600;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.schedules-section .schedules-cards-body .event-card-container .card .card-body .calendar-info .view-event-btn:hover {
	background: linear-gradient(135deg, var(--color-brand), var(--color-brand-2));
	color: var(--color-white);
	border-color: transparent;
	box-shadow: 0 6px 20px rgba(var(--color-brand-rgb), 0.35);
	transform: translateY(-2px);
}

.schedules-section .schedules-cards-body .event-card-container .card:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 40px rgba(var(--color-brand-rgb), 0.2);
	border-color: rgba(var(--color-brand-rgb), 0.35);
}

/* Event Actions in Home Page Cards */
.schedules-section .event-actions {
	padding-top: 0.75rem;
	border-top: 1px solid rgba(var(--color-white-rgb), 0.08);
}

.schedules-section .event-actions .btn-sm {
	padding: 0.4rem 0.85rem;
	font-size: 0.75rem;
	border-radius: 50px;
}

.schedules-section .event-actions .btn-action--speaker {
	background: rgba(var(--color-secondary-rgb), 0.15);
	border: 1px solid rgba(var(--color-secondary-rgb), 0.3);
	color: var(--color-secondary);
}

.schedules-section .event-actions .btn-action--speaker:hover {
	background: var(--color-secondary);
	color: var(--color-white);
}

.schedules-section .event-actions .btn-action--viewer {
	background: rgba(112, 164, 150, 0.15);
	border: 1px solid rgba(112, 164, 150, 0.3);
	color: #70a496;
}

.schedules-section .event-actions .btn-action--viewer:hover {
	background: #70a496;
	color: var(--color-white);
}

.schedules-section .event-actions .btn-action--meeting {
	background: linear-gradient(135deg, #4285f4, #34a853);
	border: none;
	color: var(--color-white);
}

.schedules-section .event-actions .btn-action--request {
	background: rgba(var(--color-brand-rgb), 0.15);
	border: 1px solid rgba(var(--color-brand-rgb), 0.3);
	color: var(--color-brand);
}

.schedules-section .event-actions .btn-action--request:hover {
	background: var(--color-brand);
	color: var(--color-white);
}

.schedules-section .event-actions .badge-status {
	font-size: 0.7rem;
	padding: 0.35rem 0.75rem;
}

.schedules-section .event-actions .badge-countdown,
.schedules-section .event-actions .badge-ended {
	font-size: 0.7rem;
	padding: 0.35rem 0.75rem;
	border-radius: 50px;
}

.schedules-section .event-actions .badge-countdown {
	background: rgba(var(--color-primary-rgb), 0.3);
	color: var(--color-white);
}

.schedules-section .event-actions .badge-ended {
	background: rgba(var(--color-white-rgb), 0.1);
	color: rgba(var(--color-white-rgb), 0.5);
}

.schedules-section .explore-event-btn {
	background: linear-gradient(135deg, var(--color-brand), var(--color-brand-2));
	color: var(--color-white);
	border: none;
	text-transform: capitalize;
	font-weight: 700;
	padding: 0.85rem 2.5rem;
	border-radius: 0.75rem;
	font-size: 0.95rem;
	box-shadow: 0 6px 25px rgba(var(--color-brand-rgb), 0.35);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.schedules-section .explore-event-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(var(--color-white-rgb), 0.3), transparent);
	transition: left 0.5s ease;
	z-index: -1;
}

.schedules-section .explore-event-btn:hover {
	background: linear-gradient(135deg, var(--color-brand-2), var(--color-brand-3));
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(var(--color-brand-rgb), 0.4);
}

.schedules-section .explore-event-btn:hover::before {
	left: 100%;
}

.schedules-section .event-date-group {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.schedules-section .event-speakers-pic {
	display: flex;
	align-items: center;
	position: relative;
}

/* Apply the new speaker avatar styles to home page */
.schedules-section .event-speakers-pic.speakers-avatars-group .speaker-avatar-link {
	position: relative;
	display: inline-block;
	text-decoration: none;
	transition: all 0.3s ease;
	z-index: 1;
}

.schedules-section .event-speakers-pic.speakers-avatars-group .speaker-avatar-link:not(:first-child) {
	margin-left: -10px;
}

.schedules-section .event-speakers-pic.speakers-avatars-group .speaker-avatar-link:hover {
	z-index: 10;
	transform: translateY(-3px);
}

.schedules-section .event-speakers-pic.speakers-avatars-group .speaker-pic {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 2px solid var(--color-dark-5);
	object-fit: cover;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

.schedules-section .event-speakers-pic.speakers-avatars-group .speaker-avatar-link:hover .speaker-pic {
	border-color: var(--color-secondary);
	box-shadow: 0 4px 12px rgba(var(--color-secondary-rgb), 0.4);
	transform: scale(1.15);
}

.schedules-section .event-speakers-pic.speakers-avatars-group .speaker-pic-placeholder {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 2px solid var(--color-dark-5);
	background: rgba(var(--color-secondary-rgb), 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-secondary);
	font-size: 0.7rem;
	transition: all 0.3s ease;
}

.schedules-section .event-speakers-pic.speakers-avatars-group .speaker-avatar-link:hover .speaker-pic-placeholder {
	border-color: var(--color-secondary);
	background: var(--color-secondary);
	color: var(--color-white);
	transform: scale(1.15);
}

.schedules-section .event-speakers-pic.speakers-avatars-group .speaker-name-tooltip {
	position: absolute;
	bottom: calc(100% + 6px);
	left: 50%;
	transform: translateX(-50%) translateY(8px);
	background: var(--color-secondary);
	color: var(--color-white);
	padding: 0.4rem 0.7rem;
	border-radius: 6px;
	font-size: 0.7rem;
	font-weight: 600;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 100;
	box-shadow: 0 4px 12px rgba(var(--color-secondary-rgb), 0.4);
}

.schedules-section .event-speakers-pic.speakers-avatars-group .speaker-name-tooltip::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 5px solid transparent;
	border-top-color: var(--color-secondary);
}

.schedules-section .event-speakers-pic.speakers-avatars-group .speaker-avatar-link:hover .speaker-name-tooltip {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

/* Legacy styles for backward compatibility */
.schedules-section .event-speakers-pic .speaker-pic {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: 1px solid var(--color-brand);
	object-fit: cover;
	background: var(--color-dark-7);
}

.schedules-section .event-speakers-pic .speaker-pic:not(:first-child) {
	margin-left: -8px;
}

.schedules-section .event-speakers-pic .speaker-pic-placeholder {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: 1px solid var(--color-brand);
	background: rgba(var(--color-brand-rgb), 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-brand);
	font-size: 0.65rem;
}

.schedules-section .event-speakers-pic .speaker-pic-placeholder:not(:first-child) {
	margin-left: -8px;
}

.schedules-section .event-speakers-info {
	color: rgba(var(--color-white-rgb), 0.8);
	font-size: 0.8rem;
}

.schedules-section .event-speakers-info .speaker-pic-placeholder {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 1px solid var(--color-brand);
	background: rgba(var(--color-brand-rgb), 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-brand);
	font-size: 0.6rem;
}

.schedules-section .no-events-message {
	color: rgba(var(--color-white-rgb), 0.6);
	padding: 1.5rem;
}

.schedules-section .no-events-message i {
	font-size: 1.5rem;
	color: var(--color-brand);
}

@media (max-width: 900px) {
	.schedules-section {
		padding: 3rem 1rem;
	}
	.schedules-section .events-by-dates {
		overflow-x: auto;
		justify-content: flex-start;
		padding-bottom: 0.75rem;
		-webkit-overflow-scrolling: touch;
	}
	.schedules-section .events-by-dates .eventDayBtn {
		min-width: 90px;
		flex-shrink: 0;
	}
	.events-dates-pagination-wrapper {
		gap: 0.5rem;
		max-width: 100%;
		padding: 0 0.5rem;
	}
	.events-dates-pagination-wrapper .events-by-dates {
		flex-wrap: nowrap;
		overflow-x: hidden;
	}
	.events-dates-pagination-wrapper .events-by-dates .eventDayBtn {
		min-width: 120px;
		max-width: 150px;
	}
	.dates-nav-btn {
		width: 36px;
		height: 36px;
		font-size: 0.85rem;
	}
}

@media (max-width: 768px) {
	.schedules-section .schedules-cards-body .event-card-container {
		flex-direction: column;
		width: 100%;
		gap: 0.5rem;
	}
	.schedules-section .schedules-cards-body .event-card-container .event-time {
		flex-direction: row;
		width: 100%;
		justify-content: flex-start;
		gap: 0.5rem;
		margin-bottom: 0;
		padding: 0.5rem 0.75rem;
		background: rgba(var(--color-brand-rgb), 0.1);
		border-radius: 0.5rem;
	}
	.schedules-section .schedules-cards-body .event-card-container .card .card-body {
		flex-direction: column;
		padding: 1rem;
	}
	.schedules-section .schedules-cards-body .event-card-container .card .card-body .calendar-info {
		width: 100%;
		margin-top: 0.5rem;
	}
	.schedules-section .schedules-cards-body .event-card-container .card .card-body .calendar-info > .btn {
		width: 100% !important;
		padding: 0.6rem !important;
	}
	
	/* New event-card responsive for home page */
	.schedules-section .event-card {
		grid-template-columns: 1fr;
	}
	
	.schedules-section .event-card .event-card__timeline {
		flex-direction: row;
		justify-content: flex-start;
		gap: 1rem;
		padding: 0.75rem 1rem;
		border-right: none;
		border-bottom: 1px solid rgba(var(--color-white-rgb), 0.08);
	}
	
	.schedules-section .event-card .event-card__timeline-line {
		flex-direction: row;
		padding: 0;
		flex: 0;
	}
	
	.schedules-section .event-card .timeline-connector {
		display: none;
	}
	
	.schedules-section .event-card .event-card__actions {
		padding: 0.5rem;
		max-width: 100%;
		border-left: none;
		border-top: 1px solid rgba(var(--color-white-rgb), 0.08);
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.schedules-section .schedules-titles .main-title {
		font-size: 1.4rem;
	}
	.schedules-section .explore-event-btn {
		width: 100%;
		padding: 0.6rem 1.5rem;
	}
}

/* ========================================
   PAGE HERO SECTION (for inner pages)
   ======================================== */
.hero--page {
	height: auto;
	min-height: 220px;
	background: linear-gradient(135deg, rgba(var(--neutral-dark-rgb), 0.9), rgba(var(--color-primary-rgb), 0.85)), 
				var(--body-bg-image, url('../images/bg-img/hero-banner.jpg'));
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	padding: 2rem 0;
}

.hero--page.events-hero {
	min-height: 220px;
	padding: 1.75rem 0 2.25rem;
}

/* Animated Particles */

.hero__bg-particles {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	opacity: 0.85;
}

.hero__bg-particles .particle {
	position: absolute;
	border-radius: 50%;
	background: rgba(var(--color-secondary-rgb), 0.08);
	animation: floatParticle 22s infinite ease-in-out;
	filter: blur(6px);
}

.particle-1 {
	width: 160px;
	height: 160px;
	top: -40px;
	right: -10px;
	animation-delay: 0s;
}

.particle-2 {
	width: 110px;
	height: 110px;
	bottom: -20px;
	left: 6%;
	animation-delay: -6s;
}

.particle-3 {
	width: 70px;
	height: 70px;
	top: 36%;
	left: -8px;
	animation-delay: -12s;
}

@keyframes floatParticle {
	0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.1; }
	25% { transform: translate(15px, -15px) scale(1.05); opacity: 0.15; }
	50% { transform: translate(-10px, 10px) scale(0.95); opacity: 0.1; }
	75% { transform: translate(10px, 15px) scale(1.02); opacity: 0.12; }
}

.hero--page .hero__body {
	width: 100%;
	position: relative;
	z-index: 3;
	padding: 1rem 1.5rem;
	text-align: center;
	display: flex;
	justify-content: center;
}

.hero__badge {
	display: inline-flex;
	align-items: center;
	background: rgba(var(--color-secondary-rgb), 0.15);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	border: 1px solid rgba(var(--color-secondary-rgb), 0.25);
	color: #ffffff;
	padding: 0.5rem 1.25rem;
	border-radius: 50px;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.3px;
	animation: fadeInDown 0.5s ease;
	margin-bottom: 0.75rem !important;
}

.hero--page .hero__body .hero__page-title {
	color: #ffffff !important;
	text-transform: none;
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 700;
	text-shadow: 0 2px 10px rgba(0,0,0,0.3);
	margin: 0 0 0.6rem 0;
	letter-spacing: -0.3px;
	animation: fadeInUp 0.5s ease 0.1s both;
	line-height: 1.2;
}

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

.hero__subtitle {
	color: #ffffff;
	font-size: clamp(1rem, 2vw, 1.15rem);
	font-weight: 400;
	max-width: 680px;
	margin: 0 auto 0.85rem auto;
	line-height: 1.5;
	animation: fadeInUp 0.45s ease 0.2s both;
	text-align: center;
	text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.hero__breadcrumb {
	animation: fadeInUp 0.5s ease 0.3s both;
	margin-top: 0.25rem;
}

.hero__breadcrumb .breadcrumb {
	background: rgba(var(--color-white-rgb), 0.06);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	padding: 0.4rem 1rem;
	border-radius: 50px;
	border: 1px solid rgba(var(--color-white-rgb), 0.06);
	margin: 0;
	display: inline-flex;
}

.hero__breadcrumb .breadcrumb-item {
	color: #ffffff !important;
	font-size: 0.9rem;
}

.hero__breadcrumb .breadcrumb-item a,
.hero__breadcrumb .hero__back-link,
.hero__breadcrumb .hero__page-name {
	color: #ffffff !important;
}

.hero__breadcrumb .breadcrumb-item a:hover,
.hero__breadcrumb .hero__back-link:hover {
	color: var(--color-brand) !important;
}

.hero__breadcrumb .breadcrumb-item + .breadcrumb-item::before {
	content: "›";
	color: var(--color-secondary);
	font-weight: bold;
	padding: 0 0.6rem;
}

.hero--page .hero__body .hero__content .hero__back-link,
.hero--page .hero__body .hero__content .hero__page-name {
	text-align: center;
	color: var(--color-white);
	text-transform: capitalize;
	text-decoration: none;
	font-size: 0.95rem;
}

.hero--page .hero__body .hero__content .hero__back-link {
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
}

.hero--page .hero__body .hero__content .hero__back-link:hover {
	color: var(--color-brand);
}

.hero--page .hero__body .hero__content .hero__page-name {
	color: var(--color-brand);
	font-weight: 600;
}

/* ========================================
   FORMS REGISTRATION CARD (Inside Hero)
   ======================================== */
.hero--with-forms {
	height: auto !important;
	min-height: auto !important;
	padding: 2rem 0 2.5rem !important;
}

.hero--with-forms .hero__content-wrapper {
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: 2rem;
	align-items: center;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.hero--with-forms .hero__info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
}

.hero--with-forms .hero__badge {
	margin-bottom: 0.75rem;
}

.hero--with-forms .hero__page-title {
	font-size: clamp(1.6rem, 3.5vw, 2.25rem);
	margin-bottom: 0.6rem;
	text-align: left;
	color: #ffffff;
}

.hero--with-forms .hero__subtitle {
	font-size: 1rem;
	margin-bottom: 0.85rem;
	text-align: left;
	color: #ffffff;
}

.hero--with-forms .hero__breadcrumb {
	margin-top: 0.5rem;
}

.hero__forms-card {
	background: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.1) 0%, rgba(var(--color-white-rgb), 0.05) 100%);
	border-radius: 1rem;
	border: 1px solid rgba(var(--color-white-rgb), 0.15);
	overflow: hidden;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 10px 40px rgba(var(--color-black-rgb), 0.2);
}

.hero__forms-card {
	position: relative;
	top: 8px; /* slight overlap feel */
}

.hero__forms-card .forms-card__header {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	padding: 1rem 1.25rem;
	background: rgba(var(--color-secondary-rgb), 0.12);
	border-bottom: 1px solid rgba(var(--color-white-rgb), 0.1);
}

.hero__forms-card .forms-card__icon {
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--color-brand), var(--color-secondary));
	border-radius: 10px;
	font-size: 1.1rem;
	color: var(--color-white);
	flex-shrink: 0;
}

.hero__forms-card .forms-card__title h3 {
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-white);
}

.hero__forms-card .forms-card__title p {
	margin: 0.15rem 0 0;
	font-size: 0.8rem;
	color: rgba(var(--color-white-rgb), 0.65);
}

.hero__forms-card .forms-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding: 1rem 1.25rem;
}

.hero__forms-card .form-btn {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	padding: 0.875rem 1rem;
	background: rgba(var(--color-white-rgb), 0.06);
	border: 1px solid rgba(var(--color-white-rgb), 0.1);
	border-radius: 10px;
	text-decoration: none;
	transition: all 0.25s ease;
	position: relative;
	overflow: hidden;
}

.hero__forms-card .form-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--color-brand), var(--color-secondary));
	opacity: 0;
	transition: opacity 0.25s ease;
	z-index: 0;
}

.hero__forms-card .form-btn:hover {
	border-color: var(--color-secondary);
	transform: translateX(4px);
	box-shadow: 0 4px 15px rgba(var(--color-secondary-rgb), 0.25);
}

.hero__forms-card .form-btn:hover::before {
	opacity: 0.12;
}

.hero__forms-card .form-btn__icon {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(var(--color-secondary-rgb), 0.15);
	border-radius: 8px;
	color: var(--color-secondary);
	font-size: 1rem;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
	transition: all 0.25s ease;
}

.hero__forms-card .form-btn:hover .form-btn__icon {
	background: rgba(var(--color-secondary-rgb), 0.25);
	color: var(--color-brand);
}

.hero__forms-card .form-btn__text {
	flex: 1;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--color-white);
	position: relative;
	z-index: 1;
}

.hero__forms-card .form-btn__badge {
	padding: 0.2rem 0.5rem;
	background: linear-gradient(135deg, var(--color-brand), var(--color-secondary));
	color: var(--color-white);
	font-size: 0.65rem;
	font-weight: 600;
	border-radius: 50px;
	text-transform: uppercase;
	position: relative;
	z-index: 1;
}

.hero__forms-card .form-btn__arrow {
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(var(--color-white-rgb), 0.1);
	border-radius: 50%;
	color: rgba(var(--color-white-rgb), 0.6);
	font-size: 0.75rem;
	position: relative;
	z-index: 1;
	transition: all 0.25s ease;
}

.hero__forms-card .form-btn:hover .form-btn__arrow {
	background: var(--color-secondary);
	color: var(--color-white);
	transform: translateX(2px);
}

.hero__forms-card .form-btn--edit {
	border-color: rgba(var(--color-brand-rgb), 0.25);
}

.hero__forms-card .form-btn--edit .form-btn__icon {
	background: rgba(var(--color-brand-rgb), 0.15);
	color: var(--color-brand);
}

/* Responsive for Hero with Forms */
@media (max-width: 992px) {
	.hero--with-forms {
		padding: 1.5rem 0 2rem !important;
	}
	
	.hero--with-forms .hero__content-wrapper {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}
	
	.hero--with-forms .hero__info {
		align-items: center;
		text-align: center;
	}
	
	.hero--with-forms .hero__page-title,
	.hero--with-forms .hero__subtitle {
		text-align: center;
	}
	
	.hero--with-forms .hero__page-title {
		font-size: clamp(1.25rem, 4vw, 1.6rem);
	}
	
	.hero__forms-card {
		max-width: 480px;
		margin: 0 auto;
		top: 0;
	}
}

@media (max-width: 576px) {
	.hero--with-forms {
		padding: 1.5rem 0 2rem !important;
	}
	
	.hero__forms-card .forms-card__header {
		padding: 0.875rem 1rem;
	}
	
	.hero__forms-card .forms-card__icon {
		width: 36px;
		height: 36px;
		font-size: 1rem;
	}
	
	.hero__forms-card .forms-card__title h3 {
		font-size: 0.9rem;
	}
	
	.hero__forms-card .forms-card__body {
		padding: 0.875rem 1rem;
		gap: 0.6rem;
	}
	
	.hero__forms-card .form-btn {
		padding: 0.75rem 0.875rem;
		gap: 0.75rem;
	}
	
	.hero__forms-card .form-btn__icon {
		width: 32px;
		height: 32px;
		font-size: 0.9rem;
	}
	
	.hero__forms-card .form-btn__text {
		font-size: 0.85rem;
	}
	
	.hero__forms-card .form-btn__arrow {
		width: 24px;
		height: 24px;
		font-size: 0.7rem;
	}
}

/* Legacy forms section (keep for backward compatibility) */
.forms-registration-section {
	padding: 1.5rem 0 2rem;
	background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-dark-2) 100%);
	margin-top: -1rem;
	position: relative;
	z-index: 10;
}

.forms-registration-card {
	background: linear-gradient(135deg, rgba(var(--color-white-rgb), 0.08) 0%, rgba(var(--color-white-rgb), 0.03) 100%);
	border-radius: 1.25rem;
	border: 1px solid rgba(var(--color-white-rgb), 0.1);
	overflow: hidden;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.forms-card__header {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	background: rgba(var(--color-secondary-rgb), 0.1);
	border-bottom: 1px solid rgba(var(--color-white-rgb), 0.08);
}

.forms-card__icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--color-brand), var(--color-secondary));
	border-radius: 12px;
	font-size: 1.25rem;
	color: var(--color-white);
	flex-shrink: 0;
}

.forms-card__title h3 {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--color-white);
}

.forms-card__title p {
	margin: 0.25rem 0 0;
	font-size: 0.85rem;
	color: rgba(var(--color-white-rgb), 0.6);
}

.forms-card__body {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1rem;
	padding: 1.5rem;
}

.form-btn {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.25rem;
	background: rgba(var(--color-white-rgb), 0.05);
	border: 1px solid rgba(var(--color-white-rgb), 0.1);
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.form-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--color-brand), var(--color-secondary));
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 0;
}

.form-btn:hover {
	border-color: var(--color-secondary);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(var(--color-secondary-rgb), 0.2);
}

.form-btn:hover::before {
	opacity: 0.15;
}

.form-btn__icon {
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(var(--color-secondary-rgb), 0.15);
	border-radius: 10px;
	color: var(--color-secondary);
	font-size: 1.1rem;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
	transition: all 0.3s ease;
}

.form-btn:hover .form-btn__icon {
	background: rgba(var(--color-secondary-rgb), 0.25);
	color: var(--color-brand);
}

.form-btn__text {
	flex: 1;
	font-size: 1rem;
	font-weight: 500;
	color: var(--color-white);
	position: relative;
	z-index: 1;
}

.form-btn__badge {
	padding: 0.25rem 0.6rem;
	background: linear-gradient(135deg, var(--color-brand), var(--color-secondary));
	color: var(--color-white);
	font-size: 0.7rem;
	font-weight: 600;
	border-radius: 50px;
	text-transform: uppercase;
	position: relative;
	z-index: 1;
}

.form-btn__arrow {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(var(--color-white-rgb), 0.1);
	border-radius: 50%;
	color: rgba(var(--color-white-rgb), 0.6);
	font-size: 0.8rem;
	position: relative;
	z-index: 1;
	transition: all 0.3s ease;
}

.form-btn:hover .form-btn__arrow {
	background: var(--color-secondary);
	color: var(--color-white);
	transform: translateX(3px);
}

.form-btn--edit {
	border-color: rgba(var(--color-brand-rgb), 0.3);
}

.form-btn--edit .form-btn__icon {
	background: rgba(var(--color-brand-rgb), 0.15);
	color: var(--color-brand);
}

/* Responsive */
@media (max-width: 768px) {
	.forms-card__header {
		padding: 1rem 1.25rem;
	}
	
	.forms-card__icon {
		width: 44px;
		height: 44px;
		font-size: 1.1rem;
	}
	
	.forms-card__title h3 {
		font-size: 1rem;
	}
	
	.forms-card__body {
		grid-template-columns: 1fr;
		padding: 1rem;
	}
	
	.form-btn {
		padding: 0.875rem 1rem;
	}
	
	.form-btn__icon {
		width: 38px;
		height: 38px;
		font-size: 1rem;
	}
	
	.form-btn__text {
		font-size: 0.9rem;
	}
}

@media (max-width: 576px) {
	.forms-registration-section {
		padding: 1rem 0 1.5rem;
	}
	
	.forms-card__header {
		flex-direction: column;
		text-align: center;
	}
	
	.forms-card__title p {
		font-size: 0.8rem;
	}
}

/* ========================================
   EVENTS STATISTICS BAR
   ======================================== */
.events-stats-bar {
	background: linear-gradient(135deg, var(--color-dark-2), var(--color-dark-5));
	padding: 2rem 0;
	margin-top: -2rem;
	position: relative;
	z-index: 10;
}

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

.events-stats-bar .stat-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.5rem;
	background: rgba(var(--color-white-rgb), 0.05);
	border-radius: 1rem;
	border: 1px solid rgba(var(--color-white-rgb), 0.08);
	transition: all 0.3s ease;
}

.events-stats-bar .stat-item:hover {
	background: rgba(var(--color-white-rgb), 0.1);
	transform: translateY(-3px);
}

.events-stats-bar .stat-icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--color-brand), var(--color-secondary));
	border-radius: 12px;
	color: var(--color-white);
	font-size: 1.25rem;
}

.events-stats-bar .stat-content {
	display: flex;
	flex-direction: column;
}

.events-stats-bar .stat-number {
	color: var(--color-white);
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1;
}

.events-stats-bar .stat-label {
	color: rgba(var(--color-white-rgb), 0.7);
	font-size: 0.85rem;
	margin-top: 0.25rem;
}

/* ========================================
   EVENTS PAGE SECTION
   ======================================== */
.events-page-section {
	padding: 5rem 0 6rem;
}

.events-page-section .section-header {
	margin-bottom: 3rem;
}

.section-badge {
	display: inline-flex;
	align-items: center;
	background: rgba(var(--color-secondary-rgb), 0.15);
	color: var(--color-secondary);
	padding: 0.5rem 1.25rem;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.section-title {
	color: var(--color-white);
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.section-subtitle {
	color: rgba(var(--color-white-rgb), 0.7);
	font-size: clamp(1rem, 2vw, 1.15rem);
	max-width: 500px;
	margin: 0 auto;
}

/* ========================================
   EVENT DATES NAVIGATION (Redesigned)
   ======================================== */
.events-dates-wrapper {
	max-width: 100%;
	overflow-x: auto;
	padding-bottom: 1rem;
	-webkit-overflow-scrolling: touch;
}

.events-dates-wrapper::-webkit-scrollbar {
	height: 6px;
}

.events-dates-wrapper::-webkit-scrollbar-track {
	background: rgba(var(--color-white-rgb), 0.05);
	border-radius: 3px;
}

.events-dates-wrapper::-webkit-scrollbar-thumb {
	background: var(--color-secondary);
	border-radius: 3px;
}

.events-page-section .events-by-dates {
	gap: 1rem;
	padding: 0.5rem;
}

.events-page-section .eventDayBtn {
	background: rgba(var(--color-white-rgb), 0.05);
	border: 1px solid rgba(var(--color-white-rgb), 0.1);
	border-radius: 0.75rem;
	padding: 0;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	min-width: 130px;
	overflow: hidden;
}

.events-page-section .eventDayBtn .date-card {
	padding: 0.75rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4rem;
	position: relative;
}

.events-page-section .eventDayBtn .date-icon {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(var(--color-secondary-rgb), 0.15);
	border-radius: 50%;
	color: var(--color-secondary);
	font-size: 0.95rem;
	transition: all 0.3s ease;
}

.events-page-section .eventDayBtn .date-info {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.events-page-section .eventDayBtn .date-day {
	color: var(--color-white);
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1;
}

.events-page-section .eventDayBtn .date-month {
	color: var(--color-secondary);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.events-page-section .eventDayBtn .date-name {
	color: rgba(var(--color-white-rgb), 0.7);
	font-size: 0.75rem;
	text-align: center;
	line-height: 1.2;
	max-width: 120px;
}

.events-page-section .eventDayBtn .date-arrow {
	position: absolute;
	bottom: 0.5rem;
	right: 0.5rem;
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(var(--color-secondary-rgb), 0.2);
	border-radius: 50%;
	color: var(--color-secondary);
	font-size: 0.65rem;
	opacity: 0;
	transform: translateX(-10px);
	transition: all 0.3s ease;
}

.events-page-section .eventDayBtn:hover {
	background: rgba(var(--color-secondary-rgb), 0.1);
	border-color: rgba(var(--color-secondary-rgb), 0.3);
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(var(--color-secondary-rgb), 0.2);
}

.events-page-section .eventDayBtn:hover .date-icon {
	background: var(--color-secondary);
	color: var(--color-white);
	transform: scale(1.1);
}

.events-page-section .eventDayBtn:hover .date-arrow {
	opacity: 1;
	transform: translateX(0);
}

.events-page-section .eventDayBtn.active {
	background: linear-gradient(135deg, var(--color-brand), var(--color-secondary));
	border-color: transparent;
	box-shadow: 0 10px 30px rgba(var(--color-secondary-rgb), 0.4);
}

.events-page-section .eventDayBtn.active .date-icon {
	background: rgba(var(--color-white-rgb), 0.2);
	color: var(--color-white);
}

.events-page-section .eventDayBtn.active .date-day,
.events-page-section .eventDayBtn.active .date-month,
.events-page-section .eventDayBtn.active .date-name {
	color: var(--color-white);
}

.events-page-section .eventDayBtn.active .date-arrow {
	opacity: 1;
	transform: translateX(0);
	background: rgba(var(--color-white-rgb), 0.2);
	color: var(--color-white);
}

/* ========================================
   EVENT CARDS (New Timeline Design)
   ======================================== */
.events-cards-wrapper {
	position: relative;
	display: flex;
	    justify-content: center;
    align-items: center;
}

.events-page-section .schedules-cards-body {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
	width: 100%;
}

.events-page-section .event-card {
	width: 100%;
	max-width: 900px;
}

.event-card {
	display: grid;
	grid-template-columns: 90px 1fr auto;
	gap: 0;
	background: rgba(var(--color-white-rgb), 0.03);
	border: 1px solid rgba(var(--color-white-rgb), 0.08);
	border-radius: 1rem;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card:hover {
	background: rgba(var(--color-white-rgb), 0.06);
	border-color: rgba(var(--color-secondary-rgb), 0.3);
	transform: translateX(3px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Timeline Section */
.event-card__timeline {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 1.25rem 1rem;
	background: rgba(var(--color-secondary-rgb), 0.08);
	border-right: 1px solid rgba(var(--color-white-rgb), 0.08);
	position: relative;
}

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

.event-card__time .time-value {
	display: block;
	color: var(--color-white);
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1;
}

.event-card__time .time-label {
	display: block;
	color: rgba(var(--color-white-rgb), 0.5);
	font-size: 0.7rem;
	margin-top: 0.35rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.event-card__timeline-line {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
	padding: 0.75rem 0;
}

.timeline-dot {
	width: 8px;
	height: 8px;
	background: var(--color-secondary);
	border-radius: 50%;
	box-shadow: 0 0 0 3px rgba(var(--color-secondary-rgb), 0.2);
}

.timeline-connector {
	width: 2px;
	flex: 1;
	background: linear-gradient(to bottom, var(--color-secondary), transparent);
	margin-top: 0.5rem;
}

/* Main Section (Contains Content) */
.event-card__main {
	flex: 1;
	min-width: 0;
	padding: 1rem 1.25rem;
}

/* Content Section */
.event-card__content {
	padding: 1rem 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.event-card__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 0.75rem;
}

.event-card__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
}

.event-card__badges .badge {
	display: inline-flex;
	align-items: center;
	padding: 0.35rem 0.75rem;
	border-radius: 50px;
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.event-card__badges .badge-location {
	background: rgba(var(--color-sea-nymph), 0.2);
	color: var(--color-sea-nymph);
	background: rgba(112, 164, 150, 0.2);
	color: #70a496;
}

.event-card__badges .badge-category {
	background: rgba(var(--color-secondary-rgb), 0.15);
	color: var(--color-secondary);
}

.btn-icon {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-secondary);
	color: var(--color-white);
	border-radius: 50%;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 0.8rem;
}

.btn-icon:hover {
	background: var(--color-brand-2);
	color: var(--color-white);
	transform: scale(1.1);
}

.event-card__title {
	color: var(--color-white);
	font-size: clamp(1rem, 2vw, 1.15rem);
	font-weight: 600;
	margin: 0.25rem 0;
	line-height: 1.35;
	transition: color 0.3s ease;
}

.event-card:hover .event-card__title {
	color: var(--color-secondary);
}

.event-card__description {
	color: rgba(var(--color-white-rgb), 0.7);
	font-size: 0.85rem;
	line-height: 1.5;
	margin: 0.25rem 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Speakers */
.event-card__speakers {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin-top: 0.5rem;
	padding-top: 0.75rem;
	border-top: 1px solid rgba(var(--color-white-rgb), 0.08);
}

.speakers-label {
	color: rgba(var(--color-white-rgb), 0.5);
	font-size: 0.8rem;
	font-weight: 500;
	flex-shrink: 0;
}

/* Speakers Avatars Group - Overlapping Style */
.speakers-avatars-group {
	display: flex;
	align-items: center;
	position: relative;
}

.speaker-avatar-link {
	position: relative;
	display: inline-block;
	text-decoration: none;
	transition: all 0.3s ease;
	z-index: 1;
}

.speaker-avatar-link:not(:first-child) {
	margin-left: -10px;
}

.speaker-avatar-link:hover {
	z-index: 10;
	transform: translateY(-3px);
}

.speaker-avatar-link .speaker-pic {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--color-dark-2);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

.speaker-avatar-link:hover .speaker-pic {
	border-color: var(--color-secondary);
	box-shadow: 0 3px 12px rgba(var(--color-secondary-rgb), 0.4);
	transform: scale(1.1);
}

.speaker-avatar-link .speaker-pic-placeholder {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(var(--color-secondary-rgb), 0.2);
	border: 2px solid var(--color-dark-2);
	color: var(--color-secondary);
	font-size: 0.85rem;
	transition: all 0.3s ease;
}

.speaker-avatar-link:hover .speaker-pic-placeholder {
	border-color: var(--color-secondary);
	background: var(--color-secondary);
	color: var(--color-white);
	transform: scale(1.15);
}

/* Speaker Name Tooltip */
.speaker-name-tooltip {
	position: absolute;
	bottom: calc(100% + 6px);
	left: 50%;
	transform: translateX(-50%) translateY(8px);
	background: var(--color-secondary);
	color: var(--color-white);
	padding: 0.35rem 0.6rem;
	border-radius: 6px;
	font-size: 0.65rem;
	font-weight: 600;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 100;
	box-shadow: 0 3px 10px rgba(var(--color-secondary-rgb), 0.4);
}

.speaker-name-tooltip::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 6px solid transparent;
	border-top-color: var(--color-secondary);
}

.speaker-avatar-link:hover .speaker-name-tooltip {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

/* Speaker More Count Indicator */
.speaker-more-indicator {
	text-decoration: none;
}

.speaker-pic-placeholder.speaker-more-count {
	background: linear-gradient(135deg, var(--color-brand), var(--color-primary));
	color: var(--color-white);
	font-size: 0.7rem;
	font-weight: 700;
	border: 2px solid var(--color-dark-2);
	cursor: pointer;
}

.speaker-more-indicator:hover .speaker-pic-placeholder.speaker-more-count {
	transform: scale(1.15);
	box-shadow: 0 3px 12px rgba(var(--color-secondary-rgb), 0.5);
}

/* Legacy styles for backward compatibility */
.speakers-list {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.speaker-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid var(--color-secondary);
	transition: all 0.3s ease;
}

.speaker-avatar:not(:first-child) {
	margin-left: -12px;
}

.speaker-avatar:hover {
	transform: scale(1.15);
	z-index: 10;
}

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

.speaker-avatar--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(var(--color-secondary-rgb), 0.2);
	color: var(--color-secondary);
	font-size: 0.85rem;
}

.speakers-names {
	color: rgba(var(--color-white-rgb), 0.8);
	font-size: 0.85rem;
	font-weight: 500;
}

/* Actions Section */
.event-card__actions {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	padding: 1.25rem 1rem;
	border-left: 1px solid rgba(var(--color-white-rgb), 0.08);
	background: rgba(var(--color-primary-rgb), 0.2);
	gap: 0.5rem;
	max-width: fit-content;
	min-width: 140px;
}

.btn-view-details {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 1px solid var(--color-secondary);
	color: var(--color-secondary);
	padding: 0.5rem 0.75rem;
	border-radius: 50px;
	font-size: 0.75rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	white-space: nowrap;
	width: 100%;
}

.btn-view-details:hover {
	background: var(--color-secondary);
	color: var(--color-white);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(var(--color-secondary-rgb), 0.4);
}

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

.btn-view-details:hover i {
	transform: translateX(5px);
}

/* ========================================
   EVENT CARD FOOTER - ACTION BUTTONS
   ======================================== */
.event-card__footer {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	align-items: stretch;
	padding: 0;
	margin: 0;
	border: none;
	width: 100%;
}

.btn-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 0.75rem;
	border-radius: 50px;
	font-size: 0.75rem;
	font-weight: 600;
	width: 100%;
}

.meeting-cta {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 0.35rem;
}

.meeting-cta .btn-action,
.meeting-cta .badge-countdown,
.meeting-cta .badge-ended,
.meeting-cta .btn-join {
	width: 100%;
	justify-content: center;
	text-align: center;
}

.badge-status {
	width: 100%;
	justify-content: center;
	text-align: center;
}

.badge-status {
	width: 100%;
	justify-content: center;
	text-align: center;
}

.btn-action {
	text-decoration: none;
	transition: all 0.3s ease;
 }

.btn-action--speaker {
	background: rgba(var(--color-secondary-rgb), 0.15);
	border: 1px solid rgba(var(--color-secondary-rgb), 0.3);
	color: var(--color-secondary);
}

.btn-action--speaker:hover {
	background: var(--color-secondary);
	color: var(--color-white);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(var(--color-secondary-rgb), 0.3);
}

.btn-action--viewer {
	background: rgba(var(--color-sea-nymph-rgb, 112, 164, 150), 0.15);
	border: 1px solid rgba(112, 164, 150, 0.3);
	color: #70a496;
}

.btn-action--viewer:hover {
	background: #70a496;
	color: var(--color-white);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(112, 164, 150, 0.3);
}

.btn-action--meeting {
	background: linear-gradient(135deg, #4285f4, #34a853);
	border: none;
	color: var(--color-white);
}

.btn-action--meeting:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(66, 133, 244, 0.4);
	color: var(--color-white);
}

.btn-action--meeting-link {
	background: linear-gradient(135deg, rgba(23, 162, 184, 0.1), rgba(23, 162, 184, 0.2));
	border: 2px solid #17a2b8;
	color: #17a2b8;
	padding: 0.4rem 0.8rem;
	border-radius: 50px;
	font-size: 0.75rem;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	cursor: pointer;
}

.btn-action--meeting-link:hover {
	background: linear-gradient(135deg, #17a2b8, #138496);
	color: var(--color-white);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(23, 162, 184, 0.4);
}

.btn-action--request {
	background: rgba(var(--color-brand-rgb), 0.15);
	border: 1px solid rgba(var(--color-brand-rgb), 0.3);
	color: var(--color-brand);
}

.btn-action--request:hover {
	background: var(--color-brand);
	color: var(--color-white);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(var(--color-brand-rgb), 0.3);
}

.btn-action--request-viewer {
	background: rgba(23, 162, 184, 0.15);
	border: 1px solid rgba(23, 162, 184, 0.3);
	color: #17a2b8;
	display: inline-flex;
	align-items: center;
	padding: 0.35rem 0.75rem;
	border-radius: 0.5rem;
	font-size: 0.8rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.btn-action--request-viewer:hover {
	background: #17a2b8;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(23, 162, 184, 0.3);
}

/* schedule_event.php viewer request button */
.btn-join--request-viewer {
	background: rgba(23, 162, 184, 0.15);
	border: 1px solid rgba(23, 162, 184, 0.3);
	color: #17a2b8;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.6rem 1.2rem;
	border-radius: 0.75rem;
	font-size: 0.9rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-join--request-viewer:hover {
	background: #17a2b8;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(23, 162, 184, 0.3);
}

/* Status Badges */
.badge-status {
	display: inline-flex;
	align-items: center;
	padding: 0.3rem 0.6rem;
	border-radius: 50px;
	font-size: 0.6rem;
	font-weight: 600;
}

.badge-status--pending {
	background: rgba(255, 193, 7, 0.15);
	border: 1px solid rgba(255, 193, 7, 0.3);
	color: #ffc107;
}

.badge-status--approved {
	background: rgba(40, 167, 69, 0.15);
	border: 1px solid rgba(40, 167, 69, 0.3);
	color: #28a745;
}

/* Meeting Countdown Badge */
.badge-countdown {
	display: inline-flex;
	align-items: center;
	padding: 0.3rem 0.6rem;
	border-radius: 50px;
	font-size: 0.6rem;
	font-weight: 600;
	background: rgba(var(--color-primary-rgb), 0.3);
	border: 1px solid rgba(var(--color-primary-rgb), 0.5);
	color: var(--color-white);
}

.badge-ended {
	display: inline-flex;
	align-items: center;
	padding: 0.3rem 0.6rem;
	border-radius: 50px;
	font-size: 0.6rem;
	font-weight: 600;
	background: rgba(var(--color-white-rgb), 0.1);
	color: rgba(var(--color-white-rgb), 0.5);
}

/* Meeting CTA Container */
.meeting-cta {
	display: inline-flex;
	align-items: center;
}

@media (max-width: 768px) {
	.event-card__footer {
		justify-content: center;
	}
	
	.btn-action {
		font-size: 0.75rem;
		padding: 0.45rem 0.85rem;
	}
}

@media (max-width: 576px) {
	.event-card__footer {
		flex-direction: column;
		align-items: stretch;
	}
	
	.btn-action {
		justify-content: center;
	}
}

/* No Events State */
.no-events-state {
	text-align: center;
	padding: 4rem 2rem;
	background: rgba(var(--color-white-rgb), 0.03);
	border: 1px dashed rgba(var(--color-white-rgb), 0.15);
	border-radius: 1.5rem;
}

.no-events-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(var(--color-secondary-rgb), 0.1);
	border-radius: 50%;
	color: var(--color-secondary);
	font-size: 2rem;
}

.no-events-state h4 {
	color: var(--color-white);
	font-size: 1.35rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.no-events-state p {
	color: rgba(var(--color-white-rgb), 0.6);
	font-size: 1rem;
	max-width: 400px;
	margin: 0 auto;
}

/* ========================================
   EVENTS CTA SECTION
   ======================================== */
.events-cta-section {
	background: linear-gradient(135deg, var(--color-dark-3), var(--color-dark-2));
	padding: 4rem 0;
	position: relative;
	overflow: hidden;
}

.events-cta-section::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(var(--color-secondary-rgb), 0.15), transparent);
	border-radius: 50%;
	transform: translate(30%, -30%);
}

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

.cta-title {
	color: var(--color-white);
	font-size: clamp(1.5rem, 4vw, 2.25rem);
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.cta-text {
	color: rgba(var(--color-white-rgb), 0.75);
	font-size: 1.1rem;
	margin-bottom: 2rem;
}

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

.btn-cta-primary {
	display: inline-flex;
	align-items: center;
	background: linear-gradient(135deg, var(--color-brand), var(--color-secondary));
	color: var(--color-white);
	padding: 1rem 2rem;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 8px 25px rgba(var(--color-secondary-rgb), 0.3);
}

.btn-cta-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(var(--color-secondary-rgb), 0.4);
	color: var(--color-white);
}

.btn-cta-secondary {
	display: inline-flex;
	align-items: center;
	background: transparent;
	border: 2px solid rgba(var(--color-white-rgb), 0.3);
	color: var(--color-white);
	padding: 1rem 2rem;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
	background: rgba(var(--color-white-rgb), 0.1);
	border-color: var(--color-white);
	color: var(--color-white);
}

/* ========================================
   RESPONSIVE - EVENTS PAGE
   ======================================== */
@media (max-width: 1200px) {
	.event-card {
		grid-template-columns: 120px 1fr auto;
	}
}

@media (max-width: 992px) {
	.events-stats-bar .stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.event-card {
		grid-template-columns: 80px 1fr auto;
	}
	
	.event-card__actions {
		flex-direction: column;
		align-items: stretch;
		padding: 0.5rem;
		max-width: fit-content;
		min-width: 100px;
	}
	
	.event-card__actions .btn-view-details {
		width: 100%;
		justify-content: center;
	}
	
	.event-card__content {
		padding: 0.85rem 1rem;
	}
}

@media (max-width: 768px) {
	.hero--page {
		min-height: 220px;
		padding: 2rem 0;
	}
	
	.hero--page.events-hero {
		min-height: 200px;
		padding: 1.5rem 0;
	}
	
	.hero--page .hero__body {
		padding: 0.75rem 1rem;
	}
	
	.hero__badge {
		font-size: 0.7rem;
		padding: 0.35rem 0.85rem;
		margin-bottom: 0.5rem !important;
	}
	
	.hero--page .hero__body .hero__page-title {
		font-size: 1.35rem;
		margin-bottom: 0.35rem;
	}
	
	.hero__subtitle {
		font-size: 0.8rem;
		padding: 0 0.5rem;
		margin: 0 auto 0.5rem;
	}
	
	.hero__breadcrumb .breadcrumb {
		padding: 0.35rem 0.85rem;
	}
	
	.hero__breadcrumb .breadcrumb-item {
		font-size: 0.75rem;
	}
	
	.events-stats-bar {
		margin-top: 0;
	}
	
	.events-stats-bar .stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
	
	.events-stats-bar .stat-item {
		padding: 1rem;
	}
	
	.events-stats-bar .stat-number {
		font-size: 1.5rem;
	}
	
	.events-page-section {
		padding: 3rem 0 4rem;
	}
	
	.events-page-section .eventDayBtn {
		min-width: 150px;
	}
	
	.event-card {
		grid-template-columns: 1fr;
	}
	
	.event-card__timeline {
		flex-direction: row;
		justify-content: flex-start;
		gap: 1rem;
		padding: 1rem 1.25rem;
		border-right: none;
		border-bottom: 1px solid rgba(var(--color-white-rgb), 0.08);
	}
	
	.event-card__timeline-line {
		flex-direction: row;
		padding: 0;
		flex: 0;
	}
	
	.timeline-connector {
		display: none;
	}
	
	.event-card__content {
		padding: 0.85rem 1rem;
	}
	
	.event-card__header {
		flex-direction: row;
		justify-content: space-between;
	}
	
	.event-card__actions {
		padding: 0.5rem;
		max-width: fit-content;
		min-width: 90px;
		border-left: 1px solid rgba(var(--color-white-rgb), 0.08);
		border-top: none;
	}
}

@media (max-width: 576px) {
	.event-card {
		grid-template-columns: 60px 1fr auto;
	}
	
	.event-card__actions {
		padding: 0.4rem;
		max-width: fit-content;
		min-width: 75px;
	}
	
	.btn-action {
		padding: 0.25rem 0.4rem;
		font-size: 0.5rem;
	}
	
	.btn-view-details {
		padding: 0.25rem 0.4rem;
		font-size: 0.5rem;
	}
	
	.badge-status,
	.badge-countdown,
	.badge-ended {
		padding: 0.2rem 0.4rem;
		font-size: 0.5rem;
	}
	
	.event-card__title {
		font-size: 0.85rem;
	}
	
	.event-card__description {
		font-size: 0.7rem;
	}
	
	.event-card__time .time-value {
		font-size: 0.9rem;
	}
	
	.event-card__time .time-label {
		font-size: 0.55rem;
	}

	.events-stats-bar .stats-grid {
		grid-template-columns: 1fr 1fr;
		gap: 0.75rem;
	}
	
	.events-stats-bar .stat-item {
		flex-direction: column;
		text-align: center;
		padding: 0.85rem;
	}
	
	.events-stats-bar .stat-icon {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}
	
	.events-stats-bar .stat-number {
		font-size: 1.25rem;
	}
	
	.events-stats-bar .stat-label {
		font-size: 0.75rem;
	}
	
	.events-page-section .eventDayBtn {
		min-width: 110px;
	}
	
	.events-page-section .eventDayBtn .date-card {
		padding: 0.6rem;
	}
	
	.events-page-section .eventDayBtn .date-day {
		font-size: 1.2rem;
	}
	
	.event-card__badges .badge {
		font-size: 0.7rem;
		padding: 0.35rem 0.7rem;
	}
	
	.event-card__title {
		font-size: 1.1rem;
	}
	
	.event-card__description {
		font-size: 0.9rem;
	}
	
	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}
	
	.btn-cta-primary,
	.btn-cta-secondary {
		width: 100%;
		max-width: 280px;
		justify-content: center;
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.schedules-section .event-card-container .card .card-body .event-info .event-description {
	color: rgba(var(--color-white-rgb), 0.85);
	font-size: 0.95rem;
	line-height: 1.5;
}

.schedules-section .event-card-container .card .card-body .event-info .event-description::first-letter {
	text-transform: capitalize;
}

.schedules-section .event-card-container .card .card-body .event-info .event-speakers-pic {
	margin-top: 1rem;
}

.schedules-section .event-card-container .card .card-body .event-info .event-speakers-pic .speaker-pic {
	width: 40px;
	height: 40px;
	object-fit: cover;
	border-radius: 50%;
	border: 2px solid var(--color-white);
	transition: all 0.3s ease;
}

.schedules-section .event-card-container .card .card-body .event-info .event-speakers-pic .speaker-pic:not(:first-child) {
	margin-left: -15px;
}

.schedules-section .event-card-container .card .card-body .event-info .event-speakers-pic .speaker-pic:hover {
	z-index: 5;
	transform: scale(1.1);
}

.schedules-section .event-card-container .card .card-body .calendar-info {
	gap: 0.6rem;
	flex-shrink: 0;
}

.schedules-section .event-card-container .card .card-body .calendar-info > .btn {
	text-transform: capitalize;
	display: inline-block;
	width: 180px;
	height: auto;
	padding: 0.5rem 1rem;
	font-size: 0.9rem;
}

.schedules-section .event-card-container .card .card-body .calendar-info .add-to-schedules-btn {
	color: var(--color-white);
	font-weight: 500;
	background-color: var(--color-brand);
	border: 1px solid transparent;
}

.schedules-section .event-card-container .card .card-body .calendar-info .add-to-schedules-btn:hover {
	background-color: var(--color-brand-2);
}

.schedules-section .event-card-container .card .card-body .calendar-info .view-event-btn {
	background-color: rgba(var(--color-white-rgb), 0.08);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	color: var(--color-brand);
	border: 1px solid var(--color-brand);
}

.schedules-section .event-card-container .card .card-body .calendar-info .view-event-btn:hover {
	background-color: var(--color-brand);
	color: var(--color-white);
}

/* ========================================
   PAGINATION STYLES
   ======================================== */
.pagination-wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
}

.pagination-wrapper .pagination {
	gap: 0.5rem;
}

.pagination-wrapper .pagination .page-item .page-link {
	background-color: rgba(var(--color-white-rgb), 0.1);
	border: 1px solid rgba(var(--color-brand-rgb), 0.3);
	color: var(--color-white);
	border-radius: 0.5rem;
	padding: 0.6rem 1rem;
	transition: all 0.3s ease;
	font-weight: 500;
}

.pagination-wrapper .pagination .page-item .page-link:hover {
	background-color: var(--color-brand);
	border-color: var(--color-brand);
	color: var(--color-white);
	transform: translateY(-2px);
}

.pagination-wrapper .pagination .page-item.active .page-link {
	background: linear-gradient(135deg, var(--color-brand), var(--color-brand-2));
	border-color: var(--color-brand);
	color: var(--color-white);
	box-shadow: 0 4px 15px rgba(var(--color-brand-rgb), 0.4);
}

.pagination-wrapper .pagination .page-item.disabled .page-link {
	background-color: rgba(var(--color-white-rgb), 0.05);
	border-color: rgba(var(--color-white-rgb), 0.1);
	color: rgba(var(--color-white-rgb), 0.4);
	cursor: not-allowed;
}

@media (max-width: 576px) {
	.pagination-wrapper .pagination .page-item .page-link {
		padding: 0.5rem 0.75rem;
		font-size: 0.85rem;
	}
}

/* ====================================
   Auth Pages (Register/Login) Styles
   ==================================== */
.auth-section {
	background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
	min-height: calc(100vh - 400px);
}

.auth-card {
	background: var(--color-white);
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.auth-card__header {
	background: linear-gradient(135deg, var(--color-brand), var(--color-secondary));
	padding: 2rem;
	text-align: center;
	color: var(--color-white);
}

.auth-card__icon {
	width: 80px;
	height: 80px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-size: 2rem;
}

.auth-card__header h2 {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.auth-card__header p {
	opacity: 0.9;
	margin-bottom: 0;
	font-size: 0.95rem;
}

.auth-card__body {
	padding: 2rem;
}

/* Form Sections */
.form-section {
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.form-section:last-of-type {
	border-bottom: none;
	margin-bottom: 1.5rem;
	padding-bottom: 0;
}

.form-section__title {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 1.25rem;
	display: flex;
	align-items: center;
}

.form-section__title i {
	color: var(--color-brand);
}

/* Auth Form Styling */
.auth-form .form-group {
	margin-bottom: 0;
}

.auth-form .form-label {
	display: block;
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
}

.auth-form .form-label i {
	color: var(--color-brand);
}

.auth-form .form-control {
	border: 2px solid rgba(var(--color-black-rgb), 0.1);
	border-radius: 10px;
	padding: 0.75rem 1rem;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	background-color: var(--color-white);
}

.auth-form .form-control:focus {
	border-color: var(--color-brand);
	box-shadow: 0 0 0 4px rgba(var(--color-brand-rgb), 0.1);
	background-color: var(--color-white);
}

.auth-form textarea.form-control {
	min-height: 100px;
	resize: vertical;
}

.auth-form .form-text {
	font-size: 0.8rem;
	margin-top: 0.35rem;
}

/* File Upload */
.file-upload-wrapper {
	position: relative;
}

.file-upload-wrapper input[type="file"] {
	padding: 0.5rem;
}

/* Auth Form Actions */
.auth-form__actions {
	text-align: center;
	padding-top: 1rem;
}

.btn-auth-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	padding: 1rem 2rem;
	background: linear-gradient(135deg, var(--color-brand), var(--color-secondary));
	border: none;
	border-radius: 12px;
	color: var(--color-white);
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(var(--color-brand-rgb), 0.3);
}

.btn-auth-submit:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(var(--color-brand-rgb), 0.4);
}

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

.auth-form__links {
	margin-top: 1.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

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

.auth-link {
	color: var(--color-brand);
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.auth-link:hover {
	color: var(--color-secondary);
	text-decoration: underline;
}

/* Auth Page Responsive */
@media (max-width: 768px) {
	.auth-card__header {
		padding: 1.5rem;
	}
	
	.auth-card__icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}
	
	.auth-card__header h2 {
		font-size: 1.5rem;
	}
	
	.auth-card__body {
		padding: 1.5rem;
	}
}

@media (max-width: 576px) {
	.auth-card__body {
		padding: 1.25rem;
	}
	
	.form-section__title {
		font-size: 1rem;
	}
	
	.btn-auth-submit {
		padding: 0.875rem 1.5rem;
	}
}

/* ====================================
   Profile Page Styles
   ==================================== */
.profile-section {
	background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
	min-height: calc(100vh - 400px);
}

/* Profile Info Card */
.profile-info-card {
	background: var(--color-white);
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	position: sticky;
	top: 100px;
}

.profile-info-card__header {
	background: linear-gradient(135deg, var(--color-brand), var(--color-secondary));
	padding: 2rem;
	text-align: center;
	color: var(--color-white);
}

.profile-info-card__avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 1rem;
	border: 4px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.profile-info-card__name {
	font-size: 1.35rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.profile-info-card__role {
	display: inline-flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.2);
	padding: 0.35rem 1rem;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 500;
}

.profile-info-card__body {
	padding: 1.5rem;
}

.profile-info-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 0.75rem 0;
}

.profile-info-item:not(:last-child) {
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.profile-info-item > i {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, rgba(var(--color-brand-rgb), 0.1), rgba(var(--color-secondary-rgb), 0.1));
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-brand);
	font-size: 1rem;
}

.profile-info-item .label {
	display: block;
	font-size: 0.8rem;
	color: var(--color-text-muted);
	margin-bottom: 0.15rem;
}

.profile-info-item .value {
	display: block;
	font-weight: 600;
	color: var(--color-primary);
	font-size: 0.95rem;
	word-break: break-word;
}

.profile-info-card__footer {
	padding: 1rem 1.5rem 1.5rem;
}

.btn-profile-action {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0.875rem 1.5rem;
	background: transparent;
	border: 2px solid var(--color-brand);
	border-radius: 12px;
	color: var(--color-brand);
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-profile-action:hover {
	background: var(--color-brand);
	color: var(--color-white);
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(var(--color-brand-rgb), 0.3);
}

.btn-profile-action--secondary {
	border-color: var(--color-secondary);
	color: var(--color-secondary);
}

.btn-profile-action--secondary:hover {
	background: var(--color-secondary);
	color: var(--color-white);
	box-shadow: 0 5px 20px rgba(222, 89, 131, 0.3);
}

.btn-profile-action--danger {
	border-color: #dc3545;
	color: #dc3545;
}

.btn-profile-action--danger:hover {
	background: #dc3545;
	color: var(--color-white);
	box-shadow: 0 5px 20px rgba(220, 53, 69, 0.3);
}

/* Account Info Box */
.account-info-box {
	display: flex;
	gap: 1.25rem;
	padding: 1.5rem;
	background: linear-gradient(135deg, rgba(var(--color-brand-rgb), 0.05), rgba(var(--color-secondary-rgb), 0.05));
	border-radius: 16px;
	border: 1px solid rgba(var(--color-brand-rgb), 0.1);
}

.account-info-icon {
	width: 60px;
	height: 60px;
	min-width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--color-brand), var(--color-secondary));
	border-radius: 14px;
	color: var(--color-white);
	font-size: 1.5rem;
}

.account-info-content h4 {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 0.5rem;
}

.account-info-content p {
	font-size: 0.95rem;
	color: var(--color-text);
	margin-bottom: 0;
	line-height: 1.6;
}

.account-bio h5 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 0.75rem;
}

.account-bio h5 i {
	color: var(--color-brand);
}

.account-bio p {
	padding: 1rem;
	background: rgba(var(--color-black-rgb), 0.02);
	border-radius: 10px;
	border-left: 3px solid var(--color-brand);
	margin: 0;
}

/* Profile Form Card */
.profile-form-card {
	background: var(--color-white);
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.profile-form-card__header {
	background: linear-gradient(135deg, var(--color-brand), var(--color-secondary));
	padding: 1.5rem 2rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	color: var(--color-white);
}

.profile-form-card__header i {
	font-size: 1.5rem;
}

.profile-form-card__header h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin: 0;
}

.profile-form-card__body {
	padding: 2rem;
}

/* Profile Form Styling */
.profile-form .form-group {
	margin-bottom: 0;
}

.profile-form .form-label {
	display: block;
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
}

.profile-form .form-label i {
	color: var(--color-brand);
}

.profile-form .form-control {
	border: 2px solid rgba(var(--color-black-rgb), 0.1);
	border-radius: 10px;
	padding: 0.75rem 1rem;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	background-color: var(--color-white);
}

.profile-form .form-control:focus {
	border-color: var(--color-brand);
	box-shadow: 0 0 0 4px rgba(var(--color-brand-rgb), 0.1);
	background-color: var(--color-white);
}

.profile-form textarea.form-control {
	min-height: 100px;
	resize: vertical;
}

.profile-form .form-text {
	font-size: 0.8rem;
	margin-top: 0.35rem;
}

.profile-form__actions {
	padding-top: 1rem;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-profile-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem 2.5rem;
	background: linear-gradient(135deg, var(--color-brand), var(--color-secondary));
	border: none;
	border-radius: 12px;
	color: var(--color-white);
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(var(--color-brand-rgb), 0.3);
}

.btn-profile-submit:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(var(--color-brand-rgb), 0.4);
}

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

/* Profile Page Responsive */
@media (max-width: 992px) {
	.profile-info-card {
		position: static;
		margin-bottom: 1.5rem;
	}
}

@media (max-width: 768px) {
	.profile-form-card__body {
		padding: 1.5rem;
	}
	
	.profile-info-card__avatar {
		width: 100px;
		height: 100px;
	}
	
	.profile-info-card__name {
		font-size: 1.2rem;
	}
}

@media (max-width: 576px) {
	.profile-form-card__header {
		padding: 1rem 1.25rem;
	}
	
	.profile-form-card__body {
		padding: 1.25rem;
	}
	
	.profile-info-card__header {
		padding: 1.5rem;
	}
	
	.btn-profile-submit {
		width: 100%;
	}
}

/* ====================================
   Account Page Styles
   ==================================== */
.account-role-badge {
	display: inline-flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.2);
	padding: 0.4rem 1rem;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 500;
	margin-top: 0.75rem;
}

.account-info-list {
	margin-bottom: 1.5rem;
}

.account-info-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem;
	background: linear-gradient(135deg, rgba(var(--color-brand-rgb), 0.05), rgba(var(--color-secondary-rgb), 0.05));
	border-radius: 12px;
	margin-bottom: 0.75rem;
}

.account-info-item:last-child {
	margin-bottom: 0;
}

.account-info-item > i {
	width: 44px;
	height: 44px;
	background: linear-gradient(135deg, var(--color-brand), var(--color-secondary));
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	font-size: 1rem;
	flex-shrink: 0;
}

.account-info-item .label {
	display: block;
	font-size: 0.75rem;
	color: var(--color-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.15rem;
}

.account-info-item .value {
	display: block;
	font-weight: 600;
	color: var(--color-primary);
	font-size: 0.95rem;
	word-break: break-word;
}

.account-actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.btn-account-action {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0.875rem 1.5rem;
	border-radius: 12px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	border: none;
}

.btn-account-primary {
	background: linear-gradient(135deg, var(--color-brand), var(--color-secondary));
	color: var(--color-white);
	box-shadow: 0 4px 15px rgba(var(--color-brand-rgb), 0.3);
}

.btn-account-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(var(--color-brand-rgb), 0.4);
	color: var(--color-white);
}

.btn-account-secondary {
	background: transparent;
	border: 2px solid rgba(var(--color-brand-rgb), 0.3);
	color: var(--color-primary);
}

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

.btn-account-danger {
	background: transparent;
	border: 2px solid rgba(220, 53, 69, 0.3);
	color: #dc3545;
}

.btn-account-danger:hover {
	background: #dc3545;
	border-color: #dc3545;
	color: var(--color-white);
	transform: translateY(-2px);
}

/* Modal z-index fix - ensure modals appear above navbar (z-index: 9999) */
.modal {
	z-index: 10050 !important;
}

.modal-backdrop {
	z-index: 10040 !important;
}

.modal-backdrop.show {
	z-index: 10040 !important;
}

#meetingModal {
	z-index: 10050 !important;
}

#meetingModal .modal-dialog {
	z-index: 10051 !important;
}

#meetingModal + .modal-backdrop {
	z-index: 10040 !important;
}
/* ========================================
   ABOUT US PAGE
   ======================================== */

.about-us-body {
background-color: rgba(14, 14, 23, 0.85);
height: max-content;
margin: 0;
}

/* Section Intro */
.about-us-body .section-intro {
height: max-content;
padding: 5rem 3rem;
background: linear-gradient(to right, rgba(29, 30, 86, 0.9), rgba(29, 30, 86, 0.9)), url('/public/images/bg-img/hero-banner.jpg');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
gap: 2rem;
}

.about-us-body .section-intro .image-section-wrapper {
min-width: auto;
width: 40%;
max-width: 700px;
border-radius: 1rem;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
overflow: hidden;
aspect-ratio: 16/12;
}

.about-us-body .section-intro .image-section-wrapper .section-image {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
}

.about-us-body .section-intro .section-text {
width: 50%;
}

.about-us-body .section-intro .section-text .section-title {
color: var(--color-white);
text-transform: capitalize;
text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
font-weight: 700;
font-size: 2.5rem;
white-space: normal;
overflow-wrap: break-word;
word-break: break-word;
}

.about-us-body .section-intro .section-text > .section-description {
text-wrap: wrap;
font-weight: 400;
margin-top: 2rem;
color: var(--color-white);
font-size: 1.05rem;
line-height: 1.7;
}

.about-us-body .section-intro .section-text > .section-description strong {
text-transform: capitalize;
color: var(--color-brand);
font-size: 1.5rem;
}

@media (max-width: 1000px) {
.about-us-body .section-intro {
flex-wrap: wrap;
text-align: center;
gap: 1rem;
padding: 3rem 1.5rem;
}

.about-us-body .section-intro .section-text {
width: 100%;
}

.about-us-body .section-intro .image-section-wrapper {
width: 100%;
margin: 0 auto;
aspect-ratio: 16/8;
}
}

/* Section Mission & Vision */
.about-us-body .section-mission {
padding: 5rem 3rem;
gap: 2rem;
background-color: var(--color-white);
position: relative;
}

.about-us-body .section-mission .image-section-wrapper {
min-width: auto;
width: 40%;
max-width: 700px;
border-radius: 1rem;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
overflow: hidden;
aspect-ratio: 16/12;
}

.about-us-body .section-mission .image-section-wrapper .section-image {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
}

.about-us-body .section-mission .section-text {
width: 50%;
gap: 2rem;
}

.about-us-body .section-mission .section-text > div > .section-title {
position: relative;
font-size: 1.2rem;
font-weight: 500;
padding-left: 35px;
color: var(--color-brand);
text-wrap: unset;
}

.about-us-body .section-mission .section-text > div > .section-title::before {
content: "";
position: absolute;
left: 0px;
top: 12px;
width: 25px;
height: 3px;
background-color: var(--color-brand);
}

.about-us-body .section-mission .section-text > div .section-description {
color: var(--color-dark-2);
font-weight: 500;
font-size: 1.5rem;
line-height: 1.6;
margin-top: 0.5rem;
}

@media (max-width: 1000px) {
.about-us-body .section-mission {
flex-wrap: wrap-reverse;
padding: 3rem 1.5rem;
}

.about-us-body .section-mission .image-section-wrapper {
width: 100%;
aspect-ratio: 16/8;
}

.about-us-body .section-mission .section-text {
flex-direction: row !important;
gap: 1rem;
width: 100%;
}
}

@media (max-width: 590px) {
.about-us-body .section-mission {
padding: 3rem 1rem;
gap: 1rem;
}

.about-us-body .section-mission .section-text {
flex-direction: column !important;
}
}

/* Section Features - How We Work */
.about-us-body .section-features {
padding: 7rem 0rem;
gap: 5rem;
max-width: 1200px;
margin: 0 auto;
}

.about-us-body .section-features .section-text {
width: 50%;
}

.about-us-body .section-features .section-text .section-title {
text-transform: capitalize;
color: var(--color-white);
text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
font-weight: 700;
font-size: 2.5rem;
}

.about-us-body .section-features .section-text .section-description {
color: #5798b5;
font-weight: 500;
font-size: 1.3rem;
line-height: 1.6;
}

.about-us-body .section-features .section-text .section-description::first-letter {
text-transform: capitalize;
}

.about-us-body .section-features .section-text .section-list {
padding: 0;
margin-top: 2rem;
list-style: none;
}

.about-us-body .section-features .section-text .section-list > li {
display: flex;
align-items: center;
gap: 1rem;
margin-bottom: 0.5rem;
}

.about-us-body .section-features .section-text .section-list > li i {
background-color: var(--color-brand);
text-align: center;
padding: 1rem;
border-radius: 0.5rem;
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
color: var(--color-white);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
flex-shrink: 0;
}

.about-us-body .section-features .section-text .section-list > li span {
font-weight: 300;
font-size: 1.2rem;
color: var(--color-white);
}

.about-us-body .section-features .section-text .section-list > li span::first-letter {
text-transform: capitalize;
}

.about-us-body .section-features .section-image-wrapper {
position: relative;
min-width: auto;
width: 50%;
border-radius: 1rem;
height: 500px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.about-us-body .section-features .section-image-wrapper .section-image {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
border-radius: 1rem;
}

.about-us-body .section-features .section-image-wrapper::before {
content: attr(data-label);
text-align: center;
font-size: 1.5rem;
font-weight: 500;
display: flex;
align-items: center;
justify-content: center;
color: var(--color-white);
position: absolute;
border-radius: 1.5rem;
bottom: -50px;
left: -50px;
width: 200px;
height: fit-content;
padding: 1.5rem;
background-color: var(--color-brand);
opacity: 0.9;
z-index: 22;
}

@media (max-width: 1000px) {
.about-us-body .section-features {
flex-direction: column;
padding: 7rem 1rem;
gap: 2rem;
}

.about-us-body .section-features .section-text {
width: 100%;
}

.about-us-body .section-features .section-image-wrapper {
width: 100%;
height: 350px;
}

.about-us-body .section-features .section-image-wrapper::before {
bottom: -60px;
transform: translateX(-30%);
left: 45%;
font-size: 1.2rem;
}
}

@media (max-width: 400px) {
.about-us-body .section-features .section-image-wrapper {
height: 300px;
}

.about-us-body .section-features .section-image-wrapper::before {
padding: 1rem 0;
font-size: 0.9rem;
text-wrap: wrap;
transform: translateX(-30%);
bottom: -40px;
left: 35%;
}
}

/* Section Challenges & Solutions */
.about-us-body .section-challenges {
padding: 7rem 3rem;
gap: 5rem;
background: linear-gradient(to right, rgba(222, 89, 131, 0.9), rgba(222, 89, 131, 0.9)), url('/public/images/bg-img/hero-banner.jpg');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}

.about-us-body .section-challenges .image-section-wrapper {
width: 600px;
max-width: 100%;
border-radius: 1rem;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
overflow: hidden;
aspect-ratio: 16/16;
}

.about-us-body .section-challenges .image-section-wrapper .section-image {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
}

.about-us-body .section-challenges .section-text .section-title {
color: var(--color-white);
font-weight: 700;
font-size: 2.5rem;
text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
white-space: normal;
overflow-wrap: break-word;
word-break: break-word;
}

.about-us-body .section-challenges .section-text .section-list {
margin-top: 1.5rem;
padding: 0;
list-style: none;
}

.about-us-body .section-challenges .section-text .section-list > li {
margin-top: 1rem;
display: flex;
flex-direction: column;
}

.about-us-body .section-challenges .section-text .section-list > li .question {
font-weight: 800;
font-size: 1.2rem;
color: var(--color-dark-2);
text-shadow: 0px 0px 3px var(--color-white);
text-transform: capitalize;
}

.about-us-body .section-challenges .section-text .section-list > li .respond {
color: var(--color-white);
font-weight: 400;
line-height: 1.6;
margin-top: 0.3rem;
}

@media (max-width: 1100px) {
.about-us-body .section-challenges {
flex-direction: column-reverse;
align-items: flex-start !important;
gap: 1.3rem;
padding: 5rem 1.5rem;
}

.about-us-body .section-challenges .image-section-wrapper {
width: 100%;
aspect-ratio: 16/8;
}

.about-us-body .section-challenges .section-text {
flex-direction: row !important;
gap: 1rem;
}
}

/* ========================================
   SPEAKER REGISTRATION PAGE
   ======================================== */

.speaker-registration-section {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.3137254902), rgba(0, 0, 0, 0.3137254902));
  padding: 4rem 0;
  width: 100%;
  backdrop-filter: blur(10px);
  height: max-content;
}

@media (max-width: 767px) {
  .speaker-registration-section {
    padding: 2rem 0;
  }
}

.speaker-registration-section .section-body {
  gap: 2rem;
  padding: 0 2rem;
  margin: 0 auto;
}

@media (max-width: 550px) {
  .speaker-registration-section .section-body {
    padding: 0 1rem;
    gap: 1rem;
  }
}

.speaker-registration-section .section-body .register-content {
  gap: 2rem;
  padding: 3rem 0;
}

@media (max-width: 767px) {
  .speaker-registration-section .section-body .register-content .register-text {
    text-align: center;
  }
}

.speaker-registration-section .section-body .register-content .register-text .register-title {
  text-transform: capitalize;
  color: var(--color-brand);
  font-size: 3.2rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  font-weight: 700;
}

@media (max-width: 767px) {
  .speaker-registration-section .section-body .register-content .register-text .register-title {
    font-size: 2.5rem;
  }
}

.speaker-registration-section .section-body .register-content .register-text .register-description {
  color: var(--color-white);
  font-size: 1.3rem;
  line-height: 1.6;
  margin-top: 1rem;
}

.speaker-registration-section .section-body .register-content .register-text .register-description::first-letter {
  text-transform: capitalize;
}

.speaker-registration-section .section-body .register-content .speaker-faq {
  width: 90%;
  height: max-content;
  margin-top: 2rem;
  background: linear-gradient(to right, var(--color-brand), var(--color-primary));
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(218, 155, 175, 0.22);
}

@media (max-width: 767px) {
  .speaker-registration-section .section-body .register-content .speaker-faq {
    width: 100%;
    margin-top: 1rem;
  }
}

.speaker-registration-section .section-body .register-content .speaker-faq h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-white);
  border-radius: 1rem;
  padding: 0.5rem;
  width: fit-content;
  background-color: rgba(0, 0, 0, 0.31);
}

.speaker-registration-section .section-body .register-content .speaker-faq details {
  border-bottom: 0.5px solid #555555;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
  cursor: pointer;
}

.speaker-registration-section .section-body .register-content .speaker-faq summary {
  font-weight: bold;
  cursor: pointer;
  font-size: 1.1rem;
  outline: none;
  color: var(--color-white);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  list-style: none;
}

.speaker-registration-section .section-body .register-content .speaker-faq summary::-webkit-details-marker {
  display: none;
}

.speaker-registration-section .section-body .register-content .speaker-faq summary::before {
  content: "";
  margin-right: 0.5rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.speaker-registration-section .section-body .register-content .speaker-faq details[open] summary::before {
  transform: rotate(90deg);
}

.speaker-registration-section .section-body .register-content .speaker-faq details p {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: var(--color-white);
  padding-left: 1.5rem;
  line-height: 1.6;
}

.speaker-registration-section .section-body .register-form {
  box-shadow: 0 8px 20px rgba(218, 155, 175, 0.22);
  height: max-content;
  padding: 2rem;
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.145);
  backdrop-filter: blur(10px);
}

@media (max-width: 550px) {
  .speaker-registration-section .section-body .register-form {
    padding: 1.5rem;
  }
}

.speaker-registration-section .section-body .register-form .form-label {
  color: var(--color-white);
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.speaker-registration-section .section-body .register-form .input-field {
  transition: 0.3s ease;
  border: 1px solid var(--color-brand);
  background-color: rgba(255, 255, 255, 0.9);
}

.speaker-registration-section .section-body .register-form .input-field:hover {
  box-shadow: 0px 0px 5px 1px var(--color-brand);
  transform: translateY(-2px);
}

.speaker-registration-section .section-body .register-form .input-field:focus {
  box-shadow: 0px 0px 5px 1px var(--color-brand);
  border-color: var(--color-brand);
  outline: none;
}

.speaker-registration-section .section-body .register-form .submit-btn {
  color: var(--color-white);
  background-color: var(--color-brand);
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-transform: capitalize;
  width: 100%;
}

.speaker-registration-section .section-body .register-form .submit-btn:hover {
  background-color: #e47d9d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(222, 89, 131, 0.4);
}

.speaker-registration-section .section-body .register-form .form-check {
  margin-top: 1rem;
}

.speaker-registration-section .section-body .register-form .form-check .form-check-input {
  border: 1px solid var(--color-brand);
  cursor: pointer;
}

.speaker-registration-section .section-body .register-form .form-check .form-check-input:checked {
  background-color: var(--color-brand);
  border-color: var(--color-brand);
}

.speaker-registration-section .section-body .register-form .form-check .form-check-label {
  color: var(--color-white);
  cursor: pointer;
  margin-left: 0.5rem;
}

.speaker-registration-section .section-body .register-form .form-check .form-check-label::first-letter {
  text-transform: capitalize;
}

.speaker-registration-section .section-body .register-form .form-check .invalid-feedback {
  color: #ff6b6b;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Alert Styles for Registration Form */
.speaker-registration-section .alert {
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
}

.speaker-registration-section .alert-danger {
  border-left: 4px solid #dc3545;
}

/* Speaker Registration - Text Colors for Dark Background */
.speaker-registration-section .text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}

.speaker-registration-section .form-text {
  color: rgba(255, 255, 255, 0.6) !important;
}

.speaker-registration-section .text-center {
  color: var(--color-white);
}

.speaker-registration-section a {
  color: var(--color-brand-2);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.speaker-registration-section a:hover {
  color: var(--color-brand-3);
}

.speaker-registration-section .speaker-info h4 {
  color: var(--color-brand);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.speaker-registration-section .registration-steps li {
  color: var(--color-white);
  line-height: 1.6;
}

.speaker-registration-section .registration-steps li strong {
  color: var(--color-brand-2);
}

.speaker-registration-section .email-form-header h4 {
  color: var(--color-brand);
}

.speaker-registration-section .email-form-header p {
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .speaker-registration-section .section-body {
    flex-direction: column;
  }
  
  .speaker-registration-section .section-body .register-content,
  .speaker-registration-section .section-body .register-form {
    width: 100% !important;
    max-width: 600px;
    margin: 0 auto;
  }
}

/* ReCAPTCHA styling for speaker registration */
.speaker-registration-section .section-body .register-form .g-recaptcha {
  margin: 1rem 0;
  display: flex;
  justify-content: center;
  transform: scale(0.95);
  transform-origin: 0 0;
}

@media (max-width: 550px) {
  .speaker-registration-section .section-body .register-form .g-recaptcha {
    transform: scale(0.85);
  }
}

/* ========================================
   SIDEBAR UNIFIED CARD SECTIONS
   ======================================== */

.sidebar-section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--color-brand-rgb), 0.3), transparent);
  margin: 1.25rem 0;
}

.sidebar-section-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-brand);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.sidebar-section-title i {
  color: var(--color-brand);
  opacity: 0.8;
}

.sidebar-card--primary .sidebar-card__header h5 {
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* ========================================
   DOCUMENTATION PAGES STYLING
   ======================================== */

.tech-doc-body {
  background: rgba(14, 14, 23, 0.85);
  padding: 2rem 0;
}

/* Table of Contents Card */
.toc-card {
  background: var(--white);
  border: 2px solid var(--color-brand);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--box-shadow-light);
  transition: all 0.3s ease;
}

.toc-card:hover {
  box-shadow: var(--box-shadow-heavy);
  transform: translateY(-2px);
}

.toc-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-brand);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-list__items {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-list__link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: #333333;
  text-decoration: none;
  border-left: 3px solid transparent;
  border-radius: 0 8px 8px 0;
  transition: all 0.3s ease;
  font-weight: 600;
}

.toc-list__link:hover {
  background-color: rgba(var(--color-brand-rgb), 0.08);
  border-left-color: var(--color-brand);
  padding-left: 1.25rem;
  color: var(--color-brand);
}

/* Documentation Cards */
.doc-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  box-shadow: var(--box-shadow-light);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(var(--color-brand-rgb), 0.1);
}

.doc-card:hover {
  box-shadow: var(--box-shadow-heavy);
  transform: translateY(-2px);
}

.doc-card__header {
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(var(--color-brand-rgb), 0.05), rgba(var(--color-secondary-rgb), 0.02));
  border-bottom: 2px solid rgba(var(--color-brand-rgb), 0.1);
}

.doc-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  display: flex;
  align-items: center;
}

.doc-card__meta {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0.5rem 0 0 0;
  font-style: italic;
}

.doc-card__body {
  padding: 1.5rem;
}

.doc-card__description {
  margin: 0;
  color: #2d3748;
  line-height: 1.6;
}

/* Tables */
.doc-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.doc-table thead {
  background-color: rgba(var(--color-brand-rgb), 0.08);
}

.doc-table thead th {
  padding: 1rem 0.75rem;
  text-align: left;
  font-weight: 700;
  color: #ffffff;
  background-color: var(--color-brand);
  border-bottom: 2px solid var(--color-brand);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.doc-table tbody tr {
  border-bottom: 1px solid rgba(var(--color-brand-rgb), 0.1);
  transition: background-color 0.2s ease;
}

.doc-table tbody tr:hover {
  background-color: rgba(var(--color-brand-rgb), 0.04);
}

.doc-table tbody td {
  padding: 0.9rem 0.75rem;
  color: var(--color-text);
  font-size: 0.95rem;
}

.code-field {
  background-color: rgba(var(--color-brand-rgb), 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
  font-size: 0.85rem;
  color: var(--color-brand);
}

.badge-type {
  background-color: rgba(var(--color-secondary-rgb), 0.15);
  color: var(--color-secondary);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Technology Grid */
.tech-grid {
  margin-top: 2rem;
}

.tech-category {
  margin-bottom: 3rem;
}

.tech-category__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-brand);
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(var(--color-brand-rgb), 0.2);
  margin: 0;
}

.tech-grid__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.tech-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(var(--color-brand-rgb), 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--box-shadow-light);
}

.tech-card:hover {
  box-shadow: var(--box-shadow-heavy);
  transform: translateY(-4px);
  border-color: var(--color-brand);
}

.tech-card__icon {
  font-size: 3rem;
  color: var(--color-brand);
  margin-bottom: 1rem;
}

.tech-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 0.5rem 0;
}

.tech-card__description {
  font-size: 0.9rem;
  color: #2d3748;
  margin: 0.5rem 0;
  line-height: 1.5;
}

.tech-card__version {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0.5rem 0;
}

.tech-card__version .label {
  font-weight: 600;
  color: var(--color-text);
}

.tech-card__description {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.5;
  margin: 0.75rem 0 0 0;
}

/* Authentication Sections */
.auth-section {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: rgba(var(--color-brand-rgb), 0.04);
  border-left: 4px solid var(--color-brand);
  border-radius: 8px;
}

.auth-section__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-brand);
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
}

.auth-flow {
  list-style: decimal;
  margin: 0;
  padding-left: 1.5rem;
}

.auth-flow__item {
  margin-bottom: 0.75rem;
  color: var(--color-text);
  line-height: 1.6;
}

/* Security Features List */
.security-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.security-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  color: var(--color-text);
  padding: 0.5rem 0;
}

/* reCAPTCHA Section */
.recap-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.recap-info-box {
  background: rgba(var(--color-brand-rgb), 0.04);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--color-brand);
}

.recap-info-box__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-brand);
  margin: 0 0 1rem 0;
}

.recap-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recap-info-list dt {
  font-weight: 600;
  color: var(--color-brand);
  margin-top: 0.75rem;
}

.recap-info-list dd {
  margin: 0.25rem 0 0 0;
  color: var(--color-text);
}

.recap-usage-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recap-usage-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.badge-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--color-brand);
  border-radius: 50%;
  margin-right: 0.75rem;
}

.recap-section {
  margin-bottom: 2rem;
}

.recap-section__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-brand);
  margin: 0 0 1.25rem 0;
  display: flex;
  align-items: center;
}

.recap-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.recap-accordion__item {
  border: 1px solid rgba(var(--color-brand-rgb), 0.2);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.recap-accordion__item[open] {
  background-color: rgba(var(--color-brand-rgb), 0.04);
  border-color: var(--color-brand);
  box-shadow: var(--box-shadow-light);
}

.recap-accordion__summary {
  padding: 1rem 1.25rem;
  background-color: rgba(var(--color-brand-rgb), 0.08);
  color: var(--color-text);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s ease;
  user-select: none;
}

.recap-accordion__summary:hover {
  background-color: rgba(var(--color-brand-rgb), 0.12);
  color: var(--color-brand);
}

.recap-accordion__content {
  padding: 1.25rem;
  background: var(--white);
}

.code-highlight {
  background-color: rgba(var(--color-brand-rgb), 0.04);
  border: 1px solid rgba(var(--color-brand-rgb), 0.1);
  border-radius: 6px;
  padding: 1rem;
  margin: 0;
  overflow-x: auto;
  font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--color-text);
}

.recap-config-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.config-item {
  background-color: rgba(var(--color-brand-rgb), 0.05);
  padding: 1rem;
  border-radius: 8px;
  border-left: 3px solid var(--color-secondary);
}

.config-item__key {
  font-weight: 700;
  color: var(--color-brand);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.config-item__value {
  margin: 0;
  color: var(--color-text);
  font-size: 0.9rem;
  line-height: 1.5;
  word-break: break-word;
}

/* Timeline Sections */
.process-timeline {
  position: relative;
  padding-top: 1rem;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 4rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--color-brand), var(--color-secondary));
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(var(--color-brand-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 14px;
  top: 40px;
  width: 2px;
  height: calc(100% + 1rem);
  background: linear-gradient(180deg, var(--color-brand), transparent);
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-item--compact {
  margin-bottom: 1.5rem;
  padding-left: 3rem;
}

.timeline-item--compact::before {
  width: 24px;
  height: 24px;
  font-size: 0.75rem;
}

.timeline-item__marker {
  position: absolute;
  left: 5px;
  top: 5px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border: 2px solid var(--color-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-brand);
}

.timeline-item__content {
  margin-top: 0;
}

.timeline-item__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-brand);
  margin: 0 0 0.5rem 0;
}

.timeline-item__description {
  margin: 0 0 1rem 0;
  color: #2d3748;
  line-height: 1.6;
  font-size: 0.95rem;
}

.timeline-item__detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: #2d3748;
}

.timeline-item__badge {
  display: inline-block;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}

/* User Roles Grid */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.role-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--box-shadow-light);
  border: 1px solid rgba(var(--color-brand-rgb), 0.1);
  transition: all 0.3s ease;
}

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

.role-card__header {
  background: linear-gradient(135deg, var(--color-brand), rgba(var(--color-brand-rgb), 0.8));
  color: var(--white);
  padding: 1.25rem 1.5rem;
}

.role-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.role-card__body {
  padding: 1.5rem;
}

.role-permissions {
  list-style: none;
  padding: 0;
  margin: 0;
}

.role-permission {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  color: #2d3748;
  font-size: 0.95rem;
  line-height: 1.5;
}

.role-permission i {
  color: var(--color-brand);
  margin-right: 0.5rem;
  flex-shrink: 0;
}

/* Viewer Section */
.viewer-section {
  margin-bottom: 2rem;
}

.viewer-section__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-brand);
  margin: 0 0 1.25rem 0;
  display: flex;
  align-items: center;
}

.code-flow {
  background-color: rgba(29, 30, 86, 0.15);
  border: 1px solid rgba(var(--color-brand-rgb), 0.2);
  border-radius: 6px;
  padding: 1rem;
  margin: 0;
  overflow-x: auto;
  font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #ffffff;
}

.code-block {
  background-color: rgba(var(--color-brand-rgb), 0.08);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
  font-size: 0.85rem;
  color: var(--color-brand);
  display: inline-block;
  word-break: break-all;
}

/* Alert Custom */
.alert-custom {
  padding: 1.25rem;
  border-radius: 8px;
  border-left: 4px solid var(--color-brand);
  background-color: rgba(255, 255, 255, 0.08);
}

.alert-custom--info {
  border-left-color: var(--color-brand);
  background-color: rgba(255, 255, 255, 0.08);
}

.alert-custom__header {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-brand);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.alert-custom__content {
  color: #ffffff;
}

.notes-list {
  list-style: disc;
  margin: 0 0 0 1.5rem;
  padding: 0;
  color: #ffffff;
}

.notes-list li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
  color: #ffffff;
}

/* Support Card */
.support-card {
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid var(--color-brand);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--box-shadow-light);
  transition: all 0.3s ease;
}

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

.support-card__icon {
  font-size: 3.5rem;
  color: var(--color-brand);
  margin-bottom: 1.5rem;
}

.support-card__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-brand);
  margin: 0 0 1rem 0;
}

.support-card__description {
  font-size: 1.05rem;
  color: #2d3748;
  margin: 0 0 2rem 0;
  line-height: 1.6;
}

/* Section Intro */
.section-intro {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--color-brand);
}

.section-intro__text {
  margin: 0;
  color: #ffffff;
  line-height: 1.7;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .tech-grid__items {
    grid-template-columns: 1fr;
  }

  .recap-info-grid {
    grid-template-columns: 1fr;
  }

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

  .recap-config-grid {
    grid-template-columns: 1fr;
  }

  .toc-list__items {
    gap: 0.5rem;
  }

  .toc-list__link {
    padding: 0.6rem 0.8rem;
  }

  .timeline-item {
    padding-left: 2.5rem;
  }

  .timeline-item::before {
    width: 24px;
    height: 24px;
  }

  .timeline-item--compact {
    padding-left: 2.5rem;
  }

  .support-card {
    padding: 2rem 1.5rem;
  }

  .doc-card__header {
    padding: 1rem;
  }

  .doc-card__body {
    padding: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem !important;
  }
}

/* ========================================
   USER MANUAL PAGE STYLING
   ======================================== */

.user-manual-body {
  background: rgba(14, 14, 23, 0.85);
  padding: 2rem 0;
}

/* Navigation Tabs */
.manual-nav-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  list-style: none;
  padding: 1.5rem;
  margin: 0 0 2rem 0;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  box-shadow: var(--box-shadow-light);
}

.manual-nav-tab__btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border: 2px solid rgba(var(--color-brand-rgb), 0.2);
  background-color: rgba(255, 255, 255, 0.92);
  color: var(--color-text);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.manual-nav-tab__btn:hover {
  border-color: var(--color-brand);
  background-color: rgba(var(--color-brand-rgb), 0.05);
  color: var(--color-brand);
}

.manual-nav-tab__btn.active {
  background: linear-gradient(135deg, var(--color-brand), rgba(var(--color-brand-rgb), 0.8));
  color: var(--white);
  border-color: var(--color-brand);
}

/* Grid Components */
.steps-group,
.features-grid,
.admin-tasks {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.steps-group {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.features-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.admin-tasks {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.step-card,
.feature-card {
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid rgba(var(--color-brand-rgb), 0.1);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--box-shadow-light);
}

.step-card:hover,
.feature-card:hover {
  box-shadow: var(--box-shadow-heavy);
  transform: translateY(-4px);
}

.step-card__icon,
.feature-card__icon {
  font-size: 2.5rem;
  margin: 1rem 0;
}

.step-card__icon {
  color: var(--color-brand);
}

.feature-card__icon {
  color: var(--color-secondary);
}

.step-card__title,
.feature-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-brand);
  margin: 0 0 0.5rem 0;
}

.step-card__description,
.feature-card__text {
  color: #718096;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

/* Security Cards */
.security-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.security-card {
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid rgba(var(--color-brand-rgb), 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--box-shadow-light);
}

.security-card:hover {
  box-shadow: var(--box-shadow-heavy);
  transform: translateY(-4px);
  border-color: var(--color-brand);
}

.security-card__icon {
  font-size: 3rem;
  color: var(--color-brand);
  margin-bottom: 1rem;
}

.security-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0.75rem 0 0.5rem 0;
}

.security-card__text {
  margin: 0;
  color: #718096;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 2rem 0;
}

.faq-item {
  border: 1px solid rgba(var(--color-brand-rgb), 0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item[open] {
  background-color: rgba(255, 255, 255, 0.92);
  border-color: var(--color-brand);
  box-shadow: var(--box-shadow-light);
}

.faq-item__summary {
  padding: 1rem 1.25rem;
  background-color: rgba(var(--color-brand-rgb), 0.08);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s ease;
  user-select: none;
  list-style: none;
}

.faq-item__summary:hover {
  background-color: rgba(var(--color-brand-rgb), 0.12);
  color: #ffffff;
}

.faq-item[open] .faq-item__summary i {
  transform: rotate(180deg);
}

.faq-item__answer {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  color: #2d3748;
  line-height: 1.6;
  font-size: 0.95rem;
}

.faq-item__q {
  color: #ffffff;
}

.tech-doc-body .badge {
	color: var(--color-dark-1);
}

/* Responsive Design for User Manual */
@media (max-width: 768px) {
  .manual-nav-tabs {
    flex-direction: column;
  }

  .manual-nav-tab__btn {
    width: 100%;
    justify-content: flex-start;
  }

  .steps-group,
  .features-grid,
  .admin-tasks,
  .security-cards {
    grid-template-columns: 1fr;
  }
}

/* Admin Task Component */
.admin-task {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(var(--color-brand-rgb), 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: all 0.3s ease;
  box-shadow: var(--box-shadow-light);
}

.admin-task:hover {
  box-shadow: var(--box-shadow-heavy);
  border-color: var(--color-brand);
  transform: translateY(-2px);
}

.admin-task__icon {
  font-size: 2rem;
  color: var(--color-brand);
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--color-brand-rgb), 0.08);
  border-radius: 8px;
}

.admin-task__content {
  flex: 1;
}

.admin-task__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 0.5rem 0;
}

.admin-task__text {
  margin: 0;
  color: #718096;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Guideline Item Component */
.speaker-guidelines {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(var(--color-brand-rgb), 0.1);
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0;
}

.speaker-guidelines__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-brand);
  margin: 0 0 1.5rem 0;
  display: flex;
  align-items: center;
}

.guidelines-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.guideline-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.guideline-item__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, var(--color-brand), rgba(var(--color-brand-rgb), 0.8));
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1rem;
}

.guideline-item__content h5 {
  margin: 0 0 0.5rem 0;
  color: var(--color-text);
  font-size: 1.05rem;
  font-weight: 600;
}

.guideline-item__content p {
  margin: 0;
  color: #718096;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Manual Content Styles */
.manual-content {
  margin-top: 1.5rem;
}

.manual-content .lead {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.section-title {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
}
