/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	/* ==============================================
       🎨 COLOR CUSTOMIZATION GUIDE
       ==============================================
       Change these values to modify your website colors:
       
       📱 BACKGROUNDS: Dark theme base colors
       🔤 TEXT: All text color variations  
       ✨ ACCENTS: Main brand colors & gradients
       ============================================== */

	/* Dark Theme Colors - Change these for different background shades */
	--bg-primary: #0a0a0a;
	/* Main background (darkest) */
	--bg-secondary: #111111;
	/* Section backgrounds */
	--bg-tertiary: #1a1a1a;
	/* Cards and panels */
	--bg-card: rgba(26, 26, 26, 0.8);
	/* Transparent cards */
	--bg-glass: rgba(255, 255, 255, 0.05);
	/* Glass effect */

	/* Text Colors - Modify for different text contrasts */
	--text-primary: #ffffff;
	/* Main headings and important text */
	--text-secondary: #b3b3b3;
	/* Body text and descriptions */
	--text-muted: #666666;
	/* Subtle text and labels */

	/* 🌈 MAIN BRAND COLORS - Change these to rebrand your site */
	--accent-primary: #70dae4;
	/* Primary brand color (teal) */
	--accent-secondary: #087c91;
	/* Secondary brand color (darker teal) */
	--accent-gradient: linear-gradient(135deg,
			#1f7b7a 0%,
			#1594a0 100%);
	/* Main gradient */

	/* Interactive Elements */
	--hover-overlay: rgba(112, 218, 228, 0.15);
	--border-color: rgba(112, 218, 228, 0.2);
	--shadow-primary: 0 4px 32px rgba(112, 218, 228, 0.3);
	--shadow-secondary: 0 8px 64px rgba(8, 124, 145, 0.2);
	--shadow-glow: 0 0 40px rgba(112, 218, 228, 0.4);

	/* Typography */
	--font-primary: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
	--font-display: "Space Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;

	/* Spacing */
	--container-max-width: 1200px;
	--section-padding: 6rem 0;
	--border-radius: 12px;
	--border-radius-lg: 20px;

	/* Transitions */
	--transition-fast: 0.2s ease;
	--transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-primary);
	background-color: var(--bg-primary);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
}

/* Background Animation */
.background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: radial-gradient(ellipse at center,
			rgba(112, 218, 228, 0.05) 0%,
			transparent 70%);
}

.particles {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.particle {
	position: absolute;
	width: 2px;
	height: 2px;
	background: var(--accent-primary);
	border-radius: 50%;
	opacity: 0.6;
	animation: float 6s ease-in-out infinite;
}

.grid-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px,
			transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
	background-size: 50px 50px;
	opacity: 0.3;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}

	33% {
		transform: translateY(-20px) rotate(120deg);
	}

	66% {
		transform: translateY(10px) rotate(240deg);
	}
}

/* Container */
.container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 2rem;
}

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(10, 10, 10, 0.9);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border-color);
	transition: var(--transition-smooth);
}

.nav-container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-logo .logo-text {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
}

.logo-accent {
	color: var(--accent-primary);
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
	align-items: center;
}

.nav-link {
	color: var(--text-secondary);
	text-decoration: none;
	font-weight: 500;
	transition: var(--transition-fast);
	position: relative;
}

.nav-link:hover {
	color: var(--text-primary);
}

.nav-link.cta-button {
	background: var(--accent-gradient);
	padding: 0.75rem 1.5rem;
	border-radius: var(--border-radius);
	color: var(--text-primary);
	font-weight: 600;
}

.nav-link.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-primary);
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 4px;
}

.hamburger span {
	width: 25px;
	height: 2px;
	background: var(--text-primary);
	transition: var(--transition-fast);
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 8rem 0 4rem;
	position: relative;
}

.hero-container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	background: var(--bg-glass);
	border: 1px solid var(--border-color);
	padding: 0.5rem 1rem;
	border-radius: 50px;
	margin-bottom: 2rem;
	backdrop-filter: blur(10px);
}

.badge-text {
	font-size: 0.9rem;
	font-weight: 500;
}

.hero-title {
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.hero-main {
	font-size: clamp(2.8rem, 5.5vw, 4.5rem);
	background: var(--accent-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.hero-sub {
	font-size: clamp(1.8rem, 3.5vw, 2.8rem);
	color: var(--text-primary);
	font-weight: 600;
	opacity: 0.9;
}

.gradient-text {
	background: var(--accent-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: inline-block;
}

.typing-text {
	position: relative;
}

.typing-text::after {
	content: "|";
	color: var(--accent-primary);
	animation: blink 1s infinite;
	margin-left: 4px;
}

@keyframes blink {

	0%,
	50% {
		opacity: 1;
	}

	51%,
	100% {
		opacity: 0;
	}
}

.hero-description {
	font-size: 1.25rem;
	color: var(--text-secondary);
	margin: 0 auto 2rem auto;
	max-width: 700px;
	line-height: 1.6;
	text-align: center;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
	justify-content: center;
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border-radius: var(--border-radius);
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition-smooth);
	border: none;
	cursor: pointer;
	font-size: 1rem;
}

.btn-primary {
	background: var(--accent-gradient);
	color: var(--text-primary);
}

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

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

.btn-secondary:hover {
	background: var(--hover-overlay);
	border-color: var(--accent-primary);
}

.btn-full {
	width: 100%;
	justify-content: center;
}

.hero-stats {
	display: flex;
	gap: 2rem;
	justify-content: center;
}

.stat {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.stat-number {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 700;
	color: var(--accent-primary);
}

.stat-label {
	font-size: 1.05rem;
	color: var(--text-primary);
	text-align: center;
	font-weight: 500;
	opacity: 0.9;
	/* Improved visibility and contrast */
}

/* Smooth Animations */
[data-aos] {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
		transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-animate {
	opacity: 1;
	transform: translateY(0);
}

.hero-badge {
	animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-main {
	animation: fadeInUp 1s ease-out 0.4s both, shimmer 3s ease-in-out infinite;
}

.hero-sub {
	animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-description {
	animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-buttons {
	animation: fadeInUp 1s ease-out 1s both;
}

.hero-stats {
	animation: fadeInUp 1s ease-out 1.2s both;
}

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

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

@keyframes shimmer {

	0%,
	100% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}
}

.hero-main {
	background: linear-gradient(45deg,
			var(--accent-primary),
			var(--accent-secondary),
			var(--accent-primary));
	background-size: 200% 200%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Sections */
.services,
.about,
.contact,
.impact {
	padding: 5rem 0;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	/* Ensure centered alignment */
}

.section-title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	margin-bottom: 1rem;
}

.section-description {
	font-size: 1.25rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

/* Services */
.services {
	background: var(--bg-secondary);
	padding: 5rem 0;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
}

.services-grid.compact {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.2rem;
}

.service-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius-lg);
	padding: 1.5rem;
	backdrop-filter: blur(10px);
	transition: var(--transition-smooth);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.service-card.compact {
	padding: 1.2rem;
	text-align: center;
	min-height: 220px;
}

.service-card.featured {
	border: 2px solid var(--accent-primary);
	position: relative;
	overflow: hidden;
}

.service-card.featured::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--accent-gradient);
}

.service-card.featured .service-title {
	color: var(--accent-primary);
}

/* Highlight Cards (Enhanced Service Cards) */
.highlight-card {
	position: relative;
	overflow: hidden;
}

.highlight-card::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg,
			rgba(112, 218, 228, 0.03) 0%,
			rgba(8, 124, 145, 0.02) 100%);
	pointer-events: none;
}

.imagine-text {
	background: var(--bg-glass);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	padding: 1rem;
	margin-bottom: 1rem;
	backdrop-filter: blur(10px);
}

.imagine-text p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.5;
	color: var(--text-secondary);
}

.imagine-text strong {
	color: var(--accent-primary);
	font-weight: 600;
}

.service-impact {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem;
	margin: 1rem 0;
	background: var(--bg-glass);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	backdrop-filter: blur(10px);
}

.service-impact .impact-number {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 700;
	background: var(--accent-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.service-impact .impact-label {
	font-size: 0.85rem;
	color: var(--text-secondary);
	text-align: center;
	font-weight: 500;
}

/* Services CTA */
.services-cta {
	text-align: center;
	background: var(--bg-card);
	border: 2px solid var(--border-color);
	border-radius: var(--border-radius-lg);
	padding: 3rem 2rem;
	margin-top: 3rem;
	backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
}

.services-cta::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--accent-gradient);
}

.services-cta h3 {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.services-cta p {
	font-size: 1.1rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.service-card:hover {
	transform: translateY(-10px);
	border-color: var(--accent-primary);
	box-shadow: var(--shadow-primary);
}

.service-icon {
	width: 60px;
	height: 60px;
	background: var(--accent-gradient);
	border-radius: var(--border-radius);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	color: white;
	flex-shrink: 0;
	margin: 10px auto;
}

.service-title {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	flex-shrink: 0;
}

.service-description {
	color: var(--text-secondary);
	margin-bottom: 1rem;
	font-size: 0.95rem;
	line-height: 1.5;
	flex-grow: 1;
}

.service-features {
	list-style: none;
	margin-bottom: auto;
}

.service-features li {
	padding: 0.35rem 0;
	color: var(--text-secondary);
	position: relative;
	padding-left: 1.5rem;
	font-size: 0.9rem;
}

.service-features li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--accent-primary);
	font-weight: bold;
}

/* Impact Section */
.impact {
	background: var(--bg-primary);
	position: relative;
}

.impact::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 20%,
			rgba(0, 212, 255, 0.03) 0%,
			transparent 50%),
		radial-gradient(circle at 80% 80%,
			rgba(255, 0, 110, 0.03) 0%,
			transparent 50%);
	pointer-events: none;
}

