/* Enhanced About Page Styles */

/* Enhanced Hero Section */
.about-hero {
	position: relative;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.about-hero .hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		var(--darker-bg) 0%,
		var(--dark-bg) 50%,
		#1a1a1a 100%
	);
}

.about-hero .hero-background::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(
			circle at 30% 70%,
			rgba(0, 212, 170, 0.15) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 70% 30%,
			rgba(255, 107, 107, 0.15) 0%,
			transparent 50%
		);
}

.hero-particles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(
			2px 2px at 20px 30px,
			rgba(0, 212, 170, 0.3),
			transparent
		),
		radial-gradient(2px 2px at 40px 70px, rgba(255, 107, 107, 0.3), transparent),
		radial-gradient(1px 1px at 90px 40px, rgba(78, 205, 196, 0.3), transparent),
		radial-gradient(1px 1px at 130px 80px, rgba(0, 212, 170, 0.3), transparent);
	background-repeat: repeat;
	background-size: 150px 100px;
	animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
	0% {
		transform: translateY(0px);
	}
	100% {
		transform: translateY(-100px);
	}
}

.about-hero .hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 800px;
	animation: fadeInUp 1s ease-out;
}

.hero-badge {
	display: inline-block;
	padding: 8px 20px;
	background: rgba(0, 212, 170, 0.1);
	border: 1px solid var(--primary-color);
	border-radius: 25px;
	color: var(--primary-color);
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	animation: pulse 2s ease-in-out infinite;
}

.about-hero h1 {
	font-size: clamp(3rem, 6vw, 5rem);
	font-weight: 800;
	margin-bottom: 1.5rem;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: clamp(1.2rem, 2.5vw, 1.8rem);
	color: var(--text-secondary);
	margin-bottom: 3rem;
	line-height: 1.6;
}

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

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

.stat-number {
	display: block;
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 0.9rem;
	color: var(--text-secondary);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	color: var(--primary-color);
	font-size: 1.5rem;
	animation: bounce 2s infinite;
	cursor: pointer;
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateX(-50%) translateY(0);
	}
	40% {
		transform: translateX(-50%) translateY(-10px);
	}
	60% {
		transform: translateX(-50%) translateY(-5px);
	}
}

/* Interactive Story Timeline */
.story-timeline {
	padding: 8rem 0;
	background: var(--darker-bg);
}

.timeline {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
}

.timeline::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 2px;
	height: 100%;
	background: var(--gradient-primary);
}

.timeline-item {
	position: relative;
	margin-bottom: 4rem;
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.6s ease;
}

.timeline-item.animate {
	opacity: 1;
	transform: translateY(0);
}

.timeline-item:nth-child(odd) .timeline-content {
	margin-right: 50%;
	padding-right: 3rem;
	text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
	margin-left: 50%;
	padding-left: 3rem;
	text-align: left;
}

.timeline-content {
	position: relative;
	background: var(--card-bg);
	padding: 2rem;
	border-radius: 20px;
	border: 1px solid var(--border-color);
	transition: var(--transition);
}

.timeline-content:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-light);
	border-color: var(--primary-color);
}

