/**
 * Leader Connect Section - Kết nối lãnh đạo
 * CTA section cuối trang CEO
 * Scoped hoàn toàn bằng .leader-connect-section để không ảnh hưởng global.
 */

/* --- 1. SETUP --- */
.leader-connect-section {
	width: 100%;
	padding: 80px 20px;
	background-color: #f8fafc; /* Trắng xám cực nhẹ */
	font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	position: relative;
}

.leader-connect-section__wrapper {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	position: relative;
}

/* --- 2. CTA CARD --- */
.leader-connect-section__card {
	position: relative;
	/* Gradient xanh cyan-blue giống trang Shopee CTA */
	background: linear-gradient(180deg, #0FDEC9 0%, #001BE6 40%);
	border-radius: 40px;
	padding: 70px;
	overflow: hidden;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	
	/* Bóng đổ lớn, mềm mại */
	box-shadow: 0 30px 60px -15px rgba(0, 27, 230, 0.35),
				0 0 20px rgba(0, 27, 230, 0.1);
	
	transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hiệu ứng nổi lên khi di chuột vào cả khối */
.leader-connect-section__card:hover {
	transform: translateY(-5px) scale(1.005);
	box-shadow: 0 40px 80px -15px rgba(0, 27, 230, 0.45);
}

/* --- 3. BACKGROUND ANIMATION (HỌA TIẾT) --- */
/* Các vòng tròn mờ trang trí */
.leader-connect-section__circle-deco {
	position: absolute;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.02);
	z-index: 1;
	pointer-events: none;
}

.leader-connect-section__circle-deco--1 {
	width: 300px;
	height: 300px;
	top: -100px;
	left: -50px;
}

.leader-connect-section__circle-deco--2 {
	width: 500px;
	height: 500px;
	bottom: -200px;
	right: -100px;
	border-color: rgba(255, 255, 255, 0.05);
}

.leader-connect-section__circle-deco--3 {
	width: 150px;
	height: 150px;
	top: 40px;
	right: 40%;
	background: radial-gradient(rgba(255, 255, 255, 0.2), transparent);
	filter: blur(40px);
}

/* --- 4. TEXT CONTENT --- */
.leader-connect-section__text {
	position: relative;
	z-index: 2;
	max-width: 550px;
	color: #fff;
	flex: 1;
}

.leader-connect-section__text h2 {
	font-size: 2.8rem;
	font-weight: 800;
	line-height: 1.15;
	margin-bottom: 20px;
	letter-spacing: -1px;
	color: #ffffff;
}

.leader-connect-section__text p {
	font-size: 1.15rem;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 400;
	line-height: 1.6;
	margin: 0;
}

/* --- 5. BUTTONS (NÚT BẤM) --- */
.leader-connect-section__buttons {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 0;
	min-width: 280px;
	flex-shrink: 0;
}

/* Nút Chính: Trắng nổi bật - Chỉ có 1 nút */
.leader-connect-section__btn-main {
	background: #ffffff;
	color: #0f172a;
	padding: 22px 35px;
	border-radius: 20px;
	font-size: 1.2rem;
	font-weight: 700;
	text-decoration: none;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	border: none;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.leader-connect-section__btn-main:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
	background: #f8fafc;
	color: #0f172a;
	text-decoration: none;
}

.leader-connect-section__btn-main i {
	color: #0038FF;
	font-size: 1.1rem;
}

/* Ẩn nút phụ */
.leader-connect-section__btn-sub {
	display: none;
}

/* --- 6. RESPONSIVE --- */
@media (max-width: 900px) {
	.leader-connect-section {
		padding: 60px 16px;
	}

	.leader-connect-section__card {
		flex-direction: column;
		text-align: center;
		padding: 50px 30px;
		gap: 30px;
	}

	.leader-connect-section__text {
		margin-bottom: 0;
		max-width: 100%;
	}

	.leader-connect-section__text h2 {
		font-size: 2.2rem;
	}

	.leader-connect-section__text p {
		font-size: 1.05rem;
	}

	.leader-connect-section__buttons {
		width: 100%;
		min-width: auto;
	}

	.leader-connect-section__btn-main,
	.leader-connect-section__btn-sub {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.leader-connect-section__card {
		padding: 40px 24px;
	}

	.leader-connect-section__text h2 {
		font-size: 1.9rem;
		margin-bottom: 16px;
	}

	.leader-connect-section__text p {
		font-size: 1rem;
	}

	.leader-connect-section__btn-main {
		padding: 18px 24px;
		font-size: 1rem;
	}

	.leader-connect-section__btn-sub {
		padding: 16px 24px;
		font-size: 0.95rem;
	}
}

