.impact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-bottom: 4rem;
}

.impact-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius-lg);
	padding: 2rem;
	backdrop-filter: blur(10px);
	transition: var(--transition-smooth);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.impact-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 2px;
	background: var(--accent-gradient);
	transition: left 0.5s ease;
}

.impact-card:hover::before {
	left: 0;
}

.impact-card:hover {
	transform: translateY(-10px);
	border-color: var(--accent-primary);
	box-shadow: var(--shadow-primary);
}

.impact-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
	filter: grayscale(0.2);
}

.impact-card h3 {
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.impact-card p {
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.impact-card strong {
	color: var(--accent-primary);
	font-weight: 600;
}

.impact-stats {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	padding-top: 1rem;
	border-top: 1px solid var(--border-color);
}

.impact-number {
	font-family: var(--font-display);
	font-size: 2.5rem;
	font-weight: 700;
	background: var(--accent-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.impact-label {
	font-size: 0.9rem;
	color: var(--text-secondary);
	text-align: center;
}

.impact-cta {
	text-align: center;
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius-lg);
	padding: 3rem 2rem;
	backdrop-filter: blur(10px);
}

.impact-cta h3 {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.impact-cta p {
	font-size: 1.1rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.btn-large {
	padding: 1.25rem 2.5rem;
	font-size: 1.1rem;
}

/* Features Showcase */
.features-showcase {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	/* Agency-focused features in 2x2 grid */
}

.feature-highlight {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	padding: 1.5rem;
	text-align: center;
	backdrop-filter: blur(10px);
	transition: var(--transition-smooth);
}

.feature-highlight:hover {
	border-color: var(--accent-primary);
	transform: translateY(-5px);
}

.feature-highlight .feature-icon {
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.feature-highlight h4 {
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--accent-primary);
	margin-bottom: 0.25rem;
}

.feature-highlight p {
	font-size: 0.85rem;
	color: var(--text-secondary);
	margin: 0;
	line-height: 1.5;
	/* Improved readability for longer descriptions */
}

/* Demo Buttons */
.demo-btn {
	margin-top: 1rem;
	padding: 0.75rem 1.25rem;
	background: var(--accent-gradient);
	border: none;
	border-radius: var(--border-radius);
	color: white;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition-smooth);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	position: relative;
	overflow: hidden;
	font-size: 0.9rem;
	flex-shrink: 0;
}

.demo-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg,
			transparent,
			rgba(255, 255, 255, 0.2),
			transparent);
	transition: left 0.5s;
}

.demo-btn:hover::before {
	left: 100%;
}

.demo-btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-glow);
	filter: brightness(1.1);
}

.demo-btn:active {
	transform: translateY(0);
}

/* Integration Ecosystem Section */
.integration-ecosystem {
	position: relative;
	background: var(--bg-primary);
	padding: 8rem 0;
	overflow: hidden;
}

/* Background Glow Effects */
.ecosystem-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(120px);
	pointer-events: none;
	z-index: 0;
}

.ecosystem-glow-1 {
	width: 600px;
	height: 600px;
	background: rgba(112, 218, 228, 0.15);
	top: 20%;
	left: 10%;
	animation: pulse-glow 8s ease-in-out infinite;
}

.ecosystem-glow-2 {
	width: 500px;
	height: 500px;
	background: rgba(59, 130, 246, 0.12);
	top: 40%;
	right: 15%;
	animation: pulse-glow 10s ease-in-out infinite reverse;
}

@keyframes pulse-glow {

	0%,
	100% {
		transform: scale(1);
		opacity: 0.3;
	}

	50% {
		transform: scale(1.2);
		opacity: 0.5;
	}
}

/* Grid Layout */
.ecosystem-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 45% 55%;
	gap: 3rem;
	align-items: center;
}

/* Left Column: Content */
.ecosystem-content {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

/* Badge */
.ecosystem-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: rgba(112, 218, 228, 0.1);
	border: 1px solid rgba(112, 218, 228, 0.3);
	border-radius: 50px;
	color: var(--accent-primary);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	width: fit-content;
}

.ecosystem-badge svg {
	width: 16px;
	height: 16px;
}

/* Title */
.ecosystem-title {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--text-primary);
	margin: 0;
}

.gradient-text-cyan {
	background: linear-gradient(45deg,
			var(--accent-primary),
			var(--accent-secondary),
			var(--accent-primary));
	background-size: 200% 200%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: inline-block;
	animation: shimmer 3s ease-in-out infinite;
}

/* Description */
.ecosystem-description {
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--text-secondary);
	max-width: 550px;
}

/* Features List */
.ecosystem-features {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.ecosystem-features li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--text-secondary);
}

.feature-dot {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: rgba(112, 218, 228, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	position: relative;
}

.feature-dot::after {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent-primary);
}

/* CTA Button */
.ecosystem-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2rem;
	background: transparent;
	border: 2px solid rgba(112, 218, 228, 0.5);
	border-radius: 12px;
	color: var(--text-primary);
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	width: fit-content;
}

.ecosystem-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(112, 218, 228, 0.1), transparent);
	transition: left 0.6s ease;
}

.ecosystem-cta:hover::before {
	left: 100%;
}

.ecosystem-cta:hover {
	border-color: var(--accent-primary);
	box-shadow: 0 0 30px rgba(112, 218, 228, 0.3);
	transform: translateY(-2px);
}

.ecosystem-cta svg {
	transition: transform 0.3s ease;
}

.ecosystem-cta:hover svg {
	transform: translateX(4px);
}