.timeline-icon {
	position: absolute;
	top: 50%;
	width: 60px;
	height: 60px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
	z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-icon {
	right: -30px;
	transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-icon {
	left: -30px;
	transform: translateY(-50%);
}

.timeline-item::before {
	content: attr(data-year);
	position: absolute;
	top: -10px;
	font-size: 0.8rem;
	color: var(--primary-color);
	font-weight: 700;
	background: var(--dark-bg);
	padding: 5px 10px;
	border-radius: 15px;
	border: 1px solid var(--primary-color);
}

.timeline-item:nth-child(odd)::before {
	right: 3rem;
}

.timeline-item:nth-child(even)::before {
	left: 3rem;
}

/* Enhanced Mission & Vision */
.mission-vision-enhanced {
	padding: 8rem 0;
}

.mv-card {
	position: relative;
	background: var(--card-bg);
	border-radius: 20px;
	padding: 3rem 2rem;
	text-align: center;
	border: 1px solid var(--border-color);
	transition: var(--transition);
	overflow: hidden;
	cursor: pointer;
}

.mv-card:hover {
	transform: translateY(-10px) rotateX(5deg);
	box-shadow: 0 20px 40px rgba(0, 212, 170, 0.2);
	border-color: var(--primary-color);
}

.card-glow {
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(0, 212, 170, 0.1) 0%,
		transparent 70%
	);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.mv-card:hover .card-glow {
	opacity: 1;
}

.mv-card .mv-icon {
	width: 100px;
	height: 100px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	transition: var(--transition);
}

.mv-card:hover .mv-icon {
	transform: scale(1.1) rotateY(180deg);
}

.mv-card .mv-icon i {
	font-size: 2.5rem;
	color: white;
}

/* Interactive Approach Section */
.approach-interactive {
	padding: 8rem 0;
	background: var(--darker-bg);
}

.approach-tabs {
	max-width: 1000px;
	margin: 0 auto;
}

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

.tab-btn {
	padding: 12px 24px;
	background: var(--card-bg);
	color: var(--text-secondary);
	border: 1px solid var(--border-color);
	border-radius: 25px;
	cursor: pointer;
	transition: var(--transition);
	font-weight: 600;
}

.tab-btn:hover,
.tab-btn.active {
	background: var(--gradient-primary);
	color: white;
	border-color: var(--primary-color);
	transform: translateY(-2px);
}

.tab-content {
	position: relative;
	min-height: 400px;
}

.tab-panel {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	transform: translateX(50px);
	transition: all 0.3s ease;
	pointer-events: none;
}

.tab-panel.active {
	opacity: 1;
	transform: translateX(0);
	pointer-events: all;
}

.tab-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	background: var(--card-bg);
	border-radius: 20px;
	padding: 3rem;
	border: 1px solid var(--border-color);
}

.tab-text h3 {
	color: var(--text-primary);
	margin-bottom: 1.5rem;
}

.tab-text p {
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 2rem;
}

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

.feature-list li {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
	color: var(--text-secondary);
}

.feature-list li i {
	color: var(--primary-color);
	margin-right: 1rem;
	font-size: 1.2rem;
}

.tab-visual {
	display: flex;
	align-items: center;
	justify-content: center;
}

.visual-element {
	width: 200px;
	height: 200px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: float 3s ease-in-out infinite;
}

.visual-element i {
	font-size: 4rem;
	color: white;
}

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

/* Enhanced Team Section */
.team-enhanced {
	padding: 8rem 0;
}

.team-enhanced .team-member {
	background: var(--card-bg);
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--border-color);
	transition: var(--transition);
	position: relative;
}

.team-enhanced .team-member:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 212, 170, 0.2);
	border-color: var(--primary-color);
}

.team-enhanced .member-image {
	height: 250px;
	background: var(--gradient-secondary);
	position: relative;
	overflow: hidden;
}

.member-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: var(--transition);
}

.team-enhanced .team-member:hover .member-overlay {
	opacity: 1;
}

.member-social {
	text-align: center;
	color: white;
}

.member-social i {
	font-size: 2rem;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.member-social span {
	display: block;
	font-weight: 600;
}

.member-specialties {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-top: 1rem;
}

.specialty {
	background: rgba(0, 212, 170, 0.1);
	color: var(--primary-color);
	padding: 4px 12px;
	border-radius: 15px;
	font-size: 0.8rem;
	font-weight: 600;
}

/* Interactive Why Choose Us */
.why-choose-interactive {
	padding: 8rem 0;
	background: var(--darker-bg);
}

.reasons-interactive {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

.reason-card {
	position: relative;
	background: var(--card-bg);
	border-radius: 20px;
	padding: 2rem;
	border: 1px solid var(--border-color);
	transition: var(--transition);
	overflow: hidden;
	cursor: pointer;
}

.reason-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 212, 170, 0.2);
	border-color: var(--primary-color);
}

.reason-icon {
	width: 80px;
	height: 80px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	transition: var(--transition);
}

.reason-card:hover .reason-icon {
	transform: scale(1.1) rotateY(360deg);
}

.reason-icon i {
	font-size: 2rem;
	color: white;
}

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

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

.reason-stats {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.reason-stats span {
	background: rgba(0, 212, 170, 0.1);
	color: var(--primary-color);
	padding: 4px 12px;
	border-radius: 15px;
	font-size: 0.8rem;
	font-weight: 600;
}

.reason-hover {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: var(--primary-color);
	color: white;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	opacity: 0;
	transform: translateY(-10px);
	transition: var(--transition);
}

.reason-card:hover .reason-hover {
	opacity: 1;
	transform: translateY(0);
}

.reason-hover i {
	margin-right: 0.5rem;
}

/* Client Success Stories */
.success-stories {
	padding: 8rem 0;
}

.stories-slider {
	max-width: 1000px;
	margin: 0 auto;
}

.story-item {
	padding: 0 1rem;
}

.story-content {
	background: var(--card-bg);
	border-radius: 20px;
	padding: 3rem;
	border: 1px solid var(--border-color);
	transition: var(--transition);
}

.story-content:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-light);
	border-color: var(--primary-color);
}

.story-quote {
	margin-bottom: 2rem;
}

