/* Expertise Showcase Section - Premium Professional Design */

.expertise-showcase-section {
	padding: 120px 0;
	background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
	position: relative;
	overflow: hidden;
}

/* Animated Background Elements */
.expertise-showcase-section::before {
	content: '';
	position: absolute;
	top: -20%;
	left: -10%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(184, 134, 11, 0.04) 0%, transparent 70%);
	border-radius: 50%;
	animation: floatSlow 25s ease-in-out infinite;
}

.expertise-showcase-section::after {
	content: '';
	position: absolute;
	bottom: -20%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
	border-radius: 50%;
	animation: floatSlow 30s ease-in-out infinite reverse;
}

@keyframes floatSlow {
	0%, 100% {
		transform: translate(0, 0) scale(1);
	}
	50% {
		transform: translate(30px, -30px) scale(1.1);
	}
}

.expertise-container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 30px;
	position: relative;
	z-index: 2;
}

.expertise-grid {
	display: grid;
	grid-template-columns: 42% 58%;
	gap: 50px;
	align-items: center;
}

/* Left Side - Image Showcase */
.expertise-image-wrapper {
	position: relative;
	height: 100%;
	min-height: 600px;
}

.expertise-main-image {
	width: 100%;
	height: 100%;
	border-radius: 30px;
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
	position: relative;
}

.expertise-main-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.expertise-main-image:hover img {
	transform: scale(1.05);
}

/* Decorative Elements */
.expertise-main-image::before {
	content: '';
	position: absolute;
	top: -20px;
	left: -20px;
	right: 20px;
	bottom: 20px;
	border: 3px solid rgba(184, 134, 11, 0.3);
	border-radius: 30px;
	z-index: -1;
}

.expertise-main-image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

/* Floating Badge */
.expertise-badge-float {
	position: absolute;
	bottom: 40px;
	right: -30px;
	background: linear-gradient(135deg, #B8860B 0%, #FFD700 100%);
	padding: 25px 35px;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(184, 134, 11, 0.4);
	animation: floatBadge 4s ease-in-out infinite;
	z-index: 3;
}

@keyframes floatBadge {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-15px);
	}
}

.badge-number {
	font-size: 42px;
	font-weight: 800;
	color: #fff;
	line-height: 1;
	margin-bottom: 6px;
}

.badge-text {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.95);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Right Side - Content */
.expertise-content {
	padding: 20px 0;
	max-width: 100%;
	overflow: visible;
}

.expertise-header {
	margin-bottom: 40px;
}

.expertise-badge {
	display: inline-block;
	padding: 5px 16px;
	background: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
	border: 2px solid rgba(184, 134, 11, 0.3);
	border-radius: 30px;
	color: #B8860B;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.expertise-title {
	font-size: 34px;
	font-weight: 800;
	color: #1a1a2e;
	line-height: 1.2;
	margin-bottom: 14px;
}

.expertise-title span {
	background: linear-gradient(135deg, #B8860B 0%, #FFD700 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.expertise-description {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	margin-bottom: 0;
}

/* Expertise Grid */
.expertise-items-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	max-width: 100%;
}

.expertise-item {
	background: #fff;
	border: 2px solid #f0f0f0;
	border-radius: 14px;
	padding: 16px 14px;
	display: flex;
	align-items: center;
	gap: 12px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	width: 100%;
	box-sizing: border-box;
}

.expertise-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.05), transparent);
	transition: left 0.6s ease;
}

.expertise-item:hover::before {
	left: 100%;
}

.expertise-item:hover {
	transform: translateX(10px);
	border-color: rgba(184, 134, 11, 0.4);
	box-shadow: 0 15px 40px rgba(184, 134, 11, 0.15);
	background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
}

.expertise-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #B8860B 0%, #FFD700 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
	transition: all 0.4s ease;
	position: relative;
}

.expertise-item:hover .expertise-icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 15px 40px rgba(184, 134, 11, 0.4);
}

.expertise-icon::after {
	content: '';
	position: absolute;
	inset: -5px;
	border-radius: 16px;
	border: 2px dashed rgba(184, 134, 11, 0.3);
	animation: iconRotate 15s linear infinite;
}

@keyframes iconRotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.expertise-icon i {
	font-size: 24px;
	color: #fff;
	z-index: 2;
}

.expertise-item-content h4 {
	font-size: 13px;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0;
	transition: color 0.3s ease;
	line-height: 1.4;
	word-wrap: break-word;
}

.expertise-item:hover .expertise-item-content h4 {
	color: #B8860B;
}

/* CTA Section */
.expertise-cta {
	margin-top: 30px;
	display: flex;
	align-items: center;
	gap: 25px;
}

.expertise-cta-button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	background: linear-gradient(135deg, #B8860B 0%, #FFD700 100%);
	color: #fff;
	text-decoration: none;
	border-radius: 10px;
	font-weight: 700;
	font-size: 14px;
	transition: all 0.4s ease;
	box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
	position: relative;
	overflow: hidden;
}

.expertise-cta-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s ease;
}

.expertise-cta-button:hover::before {
	left: 100%;
}

.expertise-cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(184, 134, 11, 0.4);
	color: #fff;
}

.expertise-cta-button i {
	transition: transform 0.3s ease;
}

.expertise-cta-button:hover i {
	transform: translateX(5px);
}

.expertise-stats {
	display: flex;
	gap: 25px;
}

.stat-box {
	text-align: left;
}

.stat-box-number {
	font-size: 26px;
	font-weight: 800;
	background: linear-gradient(135deg, #B8860B 0%, #FFD700 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 5px;
}

.stat-box-label {
	font-size: 12px;
	color: #666;
	font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1200px) {
	.expertise-grid {
		grid-template-columns: 1fr;
		gap: 60px;
	}
	.expertise-image-wrapper {
		min-height: 500px;
	}
	.expertise-badge-float {
		right: 20px;
		bottom: 20px;
	}
	.expertise-container {
		padding: 0 20px;
	}
}

@media (max-width: 768px) {
	.expertise-showcase-section {
		padding: 80px 0;
	}
	.expertise-container {
		padding: 0 15px;
	}
	.expertise-title {
		font-size: 32px;
	}
	.expertise-items-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.expertise-image-wrapper {
		min-height: 400px;
	}
	.expertise-cta {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
	.expertise-stats {
		width: 100%;
		justify-content: space-around;
	}
	.badge-number {
		font-size: 36px;
	}
	.expertise-badge-float {
		padding: 20px 30px;
	}
	.expertise-item {
		padding: 18px 16px;
	}
	.expertise-icon {
		width: 50px;
		height: 50px;
	}
	.expertise-icon i {
		font-size: 24px;
	}
}