/* Right Column: Logo Animation */
.ecosystem-animation {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	overflow: hidden;
	padding: 2rem 0;
	background: transparent;
	/* Gradient mask for seamless fade effect */
	-webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
	mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

/* Logo Marquee Container */
.logo-marquee {
	position: relative;
	overflow: hidden;
	padding: 0.5rem 0;
}

.logo-track {
	display: flex;
	gap: 1rem;
	width: fit-content;
}

/* Logo Cards (Glassmorphism) */
.logo-card {
	flex-shrink: 0;
	width: 140px;
	height: 90px;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.logo-card span {
	font-size: 0.875rem;
	font-weight: 600;
	color: #94a3b8;
	filter: grayscale(1);
	transition: all 0.3s ease;
}

.logo-card:hover {
	border-color: rgba(112, 218, 228, 0.5);
	background: rgba(255, 255, 255, 0.08);
	transform: scale(1.05);
	box-shadow: 0 8px 32px rgba(112, 218, 228, 0.2);
}

.logo-card:hover span {
	filter: grayscale(0);
	color: var(--accent-primary);
}

/* Shimmer Effect on Hover */
.logo-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transition: left 0.6s ease;
}

.logo-card:hover::before {
	left: 100%;
}

/* Marquee Animations - Optimized for smoothness */
@keyframes marquee-left {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@keyframes marquee-right {
	from {
		transform: translateX(-50%);
	}

	to {
		transform: translateX(0);
	}
}

.marquee-left .logo-track {
	animation: marquee-left 25s linear infinite;
	will-change: transform;
}

.marquee-right .logo-track {
	animation: marquee-right 30s linear infinite;
	will-change: transform;
}

.marquee-left-slow .logo-track {
	animation: marquee-left 35s linear infinite;
	will-change: transform;
}

/* Gradient Fade Masks */
.marquee-mask-left,
.marquee-mask-right {
	position: absolute;
	top: 0;
	width: 150px;
	height: 100%;
	pointer-events: none;
	z-index: 2;
}

.marquee-mask-left {
	left: 0;
	background: linear-gradient(to right, var(--bg-primary), transparent);
}

.marquee-mask-right {
	right: 0;
	background: linear-gradient(to left, var(--bg-primary), transparent);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.ecosystem-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

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

	.ecosystem-content {
		text-align: left;
	}

	.ecosystem-animation {
		order: 2;
	}
}

@media (max-width: 768px) {
	.integration-ecosystem {
		padding: 5rem 0;
	}

	.ecosystem-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

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

	.ecosystem-description {
		font-size: 1rem;
	}

	.ecosystem-animation {
		/* Change to vertical fade on mobile */
		-webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
		mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
	}

	.logo-card {
		width: 110px;
		height: 70px;
	}

	.logo-card span {
		font-size: 0.75rem;
	}

	.marquee-mask-left,
	.marquee-mask-right {
		width: 80px;
	}
}

@media (max-width: 480px) {
	.ecosystem-badge {
		font-size: 0.65rem;
		padding: 0.4rem 0.8rem;
	}

	.ecosystem-title {
		font-size: 1.75rem;
	}

	.ecosystem-features {
		gap: 0.75rem;
	}

	.ecosystem-cta {
		width: 100%;
		justify-content: center;
		padding: 0.875rem 1.5rem;
	}

	.logo-card {
		width: 90px;
		height: 60px;
	}
}

/* Automation Showcase */
.automation-showcase {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius-lg);
	padding: 2rem;
	backdrop-filter: blur(10px);
}

.showcase-item {
	padding: 1rem;
	margin-bottom: 1rem;
	border-radius: var(--border-radius);
	background: var(--bg-glass);
	border: 1px solid var(--border-color);
}

.showcase-item.active {
	border-color: var(--accent-primary);
	background: rgba(0, 212, 255, 0.1);
}

.item-header {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}

.item-status {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent-primary);
	animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.5;
	}
}

.item-progress {
	height: 4px;
	background: var(--bg-tertiary);
	border-radius: 2px;
	overflow: hidden;
}

.progress-bar {
	height: 100%;
	background: var(--accent-gradient);
	border-radius: 2px;
	width: 0%;
	animation: progress 3s ease-in-out infinite;
}

.progress-bar.completed {
	width: 100%;
	animation: none;
}

@keyframes progress {
	0% {
		width: 0%;
	}

	50% {
		width: 70%;
	}

	100% {
		width: 100%;
	}
}

/* Contact */
.contact {
	background: var(--bg-secondary);
	padding: 5rem 0;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.contact-description {
	font-size: 1.25rem;
	color: var(--text-secondary);
	margin-bottom: 2rem;
}

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

.feature {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.feature-icon {
	color: var(--accent-primary);
	font-weight: bold;
}

/* Form */
.form {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius-lg);
	padding: 2rem;
	backdrop-filter: blur(10px);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: var(--text-primary);
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 1rem;
	background: var(--bg-tertiary);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	color: var(--text-primary);
	font-family: inherit;
	transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--accent-primary);
	box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

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

/* Footer */
.footer {
	background: var(--bg-tertiary);
	border-top: 1px solid var(--border-color);
	padding: 3rem 0 1rem;
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 3rem;
	margin-bottom: 2rem;
}

.footer-logo p {
	color: var(--text-secondary);
	margin-top: 0.5rem;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 2rem;
}

.link-group h4 {
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.link-group a {
	display: block;
	color: var(--text-secondary);
	text-decoration: none;
	margin-bottom: 0.5rem;
	transition: var(--transition-fast);
}

.link-group a:hover {
	color: var(--accent-primary);
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid var(--border-color);
	color: var(--text-secondary);
}

/* Mobile Navigation */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		top: 80px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 80px);
		background: rgba(10, 10, 10, 0.95);
		backdrop-filter: blur(20px);
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		padding-top: 2rem;
		transition: var(--transition-smooth);
		border-top: 1px solid var(--border-color);
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-menu li {
		margin: 1rem 0;
	}

	.hamburger {
		display: flex;
	}

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

	.hamburger.active span:nth-child(2) {
		opacity: 0;
	}

	.hamburger.active span:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -6px);
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero-container {
		padding: 0 1rem;
	}

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

	.about-content,
	.contact-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

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

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

	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.impact-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.features-showcase {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 1rem;
	}

	.nav-container {
		padding: 1rem;
	}

	.hero {
		padding: 6rem 0 2rem;
	}

	.service-card,
	.form {
		padding: 1.5rem;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

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

/*
=================================================================
🎨 COLOR COMBINATION EXAMPLES - Copy & Paste to Change Theme
=================================================================

🔵 BLUE THEME (Professional):
--accent-primary: #2563eb;
--accent-secondary: #1d4ed8; 
--accent-gradient: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);

🟢 GREEN THEME (Growth/Money):
--accent-primary: #10b981;
--accent-secondary: #059669;
--accent-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);

🟣 PURPLE THEME (Luxury/Premium):
--accent-primary: #8b5cf6;
--accent-secondary: #7c3aed;
--accent-gradient: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);

🔴 RED THEME (Energy/Power):
--accent-primary: #ef4444;
--accent-secondary: #dc2626;
--accent-gradient: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);

🟡 GOLD THEME (Premium/Luxury):
--accent-primary: #f59e0b;
--accent-secondary: #d97706;
--accent-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);

💎 MULTI-COLOR THEME (Creative):
--accent-primary: #8b5cf6;
--accent-secondary: #06b6d4;
--accent-gradient: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 50%, #10b981 100%);

HOW TO CHANGE:
1. Go to the :root section at the top of this file (lines 32-34)
2. Replace the current values with any theme above
3. Save the file and refresh your browser

CURRENT THEME: Teal + Cyan (Professional)
=================================================================
*/

/* Imagine Section */
.imagine-section {
	background: transparent;
	position: relative;
	padding: 8rem 0 5rem 0;
	/* Increased top padding for breathing room */
}

.imagine-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	/* Center grid on wide screens */
}