.story-quote i {
	font-size: 2rem;
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.story-quote p {
	font-size: 1.2rem;
	font-style: italic;
	color: var(--text-secondary);
	line-height: 1.8;
}

.story-author {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.author-info h4 {
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.author-info span {
	color: var(--primary-color);
	font-weight: 600;
}

.story-results {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.result-tag {
	background: rgba(0, 212, 170, 0.1);
	color: var(--primary-color);
	padding: 4px 12px;
	border-radius: 15px;
	font-size: 0.8rem;
	font-weight: 600;
}

/* Enhanced Client Success Stories */
.success-stories-enhanced {
	padding: 8rem 0;
	background: var(--darker-bg);
}

.header-badge {
	display: inline-block;
	padding: 8px 20px;
	background: rgba(0, 212, 170, 0.1);
	border: 1px solid var(--primary-color);
	border-radius: 25px;
	color: var(--primary-color);
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.success-stats {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin: 4rem 0;
	flex-wrap: wrap;
}

.stat-card {
	background: var(--card-bg);
	border: 1px solid var(--border-color);
	border-radius: 20px;
	padding: 2rem;
	text-align: center;
	min-width: 180px;
	transition: var(--transition);
}

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

.stat-icon {
	width: 60px;
	height: 60px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
}

.stat-icon i {
	font-size: 1.5rem;
	color: white;
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--primary-color);
	display: block;
	margin-bottom: 0.5rem;
}

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

.stories-enhanced-slider {
	max-width: 1200px;
	margin: 0 auto 4rem;
}

.story-enhanced-item {
	padding: 0 1rem;
}

.story-enhanced-content {
	background: var(--card-bg);
	border-radius: 25px;
	padding: 3rem;
	border: 1px solid var(--border-color);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.story-enhanced-content::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: var(--gradient-primary);
}

.story-enhanced-content:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 212, 170, 0.15);
	border-color: var(--primary-color);
}

.story-rating {
	display: flex;
	gap: 0.25rem;
	margin-bottom: 1.5rem;
}

.story-rating i {
	color: #ffd700;
	font-size: 1.2rem;
}

.story-quote-enhanced {
	position: relative;
	margin-bottom: 2.5rem;
}

.quote-mark {
	font-size: 4rem;
	color: var(--primary-color);
	font-family: serif;
	line-height: 1;
	margin-bottom: 1rem;
	opacity: 0.7;
}

.story-quote-enhanced p {
	font-size: 1.3rem;
	line-height: 1.8;
	color: var(--text-secondary);
	font-style: italic;
	margin: 0;
}

.story-author-enhanced {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 1.5rem;
	align-items: center;
}

.author-avatar {
	width: 60px;
	height: 60px;
	background: var(--gradient-secondary);
	border-radius: 50%;
	position: relative;
}

.author-avatar::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 30px;
	height: 30px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
}

.author-details h4 {
	color: var(--text-primary);
	margin-bottom: 0.25rem;
	font-size: 1.1rem;
}

.author-details span {
	color: var(--text-muted);
	font-size: 0.9rem;
	display: block;
	margin-bottom: 0.5rem;
}

.author-program {
	background: rgba(0, 212, 170, 0.1);
	color: var(--primary-color);
	padding: 4px 12px;
	border-radius: 15px;
	font-size: 0.8rem;
	font-weight: 600;
	display: inline-block;
}

.story-results-enhanced {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.result-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(0, 212, 170, 0.05);
	padding: 8px 12px;
	border-radius: 20px;
	border: 1px solid rgba(0, 212, 170, 0.2);
}

.result-item i {
	color: var(--primary-color);
	font-size: 0.9rem;
}

.result-item span {
	color: var(--text-secondary);
	font-size: 0.85rem;
	font-weight: 600;
}

.testimonial-cta {
	background: var(--card-bg);
	border: 1px solid var(--border-color);
	border-radius: 25px;
	padding: 3rem;
	text-align: center;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.cta-text h3 {
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.cta-text p {
	color: var(--text-secondary);
	margin: 0;
}

/* Enhanced CTA Section */
.cta-enhanced {
	position: relative;
	padding: 8rem 0;
	background: var(--gradient-primary);
	overflow: hidden;
}

.cta-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.cta-particles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(
			3px 3px at 30px 50px,
			rgba(255, 255, 255, 0.2),
			transparent
		),
		radial-gradient(2px 2px at 80px 30px, rgba(255, 255, 255, 0.1), transparent),
		radial-gradient(
			1px 1px at 120px 70px,
			rgba(255, 255, 255, 0.2),
			transparent
		);
	background-repeat: repeat;
	background-size: 200px 150px;
	animation: ctaParticles 15s linear infinite;
}

@keyframes ctaParticles {
	0% {
		transform: translateX(0px);
	}
	100% {
		transform: translateX(-200px);
	}
}

.cta-enhanced .cta-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.cta-badge {
	display: inline-block;
	padding: 8px 20px;
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 25px;
	color: white;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.cta-enhanced h2 {
	color: white;
	margin-bottom: 1.5rem;
	font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.cta-enhanced p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.2rem;
	margin-bottom: 3rem;
	line-height: 1.6;
}

.btn-large {
	padding: 16px 32px;
	font-size: 1.1rem;
	min-width: 200px;
}

.btn-large i {
	margin-right: 0.5rem;
}

.cta-enhanced .btn-outline {
	background: transparent;
	color: white;
	border-color: white;
}

.cta-enhanced .btn-outline:hover {
	background: white;
	color: var(--primary-color);
}

.cta-guarantee {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 2rem;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 600;
}

.cta-guarantee i {
	color: white;
	font-size: 1.2rem;
}

/* Counter Animation */
@keyframes countUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.stat-number.animate {
	animation: countUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero-stats {
		flex-direction: column;
		gap: 2rem;
	}

	.mv-card .mv-icon {
		width: 70px;
		height: 70px;
	}

	.mv-card .mv-icon i {
		font-size: 2rem;
	}

	.timeline::before {
		left: 20px;
	}
	.tab-content {
		position: relative;
		min-height: 800px;
	}

	.timeline-item:nth-child(odd) .timeline-content,
	.timeline-item:nth-child(even) .timeline-content {
		margin-left: 60px;
		margin-right: 0;
		padding-left: 2rem;
		padding-right: 2rem;
		text-align: left;
	}

	.timeline-item:nth-child(odd) .timeline-icon,
	.timeline-item:nth-child(even) .timeline-icon {
		left: -10px;
	}

	.timeline-item:nth-child(odd)::before,
	.timeline-item:nth-child(even)::before {
		left: 2rem;
	}

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

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

	.visual-element {
		width: 70px;
		height: 70px;
	}

	.visual-element i {
		font-size: 2rem;
	}

	.reasons-interactive {
		grid-template-columns: 1fr;
	}

	.story-author {
		flex-direction: column;
		align-items: flex-start;
	}

	.story-enhanced-content {
		padding: 2rem;
	}

	.story-quote-enhanced p {
		font-size: 1.1rem;
		line-height: 1.7;
	}

	.story-author-enhanced {
		grid-template-columns: 1fr;
		gap: 1rem;
		text-align: center;
	}

	.author-avatar {
		margin: 0 auto;
	}

	.story-results-enhanced {
		justify-content: center;
		flex-direction: row;
		flex-wrap: wrap;
	}

	.result-item {
		font-size: 0.8rem;
		padding: 6px 10px;
	}

	.testimonial-cta {
		flex-direction: column;
		text-align: center;
		gap: 1.5rem;
		padding: 2rem;
	}

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

@media (max-width: 480px) {
	.timeline-content {
		padding: 1.5rem;
	}

	.mv-card {
		padding: 2rem 1.5rem;
	}

	.mv-card .mv-icon {
		width: 60px;
		height: 60px;
	}

	.mv-card .mv-icon i {
		font-size: 1.8rem;
	}

	.tab-inner {
		padding: 2rem;
	}

	.reason-card {
		padding: 1.5rem;
	}

	.story-content {
		padding: 2rem;
	}

	.story-enhanced-content {
		padding: 1.5rem;
		border-radius: 20px;
	}

	.quote-mark {
		font-size: 3rem;
	}

	.story-quote-enhanced p {
		font-size: 1rem;
		line-height: 1.6;
	}

	.story-author-enhanced {
		gap: 0.75rem;
	}

	.author-avatar {
		width: 50px;
		height: 50px;
	}

	.author-details h4 {
		font-size: 1rem;
	}

	.author-details span {
		font-size: 0.85rem;
	}

	.author-program {
		font-size: 0.75rem;
		padding: 3px 8px;
	}

	.result-item {
		font-size: 0.75rem;
		padding: 4px 8px;
	}

	.testimonial-cta {
		padding: 1.5rem;
		border-radius: 20px;
	}

	.cta-text h3 {
		font-size: 1.3rem;
		margin-bottom: 0.75rem;
	}

	.cta-text p {
		font-size: 0.9rem;
	}
}

/* AOS Animation Overrides */
[data-aos="fade-up"] {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Tilt Effect */
[data-tilt] {
	transform-style: preserve-3d;
	transition: transform 0.3s ease;
}

[data-tilt]:hover {
	transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
}

/* Hover Effects */
[data-hover-effect] {
	position: relative;
	overflow: hidden;
}

[data-hover-effect]::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(0, 212, 170, 0.1),
		transparent
	);
	transition: left 0.5s ease;
}

[data-hover-effect]:hover::before {
	left: 100%;
}
