/**
 * CEO Leadership Page Styles
 * 
 * Styles for the CEO - Đội ngũ lãnh đạo page template
 *
 * @package TabcomGroup
 */

/* --- 1. CẤU HÌNH CHUNG & NỀN --- */

/* Background pattern áp dụng cho body khi ở trang CEO */
body.ceo-leadership-body {
	font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background-color: #f8faff;
	/* Thêm họa tiết nền mờ */
	background-image: radial-gradient(#e1e7f5 1px, transparent 1px);
	background-size: 30px 30px;
	color: #333;
	overflow-x: hidden;
}

.ceo-leadership-page {
	padding: 60px 20px;
}

.ceo-leadership-page .container {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}

/* --- 2. HEADER VIÊN THUỐC (Nâng cấp) --- */

.ceo-leadership-page .section-header-wrapper {
	text-align: center;
	margin-bottom: 70px;
	position: relative;
}

.ceo-leadership-page .section-header {
	background: linear-gradient(180deg, #0FDEC9 0%, #001BE6 30%);
	color: white;
	padding: 18px 50px;
	border-radius: 50px;
	display: inline-block;
	box-shadow: 0 10px 25px rgba(0, 27, 230, 0.3);
	position: relative;
	z-index: 2;
}

.ceo-leadership-page .section-header h2 {
	margin: 0;
	text-transform: uppercase;
	font-size: 26px;
	font-weight: 800;
	letter-spacing: 1px;
	color: #ffffff !important;
	font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* --- 3. BỐ CỤC CHÍNH (Card Style) --- */

.ceo-leadership-page .leader-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
	background: rgba(255, 255, 255, 0.8); /* Nền trắng mờ */
	backdrop-filter: blur(10px); /* Hiệu ứng kính */
	border-radius: 30px;
	/* Tăng padding-top để không cắt phần đầu, cho phép ảnh vượt lên */
	padding: 70px 50px 50px;
	box-shadow: 0 20px 50px rgba(0,0,0,0.05); /* Bóng đổ mềm */
	border: 1px solid rgba(255,255,255,0.5);
	position: relative;
	overflow: visible; /* Cho phép đầu ảnh tràn ra mà không bị cắt */
}

/* --- 4. CẤU TRÚC ẢNH POP-OUT (FINAL) --- */

/* Khung ngoài (480x480) chứa toàn bộ hiệu ứng */
.ceo-leadership-page .image-container-outer {
	position: relative;
	width: 480px;
	height: 480px;
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: flex-end; /* Căn nội dung xuống đáy */
}

/* A. Vòng tròn trang trí phía sau */
.ceo-leadership-page .circle-decoration {
	position: absolute;
	width: 115%;
	height: 115%;
	border: 2px dashed #dbe2ff;
	border-radius: 50%;
	z-index: 0;
	bottom: -7.5%;
	left: -7.5%;
	animation: spinSlow 25s linear infinite;
}

/* B. Vòng tròn nền màu xanh (cố định 480x480) */
.ceo-leadership-page .circle-bg {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	z-index: 1;
	background: linear-gradient(
		to bottom,
		rgba(255,255,255,0) 25%,
		rgba(15, 46, 222, 0.15) 50%,
		#0e28c5 100%
	);
	box-shadow: 0 15px 40px rgba(15, 46, 222, 0.4);
	animation: pulseGlow 4s infinite ease-in-out;
}

/* C. Hộp mask dạng "ống nghiệm" – giúp đầu nổi, chân bị che mềm */
.ceo-leadership-page .image-mask-box {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 120%; /* Giảm bớt để không cắt phần đầu */
	z-index: 2;
	overflow: hidden;
	/* Góc trên vuông, góc dưới tròn theo bán kính 240px (1/2 width) */
	border-radius: 0 0 240px 240px;
	pointer-events: none; /* Phần rỗng phía trên không chặn click */
}

/* D. Ảnh chân dung bên trong hộp mask */
.ceo-leadership-page .portrait-img {
	position: absolute;
	bottom: 0; /* Không đẩy xuống để giữ đủ phần đầu */
	left: 50%;
	transform: translateX(-50%);
	width: auto;
	height: 100%; /* Điền đầy hộp mask (120% so với vòng tròn), tránh mất đầu */
	object-fit: cover;
	filter: drop-shadow(0 5px 15px rgba(0,0,0,0.25));
	animation: floatImage 4s ease-in-out infinite;
	pointer-events: auto; /* Cho phép tương tác với ảnh */
}

/* E. Lớp phủ mờ phần chân để hòa với nền */
.ceo-leadership-page .bottom-fade-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 28%; /* Giảm overlay để không ăn vào đầu */
	background: linear-gradient(to top, #0e28c5 25%, transparent 100%);
	z-index: 3;
	opacity: 0.7;
	border-radius: 0 0 240px 240px;
}

/* --- 5. CỘT THÔNG TIN --- */

.ceo-leadership-page .info-wrapper {
	flex-grow: 1;
	position: relative;
}

/* ========================================================================== */
/* SECTION 2 – HÀNH TRÌNH CEO (Neon Timeline) */
/* ========================================================================== */

.ceo-journey {
	margin: 80px auto 0;
	margin-bottom: 60px;
	max-width: 960px;
	padding: 50px 40px 20px;
	background: linear-gradient(135deg, #f8faff 0%, #e6f3ff 100%);
	border-radius: 24px;
	box-shadow: 0 18px 60px rgba(0, 0, 0, 0.12);
	border: 1px solid rgba(14,40,197,0.06);
	color: #333;
	overflow: hidden;
}

.ceo-journey__header {
	text-align: center;
	margin-bottom: 50px;
	animation: cj-fade-in 1s ease-out;
}

.ceo-journey__header h2 {
	font-size: 36px;
	font-weight: 800;
	letter-spacing: -0.5px;
	margin-bottom: 12px;
	color: #0038FF;
	font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.ceo-journey__subtitle {
	font-size: 18px;
	color: #666;
	font-weight: 400;
	font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.ceo-journey__timeline {
	position: relative;
	padding: 10px 0 20px;
	padding-left: 30px;
}

/* Ẩn đường thẳng chính - sẽ dùng pseudo element trên mỗi item */
.ceo-journey__timeline::before {
	display: none;
}

/* Đường nối giữa các icon - không chạm vào icon */
.ceo-journey__item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 40px;
	position: relative;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Đường thẳng nối từ icon này đến icon tiếp theo */
.ceo-journey__item::before {
	content: '';
	position: absolute;
	left: 24px;
	top: 55px; /* Bắt đầu từ dưới icon (50px + 5px gap) */
	width: 3px;
	height: calc(100% + 40px - 55px); /* Chiều cao = khoảng cách item - phần icon */
	background: #0038FF;
	border-radius: 3px;
	z-index: 0;
}

/* Ẩn đường nối ở item cuối cùng */
.ceo-journey__item:last-child::before {
	display: none;
}

.ceo-journey__item.active {
	opacity: 1;
	transform: translateY(0);
}

.ceo-journey__icon-box {
	width: 50px;
	height: 50px;
	background: #ffffff;
	border: 3px solid #0038FF ;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
	flex-shrink: 0;
	margin-right: 25px;
	color: #0038FF ;
	font-size: 1.3rem;
	box-shadow: 0 4px 15px rgba(5, 119, 225, 0.25);
	position: relative;
	transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.ceo-journey__icon-box::after {
	display: none;
}

.ceo-journey__item:hover .ceo-journey__icon-box {
	transform: scale(1.1);
	background: #0038FF ;
	color: #ffffff;
	box-shadow: 0 6px 20px rgba(5, 126, 225, 0.4);
}

.ceo-journey__card {
	flex-grow: 1;
	background: #f8fafc;
	padding: 25px 30px;
	border-radius: 16px;
	border: 1px solid #e5e7eb;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.4s ease;
	position: relative;
	overflow: visible;
}

.ceo-journey__card:hover {
	transform: translateY(-3px);
	border-color: #05e196;
	box-shadow: 0 10px 30px rgba(5, 225, 150, 0.15);
}

.ceo-journey__card::before {
	display: none;
}

.ceo-journey__card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
	gap: 12px;
	overflow: visible;
}

.ceo-journey__card h3 {
	font-size: 20px;
	color: #1a1a2e;
	font-weight: 700;
	font-style: normal;
	line-height: 1.4;
	margin: 0;
	overflow: visible;
}

.ceo-journey__tag {
	font-size: 12px;
	padding: 6px 14px;
	border-radius: 20px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	background: rgba(5, 225, 150, 0.15);
	color: #059669;
	border: 1px solid rgba(5, 225, 150, 0.3);
	white-space: nowrap;
}

.ceo-journey__card p {
	color: #555;
	line-height: 1.7;
	font-size: 17px;
	margin: 0;
}

/* Animations */
@keyframes cj-fade-in {
	from { opacity: 0; transform: translateY(-20px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes cj-pulse-ring {
	0% { transform: scale(0.8); opacity: 0; }
	50% { opacity: 1; }
	100% { transform: scale(1.5); opacity: 0; }
}

/* Responsive */
@media (max-width: 992px) {
	.ceo-journey {
		margin-top: 60px;
		padding: 35px 25px 15px;
	}
	.ceo-journey__header h2 {
		font-size: 30px;
	}
}

@media (max-width: 768px) {
	.ceo-journey__header h2 { font-size: 26px; }
	.ceo-journey__subtitle { font-size: 16px; }
	.ceo-journey__timeline { padding-left: 20px; }
	.ceo-journey__timeline::before { left: 19px; }
	.ceo-journey__icon-box { width: 42px; height: 42px; margin-right: 18px; font-size: 1.1rem; }
	.ceo-journey__card {
		padding: 20px;
	}
	.ceo-journey__tag { display: none; }
	.ceo-journey__card h3 { font-size: 18px; }
	.ceo-journey__card p { font-size: 15px; }
}

/* Fallback an toàn */
.ceo-journey__card h3,
.ceo-journey__card p {
	padding-left: 0;
}

/* Tên lãnh đạo: Gradient Text */
.ceo-leadership-page .leader-name {
	font-size: 48px;
	font-weight: 900;
	margin: 0 0 10px 0;
	background: linear-gradient(180deg, #0FDEC9 0%, #001BE6 30%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.2;
	font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.ceo-leadership-page .leader-title {
	font-size: 18px;
	color: #05e196; /* Màu xanh lá tạo điểm nhấn */
	margin-bottom: 25px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: inline-block;
	padding-bottom: 5px;
	border-bottom: 2px solid #05e196;
	font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Mạng xã hội */
.ceo-leadership-page .social-icons {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	gap: 15px;
	margin-bottom: 30px;
}

.ceo-leadership-page .social-icon {
	width: 55px;
	height: 55px;
	background: linear-gradient(135deg, #0FDEC9 0%, #001BE6 100%);
	color: white;
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 8px 20px rgba(0, 27, 230, 0.3);
	font-size: 20px;
}

.ceo-leadership-page .social-icon:hover {
	background: linear-gradient(135deg, #05e196 0%, #08de7d 100%);
	color: white;
	transform: translateY(-5px) scale(1.1);
	box-shadow: 0 12px 25px rgba(5, 225, 150, 0.4);
}

.ceo-leadership-page .social-icon:focus {
	outline: 2px solid #0F2EDE;
	outline-offset: 2px;
}

/* Nút kết nối (CTA) */
.ceo-leadership-page .btn-connect {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(90deg, #0F2EDE 0%, #0e28c5 100%);
	color: #fff;
	text-decoration: none;
	padding: 12px 35px;
	border-radius: 30px;
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 30px;
	box-shadow: 0 5px 15px rgba(15, 46, 222, 0.3);
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.ceo-leadership-page .btn-connect i {
	font-size: 18px;
}

.ceo-leadership-page .btn-connect:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(15, 46, 222, 0.5);
	background: linear-gradient(90deg, #05e196 0%, #08de7d 100%);
	color: #fff;
}

/* Nội dung bio */
.ceo-leadership-page .leader-bio {
	font-size: 17px;
	line-height: 1.8;
	color: #555;
	text-align: justify;
	background: #fff;
	padding: 25px;
	border-radius: 0 20px 20px 20px;
	border-left: 5px solid #0F2EDE; /* Điểm nhấn viền trái */
	box-shadow: 0 5px 20px rgba(0,0,0,0.03);
	position: relative;
}

/* Dấu ngoặc kép trang trí */
.ceo-leadership-page .leader-bio::before {
	content: '\f10d'; /* FontAwesome Quote Icon */
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	top: -20px;
	left: 20px;
	font-size: 30px;
	color: #0F2EDE;
	background: white;
	padding: 0 10px;
}

.ceo-leadership-page .leader-bio p {
	margin: 0 0 1em 0;
}

.ceo-leadership-page .leader-bio p:last-child {
	margin-bottom: 0;
}

/* --- 6. ANIMATIONS (KEYFRAMES) --- */

/* Dùng translateX(-50%) để giữ ảnh căn giữa tuyệt đối trong mask-box */
@keyframes floatImage {
	0% { transform: translateX(-50%) translateY(0); }
	50% { transform: translateX(-50%) translateY(-8px); } /* Giảm biên độ để đầu không thoát mask */
	100% { transform: translateX(-50%) translateY(0); }
}

@keyframes pulseGlow {
	0% { transform: scale(1); box-shadow: 0 15px 35px rgba(16, 52, 214, 0.4); }
	50% { transform: scale(1.02); box-shadow: 0 15px 50px rgba(16, 52, 214, 0.6); }
	100% { transform: scale(1); box-shadow: 0 15px 35px rgba(16, 52, 214, 0.4); }
}

@keyframes spinSlow {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

/* --- 7. RESPONSIVE --- */

@media (max-width: 992px) {
	.ceo-leadership-page {
		padding: 40px 15px;
	}
	
	.ceo-leadership-page .leader-card {
		flex-direction: column;
		padding: 30px 20px;
		text-align: center;
		gap: 50px;
	}

	/* Mobile size cho khung pop-out */
	.ceo-leadership-page .image-container-outer {
		width: 340px;
		height: 340px;
	}

	/* Bo tròn đáy cho mask & overlay theo kích thước mobile (170px = 1/2 của 340px) */
	.ceo-leadership-page .image-mask-box {
	border-radius: 0 0 170px 170px;
	height: 125%; /* tăng nhẹ để đầu không bị cắt trên mobile */
	}

	.ceo-leadership-page .bottom-fade-overlay {
		border-radius: 0 0 170px 170px;
	height: 30%;
	}
	
	.ceo-leadership-page .leader-name { 
		font-size: 32px; 
	}
	
	.ceo-leadership-page .leader-bio {
		text-align: center;
		border-left: none;
		border-top: 5px solid #1034d6;
		border-radius: 0 0 20px 20px;
	}
	
	.ceo-leadership-page .social-icons { 
		justify-content: center; 
	}
	
	.ceo-leadership-page .leader-bio::before { 
		left: 50%; 
		transform: translateX(-50%); 
	}
}

@media (max-width: 576px) {
	.ceo-leadership-page .section-header {
		padding: 15px 30px;
	}
	
	.ceo-leadership-page .section-header h2 {
		font-size: 20px;
	}
	
	.ceo-leadership-page .leader-name {
		font-size: 28px;
	}
	
	.ceo-leadership-page .image-wrapper {
		width: 250px;
		height: 250px;
	}
}

/* ========================================================================== */
/* SECTION – HOẠT ĐỘNG CỘNG ĐỒNG & TRUYỀN THÔNG */
/* ========================================================================== */

/* Community Section - NỀN TRẮNG */
.community-section {
	padding: 80px 0;
	background: #fff;
}

.community-section .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.community-section .section-header {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-bottom: 50px;
	flex-wrap: wrap;
	gap: 20px;
}

.community-section .section-title {
	flex: 1;
	text-align: center;
	background: none;
	box-shadow: none;
	padding: 0;
	border-radius: 0;
}

.community-section .section-title h2 {
	font-size: 38px;
	font-weight: 800;
	color: #ffffff !important;
	margin: 0;
	display: inline-block;
	padding: 0;
	background: none;
	border-radius: 0;
	box-shadow: none;
	font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.community-section .section-title p {
	font-size: 18px;
	color: #555;
	margin: 20px 0 0 0;
	font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.community-section .social-group {
	display: flex;
	gap: 12px;
}

.community-section .social-btn {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 18px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.community-section .btn-shopee {
	background: linear-gradient(135deg, #ee4d2d 0%, #ff6633 100%);
}

.community-section .btn-tiktok {
	background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.community-section .btn-youtube {
	background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.community-section .social-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Gallery Grid */
.community-section .gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 200px;
	gap: 15px;
}

.community-section .gallery-item {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
}

.community-section .gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.community-section .gallery-item:hover img {
	transform: scale(1.1);
}

.community-section .gallery-item .overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
	background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
	color: #fff;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.community-section .gallery-item:hover .overlay {
	opacity: 1;
}

.community-section .gallery-item .overlay h3 {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 5px 0;
}

.community-section .gallery-item .overlay p {
	font-size: 13px;
	margin: 0;
	opacity: 0.8;
}

.community-section .gallery-item.span-2-2 {
	grid-column: span 2;
	grid-row: span 2;
}

.community-section .gallery-item.span-2-1 {
	grid-column: span 2;
}

.community-section .gallery-item.span-1-2 {
	grid-row: span 2;
}

@media (max-width: 768px) {
	.community-section .section-header {
		flex-direction: column;
		text-align: center;
	}
	
	.community-section .gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 150px;
	}
	
	.community-section .gallery-item.span-2-2,
	.community-section .gallery-item.span-2-1 {
		grid-column: span 2;
	}
}



/* ========================================================================== */
/* SECTION – ĐỘI NGŨ LÃNH ĐẠO (Leaders Section) */
/* ========================================================================== */

/* Leaders Section - NỀN GRADIENT */
.leaders-section {
	padding: 80px 0;
	background: linear-gradient(180deg, #0FDEC9 10%, #0bacd1 50%);
}

.leaders-section__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
}

.leaders-section__header {
	text-align: center !important;
	margin-bottom: 60px;
	width: 100%;
}

.leaders-section__header h2 {
	font-size: 42px;
	font-weight: 800;
	color: #ffffff !important;
	margin-bottom: 16px;
	text-align: center !important;
	display: inline-block;
	padding: 18px 45px;
	background: linear-gradient(135deg, #0FDEC9 0%, #001BE6 100%);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50px;
	box-shadow: 0 8px 25px rgba(0, 27, 230, 0.3);
	font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.leaders-section__header p {
	font-size: 19px;
	color: rgba(255, 255, 255, 0.8) !important;
	max-width: 600px;
	margin-left: auto !important;
	margin-right: auto !important;
	text-align: center !important;
	font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.leaders-section__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

/* Leader Card */
.leaders-section__card {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	transition: all 0.4s ease;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 1px solid rgba(255, 255, 255, 0.5);
}

.leaders-section__card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(0, 56, 255, 0.25);
	border-color: rgba(0, 56, 255, 0.3);
	background: #ffffff;
}

.leaders-section__card-image {
	position: relative;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: linear-gradient(135deg, #e8edff 0%, #f0f4ff 100%);
	flex-shrink: 0;
}

.leaders-section__card-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: bottom center;
	transition: transform 0.5s ease;
}

.leaders-section__card:hover .leaders-section__card-image img {
	transform: scale(1.05);
}

.leaders-section__action-btn {
	position: absolute;
	bottom: 15px;
	right: 15px;
	width: 40px;
	height: 40px;
	background: linear-gradient(180deg, #0FDEC9 0%, #001BE6 30%);
	border: none;
	border-radius: 50%;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 27, 230, 0.3);
}

.leaders-section__action-btn:hover {
	transform: scale(1.1) rotate(90deg);
	box-shadow: 0 8px 20px rgba(16, 52, 214, 0.4);
}

.leaders-section__card-info {
	padding: 22px 18px;
	text-align: center;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.leaders-section__card-info h3 {
	font-size: 20px;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0 0 8px 0;
	line-height: 1.3;
	min-height: auto;
	display: block;
}

.leaders-section__card-role {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #0038FF;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	margin-bottom: 12px;
	line-height: 1.4;
}

.leaders-section__card-desc {
	font-size: 14px;
	color: #555;
	line-height: 1.6;
	margin: 0 0 auto 0;
	min-height: auto;
}

/* Social Links trong Card */
.leaders-section__card-social {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	padding: 15px 0;
	margin-top: 15px;
	border-top: 1px solid rgba(0, 56, 255, 0.15);
	min-height: 60px;
}

.leaders-section__card-social a {
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #0038FF;
	border-radius: 50%;
	color: #ffffff !important;
	font-size: 15px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 56, 255, 0.3);
	position: relative;
}

.leaders-section__card-social a i {
	color: #ffffff !important;
}

.leaders-section__card-social a:hover {
	background: #05e196;
	color: #ffffff !important;
	transform: translateY(-3px) scale(1.1);
	box-shadow: 0 8px 20px rgba(5, 225, 150, 0.4);
}

.leaders-section__card-social a:hover i {
	color: #ffffff !important;
}

.leaders-section__card-social a img {
	width: 18px !important;
	height: 18px !important;
	transition: filter 0.3s ease;
}

.leaders-section__card-social a:hover img {
	filter: brightness(0) invert(1);
}

/* ========================================================================== */
/* MODAL POPUP CHO LÃNH ĐẠO */
/* ========================================================================== */

/* Modal Overlay - full screen backdrop */
.leaders-section__modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(5px);
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.leaders-section__modal-overlay.active {
	display: flex;
}

/* Modal Content Box */
.leaders-section__modal-content {
	position: relative;
	background: linear-gradient(135deg, #0FDEC9 0%, #001BE6 50%, #060C3D 100%);
	border-radius: 24px;
	max-width: 800px;
	width: 100%;
	max-height: 90vh;
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
	animation: modalSlideIn 0.4s ease;
	display: flex;
	gap: 0;
	padding: 0;
}

@keyframes modalSlideIn {
	from {
		opacity: 0;
		transform: translateY(30px) scale(0.95);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.leaders-section__modal-close {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.2);
	border: none;
	border-radius: 50%;
	font-size: 20px;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10;
}

.leaders-section__modal-close:hover {
	background: rgba(255, 255, 255, 0.35);
	color: #fff;
	transform: rotate(90deg);
}

/* Modal Image Column */
.leaders-section__modal-img-col {
	flex-shrink: 0;
	width: 300px;
	min-height: 400px;
	background: linear-gradient(180deg, rgba(15, 222, 201, 0.2) 0%, rgba(0, 27, 230, 0.3) 100%);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	overflow: hidden;
}

.leaders-section__modal-img-col img {
	width: 100%;
	height: auto;
	max-height: 420px;
	object-fit: contain;
	object-position: bottom center;
	border-radius: 0;
	box-shadow: none;
}

/* Modal Text Column */
.leaders-section__modal-text-col {
	flex: 1;
	padding: 40px 30px;
	overflow-y: auto;
}

.leaders-section__modal-name {
	font-size: 28px;
	font-weight: 800;
	color: #fff;
	margin: 0 0 8px 0;
	padding-right: 40px;
}

.leaders-section__modal-role {
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	color: #00e5ff;
	letter-spacing: 0.5px;
	margin-bottom: 20px;
}

/* Modal List */
.leaders-section__modal-list {
	list-style: none;
	padding: 0;
	margin: 0 0 25px 0;
}

.leaders-section__modal-list li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 12px;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
}

.leaders-section__modal-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	background: #00e5ff;
	border-radius: 50%;
}

/* Social Links trong Modal */
.leaders-section__modal-social {
	display: flex;
	gap: 12px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.leaders-section__modal-social a {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: #fff;
	font-size: 18px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.leaders-section__modal-social a:hover {
	background: #0F2EDE;
	color: #fff;
	transform: translateY(-3px);
}

.leaders-section__modal-social a img {
	width: 22px !important;
	height: 22px !important;
	transition: filter 0.3s ease;
}

.leaders-section__modal-social a:hover img {
	filter: brightness(0) invert(1);
}

/* Responsive cho Leaders Section */
@media (max-width: 1100px) {
	.leaders-section__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.leaders-section {
		padding: 60px 0;
	}
	
	.leaders-section__header h2 {
		font-size: 28px;
	}
	
	.leaders-section__grid {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin: 0 auto;
	}
	
	/* Modal responsive */
	.leaders-section__modal-content {
		flex-direction: column;
		padding: 0;
		gap: 0;
		max-height: 95vh;
	}
	
	.leaders-section__modal-img-col {
		width: 100%;
		max-width: none;
		min-height: 220px;
		margin: 0;
	}
	
	.leaders-section__modal-img-col img {
		max-height: 200px;
	}
	
	.leaders-section__modal-text-col {
		padding: 25px 20px;
	}
	
	.leaders-section__modal-name {
		font-size: 22px;
		text-align: left;
		padding-right: 40px;
	}
	
	.leaders-section__modal-role {
		display: block;
		text-align: left;
	}
	
	.leaders-section__modal-list li {
		font-size: 14px;
	}
	
	.leaders-section__modal-social {
		justify-content: flex-start;
	}
}

@media (max-width: 480px) {
	.leaders-section__card-social {
		gap: 10px;
	}
	
	.leaders-section__card-social a {
		width: 32px;
		height: 32px;
		font-size: 12px;
	}
	
	.leaders-section__modal-social a {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}
}


/* ========================================================================== */
/* SECTION – ẢNH CỘNG ĐỒNG BANNER */
/* ========================================================================== */

.ceo-community-banner {
	padding: 60px 0 0 0;
	background: #fff;
	margin: 0;
}

.ceo-community-banner .container {
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
	width: 100%;
}

.community-banner-header {
	text-align: center;
	margin-bottom: 40px;
	padding: 0 20px;
}

.community-banner-title {
	font-size: 38px;
	font-weight: 800;
	color: #fff;
	display: inline-block;
	padding: 18px 45px;
	background: linear-gradient(180deg, #0FDEC9 0%, #001BE6 30%);
	border-radius: 50px;
	box-shadow: 0 8px 25px rgba(0, 27, 230, 0.3);
	margin: 0;
	font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.community-banner-wrapper {
	position: relative;
	border-radius: 0;
	overflow: hidden;
}

.community-banner-img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.community-banner-overlay {
	display: none;
}

@media (max-width: 992px) {
	.community-banner-title {
		font-size: 28px;
		padding: 14px 35px;
	}
}

@media (max-width: 768px) {
	.ceo-community-banner {
		padding: 40px 0 0 0;
	}
	
	.community-banner-title {
		font-size: 22px;
		padding: 12px 25px;
	}
}

/* ========================================================================== */
/* CẬP NHẬT MÀU SẮC CHO CÁC SECTION KHÁC */
/* ========================================================================== */

/* Value Section - NỀN GRADIENT với CARD TRẮNG */
.value-section {
	background: linear-gradient(180deg, #0FDEC9 0%, #001BE6 30%);
	padding: 80px 0;
}

.value-section .value-header {
	text-align: center;
	margin-bottom: 50px;
}

.value-section .value-title {
	color: #fff;
	font-size: 38px;
	font-weight: 800;
	margin-bottom: 15px;
	display: inline-block;
	padding: 18px 45px;
	background: linear-gradient(135deg, #0FDEC9 0%, #001BE6 100%);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50px;
	box-shadow: 0 8px 25px rgba(0, 27, 230, 0.3);
}

.value-section .value-subtitle {
	color: #fff;
	font-size: 19px;
	max-width: 700px;
	margin: 20px auto 0;
	line-height: 1.7;
}

.value-section .value-card {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border-left: none;
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	color: #1a1a2e;
}

.value-section .value-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.value-section .card-icon {
	background: linear-gradient(135deg, #0FDEC9 0%, #001BE6 100%);
	color: #fff;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	margin-bottom: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.value-section .big-stat {
	color: #1a1a2e;
	font-size: 30px;
	font-weight: 800;
	margin-bottom: 5px;
}

.value-section .stat-label {
	color: #0FDEC9;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.value-section .detail-list {
	margin-top: 15px;
	padding-left: 0;
	list-style: none;
}

.value-section .detail-list li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 10px;
	color: #333;
	font-size: 17px;
	line-height: 1.7;
}

.value-section .detail-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 9px;
	width: 8px;
	height: 8px;
	background: #0FDEC9;
	border-radius: 50%;
}

.value-section .value-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

.value-section .value-card.span-2 {
	grid-column: span 2;
}

.value-section .card-image-wrapper {
	margin-top: 15px;
	border-radius: 12px;
	overflow: hidden;
}

.value-section .card-image-wrapper img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.value-section .value-card:hover .card-image-wrapper img {
	transform: scale(1.05);
}

@media (max-width: 992px) {
	.value-section .value-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.value-section .value-card.span-2 {
		grid-column: span 1;
	}
	
	.value-section .value-title {
		font-size: 28px;
		padding: 12px 30px;
	}
}

@media (max-width: 576px) {
	.value-section .value-grid {
		grid-template-columns: 1fr;
	}
	
	.value-section .value-title {
		font-size: 22px;
		padding: 10px 20px;
	}
}

/* Leaders Section Card Role - màu xanh lá */
.leaders-section__card-role {
	color: #059669;
}

/* Action Button - gradient mới */
.leaders-section__action-btn {
	background: linear-gradient(180deg, #0FDEC9 0%, #001BE6 30%);
	box-shadow: 0 5px 15px rgba(0, 27, 230, 0.3);
}

.leaders-section__action-btn:hover {
	box-shadow: 0 8px 20px rgba(0, 27, 230, 0.4);
}

/* Card Social */
.leaders-section__card-social a {
	color: #059669;
}

.leaders-section__card-social a:hover {
	background: linear-gradient(180deg, #0FDEC9 0%, #001BE6 30%);
	box-shadow: 0 5px 15px rgba(0, 27, 230, 0.3);
}

/* Modal */
.leaders-section__modal-list li::before {
	background: #00e5ff;
}

.leaders-section__modal-social a {
	color: #fff;
}

.leaders-section__modal-social a:hover {
	background: #0F2EDE;
	box-shadow: 0 10px 25px rgba(0, 27, 230, 0.3);
}

.leaders-section__modal-role {
	color: #00e5ff;
}

.leaders-section__modal-close:hover {
	background: rgba(255, 255, 255, 0.35);
}