.imagine-card {
	background: rgba(24, 27, 31, 0.6);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius-lg);
	padding: 2rem;
	backdrop-filter: blur(10px);
	transition: var(--transition-smooth);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.imagine-card:hover {
	transform: translateY(-5px);
	border-color: var(--accent-primary);
	box-shadow: var(--shadow-primary);
}

.imagine-icon {
	color: var(--accent-primary);
	margin-bottom: 1.5rem;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.imagine-title {
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 1rem;
	text-align: center;
}

.imagine-description {
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.imagine-stats {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1.5rem;
	background: rgba(112, 218, 228, 0.1);
	border-radius: var(--border-radius);
	border: 1px solid rgba(112, 218, 228, 0.2);
	min-height: 100px;
	text-align: center;
	margin-top: auto;
}

.imagine-stats .stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	background: var(--accent-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 0.25rem;
}

.imagine-stats .stat-label {
	color: var(--text-secondary);
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 500;
}

/* Industries Section */
.industries {
	background: var(--bg-secondary);
	position: relative;
	padding: 8rem 0 5rem 0;
	/* Increased top padding for breathing room */
}

.industries-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}

.industry-card {
	background: rgba(24, 27, 31, 0.6);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius-lg);
	padding: 2rem;
	backdrop-filter: blur(10px);
	transition: var(--transition-smooth);
	text-align: left;
	display: flex;
	flex-direction: column;
}

.industry-card:hover {
	transform: translateY(-3px);
	border-color: var(--accent-primary);
	box-shadow: var(--shadow-primary);
}

.industry-icon {
	color: var(--accent-primary);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.industry-title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 1rem;
	text-align: left;
}

.industry-description {
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
	list-style: none;
	padding-left: 0;
	text-align: left;
	flex-grow: 1;
}

.industry-description li {
	position: relative;
	padding-left: 1.25rem;
	margin-bottom: 0.65rem;
	display: flex;
	align-items: flex-start;
}

.industry-description li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 6px;
	height: 6px;
	background: var(--accent-primary);
	border-radius: 50%;
	flex-shrink: 0;
}

.industry-impact {
	background: var(--accent-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 700;
	font-size: 0.95rem;
	margin-top: auto;
	padding-top: 0.75rem;
	border-top: 1px solid rgba(112, 218, 228, 0.15);
	text-align: left;
}

.industries-cta {
	text-align: center;
	margin-top: 4rem;
	padding: 3rem 2rem;
	background: rgba(112, 218, 228, 0.05);
	border-radius: var(--border-radius-lg);
	border: 1px solid rgba(112, 218, 228, 0.1);
}

.industries-cta h3 {
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.industries-cta p {
	color: var(--text-secondary);
	font-size: 1.1rem;
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Testimonials Section */
.testimonials {
	background: var(--bg-primary);
	position: relative;
	overflow: hidden;
	width: 100vw;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	padding: 5rem 0;
}

.testimonials-container {
	position: relative;
	height: 600px;
	margin-top: 3rem;
	display: flex;
	flex-direction: column;
	/* gap: 1.5rem; */
	overflow: hidden;
	width: 100vw;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
}

.testimonial-row {
	display: flex;
	gap: 1.5rem;
	width: 100vw;
	position: relative;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	margin-bottom: 3rem;
}

.testimonial-row.top-row {
	animation: slideRight 60s linear infinite;
}

.testimonial-row.bottom-row {
	animation: slideLeft 60s linear infinite;
}

.testimonial-item {
	background: rgba(24, 27, 31, 0.8);
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	padding: 0.8rem;
	backdrop-filter: blur(10px);
	box-shadow: var(--shadow-primary);
	transition: var(--transition-smooth);
	width: 320px;
	min-height: 180px;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex-shrink: 0;
	margin: 20px 10px;
}

.testimonial-item:hover {
	transform: translateY(-2px);
	border-color: var(--accent-primary);
	box-shadow: var(--shadow-glow);
}

.testimonial-avatar {
	display: flex;
	align-items: center;
	margin-bottom: 0.5rem;
}

.avatar-img {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--accent-primary);
	margin-right: 0.6rem;
}

.avatar-letter {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: linear-gradient(135deg,
			var(--accent-primary),
			var(--accent-secondary));
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 0.9rem;
	color: white;
	border: 2px solid var(--accent-primary);
	text-transform: uppercase;
	margin-right: 0.6rem;
}

.testimonial-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.testimonial-text {
	color: var(--text-secondary);
	font-style: italic;
	line-height: 1.4;
	margin-bottom: 0.5rem;
	font-size: 0.85rem;
	word-wrap: break-word;
	hyphens: auto;
	overflow: hidden;
}

.testimonial-author {
	border-top: 1px solid var(--border-color);
	padding-top: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.author-info {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.author-name {
	color: var(--text-primary);
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 0.15rem;
}

.author-company {
	color: var(--accent-primary);
	font-size: 0.75rem;
	font-weight: 500;
}

/* Testimonial Animations */
@keyframes slideRight {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

@keyframes slideLeft {
	0% {
		transform: translateX(-30%);
	}

	100% {
		transform: translateX(0);
	}
}

/* Video Container Styling for TalkingSites Demo */
.video-container {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	/* 16:9 aspect ratio */
	margin: 1.5rem 0;
	border-radius: var(--border-radius);
	overflow: hidden;
	background: var(--bg-primary);
	border: 1px solid var(--border-color);
}

.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	border-radius: var(--border-radius);
}

/* Demo Form Styling (used within existing demo modal) */
.demo-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.demo-form .form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.demo-form label {
	color: var(--text-primary);
	font-weight: 400;
	font-size: 0.9rem;
}

.demo-form input {
	padding: 0.8rem 1rem;
	border: 1px solid var(--border-color);
	border-radius: var(--border-radius);
	background: var(--bg-primary);
	color: var(--text-primary);
	font-size: 0.9rem;
	font-weight: 400;
	transition: var(--transition-smooth);
}

.demo-form input:focus {
	outline: none;
	border-color: var(--accent-primary);
	box-shadow: 0 0 0 3px rgba(64, 224, 208, 0.1);
}

.demo-form input::placeholder {
	color: var(--text-secondary);
}

.demo-form .btn-full {
	width: 100%;
	justify-content: center;
	margin-top: 1rem;
}

/* Mobile Responsive for Demo Form */
@media (max-width: 768px) {
	.demo-form input {
		padding: 0.7rem;
		font-size: 0.95rem;
	}
}

/* Mobile Responsive Section Spacing */
@media (max-width: 768px) {

	.services,
	.imagine-section,
	.industries,
	.testimonials,
	.contact,
	.about,
	.impact {
		padding: 3rem 0;
	}
}

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {

	.imagine-grid,
	.industries-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.imagine-card,
	.industry-card {
		padding: 1.2rem;
	}

	.imagine-title {
		font-size: 1.2rem;
	}

	.industry-title {
		font-size: 1.1rem;
	}

	.industries-cta {
		padding: 2rem 1rem;
	}

	.industries-cta h3 {
		font-size: 1.5rem;
	}

	.testimonials-container {
		height: 490px;
		gap: 1rem;
		width: 100vw;
		margin-left: calc(-50vw + 50%);
		margin-right: calc(-50vw + 50%);
	}

	.testimonial-row {
		gap: 1rem;
		width: 100vw;
		margin-left: calc(-50vw + 50%);
		margin-right: calc(-50vw + 50%);
		margin-bottom: 2rem;
		height: 70vh;
	}

	.testimonial-item {
		padding: 0.7rem;
		width: 280px;
		min-height: 140px;
		height: auto;
	}

	.testimonial-author {
		gap: 0.6rem;
	}

	.author-info {
		flex: 1;
	}

	.avatar-img {
		width: 28px;
		height: 28px;
	}

	.avatar-letter {
		width: 28px;
		height: 28px;
		font-size: 0.8rem;
	}

	.testimonial-text {
		font-size: 0.75rem;
		line-height: 1.3;
		word-wrap: break-word;
		hyphens: auto;
	}

	.author-name {
		font-size: 0.8rem;
	}

	.author-company {
		font-size: 0.7rem;
	}
}

/* Enhanced Close Button Styling for All Popups */
.demo-modal-close,
.voice-demo-modal .demo-modal-close {
	position: relative;
	background: linear-gradient(135deg,
			rgba(255, 255, 255, 0.1) 0%,
			rgba(255, 255, 255, 0.05) 100%);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	font-size: 1.2rem;
	color: var(--text-secondary);
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	font-weight: 300;
	line-height: 1;
	padding: 0;
	margin: 0;
}

.demo-modal-close:hover,
.voice-demo-modal .demo-modal-close:hover {
	background: linear-gradient(135deg,
			rgba(112, 218, 228, 0.2) 0%,
			rgba(8, 124, 145, 0.1) 100%);
	border-color: var(--accent-primary);
	color: var(--accent-primary);
	transform: scale(1.1) rotate(90deg);
	box-shadow: 0 4px 16px rgba(112, 218, 228, 0.3);
}

.demo-modal-close:active,
.voice-demo-modal .demo-modal-close:active {
	transform: scale(0.95) rotate(90deg);
	transition: all 0.1s ease;
}

/* Add a subtle glow effect on hover */
.demo-modal-close::before,
.voice-demo-modal .demo-modal-close::before {
	content: "";
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(135deg, var(--accent-primary), transparent);
	border-radius: 50%;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: -1;
}

.demo-modal-close:hover::before,
.voice-demo-modal .demo-modal-close:hover::before {
	opacity: 0.3;
}

/* Enhanced modal header styling */
.demo-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--border-color);
}

.demo-modal-header h2 {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--text-primary);
	margin: 0;
	background: var(--accent-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Voice demo specific close button enhancements */
.voice-demo-modal .demo-modal-close {
	background: linear-gradient(135deg,
			rgba(0, 212, 255, 0.1) 0%,
			rgba(0, 180, 216, 0.05) 100%);
	border-color: rgba(0, 212, 255, 0.3);
	color: var(--accent-primary);
}

/* SVG icon styling for close buttons */
.demo-modal-close svg,
.voice-demo-modal .demo-modal-close svg {
	width: 16px;
	height: 16px;
	transition: all 0.3s ease;
	fill: currentColor;
}

.demo-modal-close:hover svg,
.voice-demo-modal .demo-modal-close:hover svg {
	transform: scale(1.1);
}

.voice-demo-modal .demo-modal-close:hover {
	background: linear-gradient(135deg,
			rgba(0, 212, 255, 0.3) 0%,
			rgba(0, 180, 216, 0.2) 100%);
	border-color: var(--accent-primary);
	color: white;
	box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}

/* Mobile responsive close button */
@media (max-width: 768px) {

	.demo-modal-close,
	.voice-demo-modal .demo-modal-close {
		width: 36px;
		height: 36px;
		font-size: 1.1rem;
	}

	.demo-modal-header h2 {
		font-size: 1.3rem;
	}
}

@media (max-width: 480px) {

	.demo-modal-close,
	.voice-demo-modal .demo-modal-close {
		width: 32px;
		height: 32px;
		font-size: 1rem;
	}

	.demo-modal-header h2 {
		font-size: 1.2rem;
	}
}

/* Animation for close button appearance */
@keyframes closeButtonFadeIn {
	from {
		opacity: 0;
		transform: scale(0.8) rotate(-90deg);
	}

	to {
		opacity: 1;
		transform: scale(1) rotate(0deg);
	}
}

.demo-modal-close,
.voice-demo-modal .demo-modal-close {
	animation: closeButtonFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus states for accessibility */
.demo-modal-close:focus,
.voice-demo-modal .demo-modal-close:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(112, 218, 228, 0.3);
}

/* Enhanced modal backdrop for better close button visibility */
.demo-modal {
	backdrop-filter: blur(8px);
}

/* Close button positioning improvements */
.demo-modal-content {
	position: relative;
}

.demo-modal-header {
	position: relative;
}

/* Add a subtle animation to the close button on modal open */
.demo-modal.show .demo-modal-close,
.voice-demo-modal.show .demo-modal-close {
	animation: closeButtonFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

/* ============================================
   BOOKING MODAL - GLASSMORPHISM DESIGN
   ============================================ */

/* Modal Container */
.booking-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	display: none;
	align-items: center;
	justify-content: center;
	animation: fadeIn 0.3s ease;
	contain: layout style paint;
}

.booking-modal.active {
	display: flex;
}

/* Glassmorphism Overlay */
.booking-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

/* Glassmorphism Content */
.booking-modal-content {
	position: relative;
	background: rgba(26, 26, 26, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(112, 218, 228, 0.3);
	border-radius: 24px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5),
		0 0 80px rgba(112, 218, 228, 0.2);
	max-width: 600px;
	width: 90%;
	max-height: 90vh;
	overflow: hidden;
	animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}

/* Modal Header */
.booking-modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 2rem 1rem 2rem;
	border-bottom: 1px solid rgba(112, 218, 228, 0.2);
	background: linear-gradient(135deg, rgba(112, 218, 228, 0.1) 0%, transparent 100%);
}

.booking-modal-header h2 {
	font-family: var(--font-display);
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--text-primary);
	margin: 0;
}

.booking-modal-close {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(112, 218, 228, 0.3);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	color: var(--text-primary);
}

.booking-modal-close:hover {
	background: rgba(112, 218, 228, 0.2);
	border-color: var(--accent-primary);
	transform: rotate(90deg);
}

/* Modal Body */
.booking-modal-body {
	padding: 1rem 2rem 1rem 2rem;
	overflow-y: auto;
	max-height: calc(90vh - 100px);
	display: flex;
	flex-direction: column;
}

.booking-step {
	animation: fadeIn 0.3s ease;
	flex: 1;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	padding-top: 0;
}

.booking-step-title {
	font-family: var(--font-display);
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-top: 0;
	margin-bottom: 0.5rem;
	line-height: 1.2;
	text-align: center;
}

/* Calendar Styles */
.calendar-container {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(112, 218, 228, 0.2);
	max-height: 420px;
	border-radius: 12px;
	padding: 0.5rem;
	margin-bottom: 0.5rem;
}

.calendar-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.5rem;
}

.calendar-title {
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-primary);
}

.calendar-nav {
	background: rgba(112, 218, 228, 0.1);
	border: 1px solid rgba(112, 218, 228, 0.3);
	border-radius: 8px;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	color: var(--accent-primary);
}

.calendar-nav:hover {
	background: rgba(112, 218, 228, 0.2);
	border-color: var(--accent-primary);
	transform: scale(1.1);
}

.calendar-nav:active {
	transform: scale(0.95);
}

.calendar-weekdays {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 0.25rem;
	margin-bottom: 0.4rem;
}

.calendar-weekdays div {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--accent-primary);
	padding: 0.2rem 0;
}

.calendar-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 0.9rem;
	padding-left: 20px;
}

.calendar-day {
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	font-size: 0.8rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid transparent;
	color: var(--text-secondary);
	min-height: 30px;
	max-height: 40px;
}

.calendar-day:hover:not(.disabled):not(.selected) {
	background: rgba(112, 218, 228, 0.1);
	border-color: rgba(112, 218, 228, 0.3);
	color: var(--text-primary);
	transform: scale(1.05);
}

.calendar-day.selected {
	background: var(--accent-gradient);
	border-color: var(--accent-primary);
	color: white;
	font-weight: 700;
	box-shadow: 0 4px 15px rgba(112, 218, 228, 0.4);
}

.calendar-day.disabled {
	opacity: 0.3;
	cursor: not-allowed;
	background: rgba(255, 255, 255, 0.01);
}

.calendar-day.today {
	border-color: var(--accent-primary);
	color: var(--accent-primary);
	font-weight: 700;
}

.calendar-day.other-month {
	opacity: 0.3;
}

/* Time Slots */
.selected-date-display {
	text-align: center;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--accent-primary);
	margin-bottom: 1.5rem;
	padding: 1rem;
	background: rgba(112, 218, 228, 0.1);
	border: 1px solid rgba(112, 218, 228, 0.2);
	border-radius: 12px;
}

.time-slots-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.6rem;
	max-height: none;
	overflow-y: visible;
	flex-shrink: 0;
}

.time-slot {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(112, 218, 228, 0.2);
	border-radius: 8px;
	padding: 0.7rem 0.5rem;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	color: var(--text-secondary);
	font-weight: 500;
	font-size: 0.9rem;
	min-height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.time-slot:hover:not(.disabled) {
	background: rgba(112, 218, 228, 0.15);
	border-color: var(--accent-primary);
	color: var(--text-primary);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(112, 218, 228, 0.3);
}

.time-slot.selected {
	background: var(--accent-gradient);
	border-color: var(--accent-primary);
	color: white;
	font-weight: 700;
	box-shadow: 0 4px 15px rgba(112, 218, 228, 0.4);
}

.time-slot.disabled {
	opacity: 0.3;
	cursor: not-allowed;
	background: rgba(255, 255, 255, 0.02);
}

/* Booking Summary */
.booking-summary {
	background: rgba(112, 218, 228, 0.1);
	border: 1px solid rgba(112, 218, 228, 0.2);
	border-radius: 12px;
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}

.summary-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.75rem 0;
	border-bottom: 1px solid rgba(112, 218, 228, 0.1);
}

.summary-item:last-child {
	border-bottom: none;
}

.summary-label {
	font-weight: 600;
	color: var(--text-secondary);
}

.summary-value {
	font-weight: 700;
	color: var(--accent-primary);
	font-size: 1.1rem;
}

/* Email Form */
.email-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.email-input {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(112, 218, 228, 0.2);
	border-radius: 12px;
	padding: 1rem 1.5rem;
	font-size: 1rem;
	color: var(--text-primary);
	font-family: var(--font-primary);
	transition: all 0.3s ease;
	outline: none;
}

.email-input:focus {
	border-color: var(--accent-primary);
	background: rgba(112, 218, 228, 0.1);
	box-shadow: 0 0 0 3px rgba(112, 218, 228, 0.2);
}

.email-input::placeholder {
	color: var(--text-muted);
}

/* Confirmation */
.booking-confirmation {
	text-align: center;
	padding: 0.5rem 0 0.5rem 0;
}

.confirmation-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 1rem;
	background: var(--accent-gradient);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 8px 24px rgba(112, 218, 228, 0.4);
}

.confirmation-icon svg {
	color: white;
}

.booking-confirmation h3 {
	font-family: var(--font-display);
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.75rem;
}

.booking-confirmation p {
	color: var(--text-secondary);
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.confirmation-details {
	background: rgba(112, 218, 228, 0.1);
	border: 1px solid rgba(112, 218, 228, 0.2);
	border-radius: 12px;
	padding: 1.5rem;
	margin-bottom: 1rem;
}

.detail-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.75rem 0;
	border-bottom: 1px solid rgba(112, 218, 228, 0.1);
}

.detail-item:last-child {
	border-bottom: none;
}

.detail-label {
	font-weight: 600;
	color: var(--text-secondary);
}

.detail-value {
	font-weight: 700;
	color: var(--accent-primary);
	font-size: 1.1rem;
}

.booking-confirmation .btn {
	margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}

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

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.5);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
	.booking-modal-content {
		width: 95%;
		max-height: 95vh;
	}

	.booking-modal-header {
		padding: 1rem 1.5rem 0.75rem 1.5rem;
	}

	.booking-modal-header h2 {
		font-size: 1.5rem;
	}

	.booking-modal-body {
		padding: 0.75rem 1.5rem 1.5rem 1.5rem;
	}

	.booking-step-title {
		font-size: 1.25rem;
	}

	.calendar-container {
		padding: 1rem;
	}

	.calendar-day {
		font-size: 0.8rem;
	}

	.time-slots-container {
		grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
		gap: 0.5rem;
	}

	.time-slot {
		padding: 0.75rem;
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	.booking-modal-header h2 {
		font-size: 1.25rem;
	}

	.booking-modal-body {
		padding: 0.75rem 1rem 1rem 1rem;
	}

	.calendar-grid {
		gap: 0.25rem;
	}

	.calendar-day {
		font-size: 0.75rem;
		min-height: 40px;
	}

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

	.summary-value,
	.detail-value {
		font-size: 1rem;
	}
}

/* Scrollbar Styling */
.time-slots-container::-webkit-scrollbar {
	width: 6px;
}

.time-slots-container::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
}

.time-slots-container::-webkit-scrollbar-thumb {
	background: var(--accent-primary);
	border-radius: 10px;
}

.time-slots-container::-webkit-scrollbar-thumb:hover {
	background: var(--accent-secondary);
}

/* ============================================
   TIMEZONE SELECTION STYLES
   ============================================ */

.timezone-helper-text {
	text-align: center;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
	font-size: 1rem;
}

/* Timezone Search */
.timezone-search-container {
	position: relative;
	margin-bottom: 1.5rem;
}

.timezone-search-input {
	width: 100%;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(112, 218, 228, 0.2);
	border-radius: 12px;
	padding: 1rem 1rem 1rem 3rem;
	font-size: 1rem;
	color: var(--text-primary);
	font-family: var(--font-primary);
	transition: all 0.3s ease;
	outline: none;
}

.timezone-search-input:focus {
	border-color: var(--accent-primary);
	background: rgba(112, 218, 228, 0.1);
	box-shadow: 0 0 0 3px rgba(112, 218, 228, 0.2);
}

.timezone-search-input::placeholder {
	color: var(--text-muted);
}

.timezone-search-icon {
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--accent-primary);
	pointer-events: none;
}

/* Timezone List */
.timezone-list-container {
	max-height: 50vh;
	overflow-y: auto;
	flex: 1;
	padding-right: 0.5rem;
	padding-bottom: 1rem;
	margin-bottom: 1.5rem;
}

.timezone-category {
	margin-bottom: 1.5rem;
}

.timezone-category:last-child {
	margin-bottom: 0;
}

.timezone-category-title {
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 600;
	color: var(--accent-primary);
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid rgba(112, 218, 228, 0.2);
}

.timezone-options {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.timezone-option {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(112, 218, 228, 0.2);
	border-radius: 12px;
	padding: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.timezone-option:hover {
	background: rgba(112, 218, 228, 0.15);
	border-color: var(--accent-primary);
	transform: translateX(5px);
}

.timezone-option.selected {
	background: var(--accent-gradient);
	border-color: var(--accent-primary);
	box-shadow: 0 4px 15px rgba(112, 218, 228, 0.4);
}

.timezone-option-name {
	font-weight: 500;
	color: var(--text-primary);
	flex: 1;
}

.timezone-option.selected .timezone-option-name {
	color: white;
	font-weight: 700;
}

.timezone-option-offset {
	font-size: 0.875rem;
	color: var(--text-secondary);
	margin-left: 1rem;
}

.timezone-option.selected .timezone-option-offset {
	color: rgba(255, 255, 255, 0.9);
}

.timezone-option.hidden {
	display: none;
}

/* Selected Timezone Display */
.selected-timezone-display {
	background: rgba(112, 218, 228, 0.1);
	border: 1px solid rgba(112, 218, 228, 0.2);
	border-radius: 12px;
	padding: 1rem;
	margin-bottom: 1.5rem;
	text-align: center;
}

.timezone-label {
	font-weight: 600;
	color: var(--text-secondary);
	margin-right: 0.5rem;
}

.timezone-value {
	font-weight: 700;
	color: var(--accent-primary);
	font-size: 1.1rem;
}

/* Timezone Badge (shown on other steps) */
.selected-timezone-badge {
	background: rgba(112, 218, 228, 0.1);
	border: 1px solid rgba(112, 218, 228, 0.2);
	border-radius: 12px;
	padding: 0.75rem 1rem;
	margin-bottom: 1.5rem;
	text-align: center;
	font-size: 0.95rem;
}

.selected-timezone-badge::before {
	content: "🌍 ";
	margin-right: 0.5rem;
}

.selected-timezone-badge {
	color: var(--accent-primary);
	font-weight: 600;
}

/* Timezone List Scrollbar */
.timezone-list-container::-webkit-scrollbar {
	width: 6px;
}

.timezone-list-container::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
}

.timezone-list-container::-webkit-scrollbar-thumb {
	background: var(--accent-primary);
	border-radius: 10px;
}

.timezone-list-container::-webkit-scrollbar-thumb:hover {
	background: var(--accent-secondary);
}

/* ============================================
   LOADING SPINNER STYLES
   ============================================ */

.loading-spinner {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	margin: 3rem 0;
	min-height: 100px;
}

.spinner-ring {
	width: 60px;
	height: 60px;
	border: 4px solid rgba(112, 218, 228, 0.1);
	border-top-color: var(--accent-primary);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

.spinner-ring:nth-child(2) {
	width: 50px;
	height: 50px;
	border-width: 3px;
	animation-duration: 0.8s;
	animation-direction: reverse;
	position: absolute;
}

.spinner-ring:nth-child(3) {
	width: 40px;
	height: 40px;
	border-width: 2px;
	animation-duration: 0.6s;
	position: absolute;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.loading-text {
	text-align: center;
	color: var(--text-secondary);
	font-size: 1rem;
	margin-top: 1rem;
}

/* ============================================
   MOBILE RESPONSIVENESS - TIMEZONE & LOADING
   ============================================ */

@media (max-width: 768px) {
	.timezone-list-container {
		max-height: 300px;
	}

	.timezone-option {
		padding: 0.875rem;
		font-size: 0.95rem;
	}

	.timezone-option-offset {
		font-size: 0.8rem;
	}

	.spinner-ring {
		width: 50px;
		height: 50px;
	}

	.spinner-ring:nth-child(2) {
		width: 40px;
		height: 40px;
	}

	.spinner-ring:nth-child(3) {
		width: 30px;
		height: 30px;
	}
}

@media (max-width: 480px) {
	.timezone-helper-text {
		font-size: 0.9rem;
	}

	.timezone-search-input {
		padding: 0.875rem 0.875rem 0.875rem 2.5rem;
		font-size: 0.95rem;
	}

	.timezone-option {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}

	.timezone-option-offset {
		margin-left: 0;
	}

	.loading-text {
		font-size: 0.9rem;
	}

	/* Time slots responsive */
	.time-slots-container {
		grid-template-columns: repeat(3, 1fr);
		gap: 0.5rem;
	}

	.time-slot {
		padding: 0.6rem 0.4rem;
		font-size: 0.85rem;
		min-height: 36px;
	}

	/* Calendar responsive */
	.calendar-container {
		padding: 0.875rem;
	}

	.calendar-day {
		font-size: 0.8rem;
		min-height: 32px;
	}
}

@media (max-width: 480px) {
	.time-slots-container {
		grid-template-columns: repeat(2, 1fr);
	}

	.calendar-weekdays div {
		font-size: 0.75rem;
		padding: 0.2rem 0;
	}

	.calendar-day {
		font-size: 0.75rem;
		min-height: 30px;
	}
}

/* ============================================
   AI CHATBOT WIDGET - MIKE
   ============================================ */

/* Chatbot Widget Container */
.chatbot-widget {
	position: fixed;
	bottom: 25px;
	right: 25px;
	z-index: 9999;
	font-family: var(--font-primary);
}

/* Chatbot Toggle Button */
.chatbot-toggle {
	position: fixed;
	bottom: 20px;
	right: 40px;
	width: 60px;
	height: 60px;
	background: var(--accent-gradient);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 8px 30px rgba(0, 180, 216, 0.4), 0 0 20px rgba(0, 212, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
	z-index: 1001;
	overflow: hidden;
	animation: float 6s ease-in-out infinite;
}

.chatbot-toggle::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 50%;
	box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: -1;
}

.chatbot-toggle:hover {
	transform: scale(1.1) translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 212, 255, 0.6);
}

.chatbot-toggle:hover::after {
	opacity: 1;
}

.chatbot-toggle:active {
	transform: scale(0.95);
}

.chatbot-toggle .chatbot-icon {
	transition: all 0.3s ease;
	opacity: 1;
	transform: rotate(0deg) scale(1);
}

.chatbot-toggle .chatbot-close-icon {
	position: absolute;
	opacity: 0;
	transform: rotate(90deg) scale(0.5);
	transition: all 0.3s ease;
}

.chatbot-toggle.active .chatbot-icon {
	opacity: 0;
	transform: rotate(-90deg) scale(0.5);
}

.chatbot-toggle.active .chatbot-close-icon {
	opacity: 1;
	transform: rotate(0deg) scale(1);
}

/* Chatbot Window */
.chatbot-window {
	position: fixed;
	bottom: 90px;
	right: 20px;
	width: 400px;
	max-width: calc(100vw - 40px);
	height: 650px;
	max-height: calc(100vh - 130px);
	background: transparent;
	border: 1px solid rgba(112, 218, 228, 0.3);
	border-radius: 24px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 212, 255, 0.1);
	display: flex;
	flex-direction: column;
	opacity: 0;
	transform: translateY(20px) scale(0.95);
	pointer-events: none;
	transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
	backdrop-filter: blur(25px);
	overflow: hidden;
}

.chatbot-window.active {
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: all;
}

/* Chatbot Header */
.chatbot-header {
	background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 180, 216, 0.05) 100%);
	padding: 0.875rem 1.25rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	flex-shrink: 0;
	backdrop-filter: blur(10px);
}

.chatbot-header-info {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.chatbot-avatar {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--accent-gradient);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.chatbot-header-text {
	color: white;
}

.chatbot-name {
	font-size: 1.15rem;
	font-weight: 700;
	margin: 0 0 0.15rem 0;
	font-family: var(--font-display);
	letter-spacing: 0.02em;
}

.chatbot-status {
	font-size: 0.8rem;
	margin: 0;
	opacity: 0.8;
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-weight: 500;
}

.status-indicator {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #4ade80;
	box-shadow: 0 0 8px #4ade80;
	animation: pulse 2s infinite;
}

.chatbot-minimize {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.1);
	width: 32px;
	height: 32px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
	color: rgba(255, 255, 255, 0.7);
}

.chatbot-minimize:hover {
	background: rgba(255, 255, 255, 0.2);
	color: white;
	transform: translateY(-2px);
}

/* Chatbot Messages */
.chatbot-messages {
	flex: 1;
	overflow-y: auto;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	background: transparent;
}

.chatbot-message {
	display: flex;
	gap: 1rem;
	animation: slideInMessage 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.user-message {
	justify-content: flex-end;
}

@keyframes slideInMessage {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

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

.message-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--accent-gradient);
	display: none;
	align-items: center;
	justify-content: center;
	color: white;
	flex-shrink: 0;
	font-size: 0.8rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.user-message .message-avatar {
	background: rgba(255, 255, 255, 0.15);
	order: 2;
}

.message-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	max-width: 95%;
}

.user-message .message-content {
	flex: 0 1 auto;
	max-width: 85%;
	align-items: flex-end;
}

.message-bubble {
	background: rgba(30, 30, 40, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	padding: 0.85rem 1.1rem;
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	word-wrap: break-word;
	overflow-wrap: break-word;
	max-width: 100%;
}

.user-message .message-bubble {
	background: var(--accent-gradient);
	border: none;
	color: white;
	border-radius: 16px 16px 0 16px;
	box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}

.message-bubble p {
	margin: 0 0 0.5rem 0;
	font-size: 0.9rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 400;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.message-bubble p:last-child {
	margin-bottom: 0;
}

.user-message .message-bubble p {
	color: white;
	font-size: 0.875rem;
	font-weight: 400;
}

/* Rich Text Formatting */
.message-bubble strong {
	font-weight: 700;
	color: var(--accent-primary);
	font-size: 0.875rem;
}

.user-message .message-bubble strong {
	color: white;
	font-size: 0.875rem;
}

.message-bubble h1,
.message-bubble h2,
.message-bubble h3 {
	font-family: var(--font-display);
	font-weight: 700;
	color: var(--accent-secondary);
	margin: 0.5rem 0;
	line-height: 1.3;
	font-size: 0.875rem;
}

.user-message .message-bubble h1,
.user-message .message-bubble h2,
.user-message .message-bubble h3 {
	color: white;
}

.message-bubble ul,
.message-bubble ol {
	margin: 0.5rem 0;
	padding-left: 1.2rem;
}

.message-bubble li {
	margin: 0.25rem 0;
	font-size: 0.875rem;
}

.message-bubble a {
	color: var(--accent-primary);
	text-decoration: underline;
	text-decoration-thickness: 2px;
	font-size: 0.875rem;
}

.message-bubble a:hover {
	color: white;
}

.user-message .message-bubble a {
	color: white;
}

/* Quick Action Buttons */
.quick-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-top: 1rem;
}

.quick-action-btn {
	background: rgba(112, 218, 228, 0.08);
	border: 1px solid rgba(112, 218, 228, 0.2);
	border-radius: 50px;
	padding: 0.6rem 1rem;
	color: var(--text-secondary);
	font-size: 0.85rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	text-align: center;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.quick-action-btn:hover {
	background: rgba(112, 218, 228, 0.2);
	border-color: var(--accent-primary);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.message-time {
	font-size: 0.7rem;
	color: rgba(255, 255, 255, 0.4);
	padding: 0 0.5rem;
}

/* Typing Indicator */
.typing-indicator {
	display: flex;
	gap: 0.75rem;
	padding: 0 1rem;
	animation: slideInMessage 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.typing-dots {
	background: rgba(30, 30, 40, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	padding: 0.85rem 1.1rem;
	display: flex;
	gap: 0.4rem;
	align-items: center;
	width: fit-content;
}

.typing-dots span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--accent-primary);
	animation: typingDot 1.4s infinite;
}

.typing-dots span:nth-child(2) {
	animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
	animation-delay: 0.4s;
}

@keyframes typingDot {

	0%,
	60%,
	100% {
		opacity: 0.3;
		transform: translateY(0);
	}

	30% {
		opacity: 1;
		transform: translateY(-4px);
	}
}

/* Chatbot Input Area */
.chatbot-input-container {
	padding: 1rem 1.5rem 1.5rem;
	background: transparent;
	flex-shrink: 0;
	position: relative;
}

.chatbot-input-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.chatbot-form {
	display: flex;
	gap: 0.75rem;
	align-items: center;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50px;
	padding: 0.35rem 0.5rem 0.35rem 1.25rem;
	transition: all 0.3s ease;
}

.chatbot-form:focus-within {
	border-color: var(--accent-primary);
	background: rgba(255, 255, 255, 0.05);
	box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.1);
}

.chatbot-input {
	flex: 1;
	background: transparent;
	border: none;
	padding: 0.5rem 0;
	color: white;
	word-wrap: break-word;
	overflow-wrap: break-word;
	font-size: 0.95rem;
	font-family: var(--font-primary);
	outline: none;
	resize: none;
	max-height: 120px;
	overflow-y: auto;
	line-height: 1.5;
}

.chatbot-input::placeholder {
	color: rgba(255, 255, 255, 0.3);
}

.chatbot-send-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--accent-gradient);
	border: none;
	color: white;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(0, 212, 255, 0.2);
}

.chatbot-send-btn:hover:not(:disabled) {
	transform: scale(1.1);
	box-shadow: 0 4px 12px rgba(0, 212, 255, 0.4);
}

.chatbot-send-btn:active {
	transform: scale(0.95);
}

.chatbot-send-btn:disabled {
	opacity: 0.5;
	background: rgba(255, 255, 255, 0.1);
	cursor: not-allowed;
	box-shadow: none;
}

.chatbot-footer-text {
	text-align: center;
	font-size: 0.7rem;
	color: rgba(255, 255, 255, 0.3);
	margin-top: 0.75rem;
}

.chatbot-footer-text strong {
	color: var(--accent-primary);
	font-weight: 500;
}

/* Animations */
@keyframes float {
	0% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-10px);
	}

	100% {
		transform: translateY(0px);
	}
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.8;
		transform: scale(1.05);
	}
}

/* Scrollbar Styling */
.chatbot-messages::-webkit-scrollbar {
	width: 4px;
}

.chatbot-messages::-webkit-scrollbar-track {
	background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 255, 255, 0.2);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
	.chatbot-widget {
		bottom: 20px;
		right: 20px;
	}

	.chatbot-toggle {
		width: 60px;
		height: 60px;
	}

	.chatbot-window {
		width: calc(100vw - 30px);
		height: calc(100vh - 110px);
		bottom: 90px;
		right: 0;
		left: 15px;
	}

	.chatbot-header {
		padding: 0.75rem 1rem;
	}

	.message-content {
		max-width: 90%;
	}

	.user-message .message-content {
		max-width: 80%;
	}

	/* Quick actions responsive wrapping */
	.quick-actions {
		flex-wrap: wrap;
		gap: 0.5rem;
	}

	.quick-action-btn {
		flex: 1 1 calc(50% - 0.25rem);
		min-width: 120px;
		font-size: 0.8rem;
		padding: 0.6rem 0.9rem;
	}
}

@media (max-width: 480px) {
	.chatbot-toggle {
		width: 56px;
		height: 56px;
	}

	.chatbot-toggle svg {
		width: 24px;
		height: 24px;
	}

	.chatbot-window {
		width: calc(100vw - 20px);
		height: calc(100vh - 100px);
		bottom: 85px;
		right: 0;
		left: 10px;
	}

	.chatbot-input-container {
		padding: 0.75rem 1rem 1rem;
	}

	.chatbot-header {
		padding: 0.65rem 0.85rem;
	}

	.chatbot-name {
		font-size: 1rem;
	}

	.chatbot-status {
		font-size: 0.7rem;
	}

	.message-bubble {
		padding: 0.75rem 0.95rem;
	}

	.quick-action-btn {
		flex: 1 1 100%;
		font-size: 0.75rem;
		padding: 0.55rem 0.8rem;
	}
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
	.chatbot-window {
		height: calc(100vh - 80px);
		width: calc(100vw - 40px);
		left: 20px;
		bottom: 70px;
	}

	.chatbot-header {
		padding: 0.5rem 1rem;
	}

	.chatbot-input-container {
		padding: 0.5rem 1rem 0.75rem;
	}
}