/**
 * CEO – Nguyên tắc điều hành
 * Cinematic leadership quote section
 *
 * Scoped hoàn toàn bằng .ceo-principle để không ảnh hưởng global.
 */

/* --- 1. SETUP BACKGROUND & ANIMATION --- */
.ceo-principle {
	position: relative;
	padding: 80px 20px;
	background: linear-gradient(180deg, #0FDEC9 0%, #001BE6 30%);
	color: #fff;
	overflow: hidden;
	font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	width: 100%;
	max-width: 100%;
	margin: 0;
}

/* Đốm sáng nền (Ambient Light Blobs) */
.ceo-principle__ambient-light {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	z-index: 0;
	opacity: 0.6;
	animation: ceo-principle-float-light 10s infinite alternate ease-in-out;
	pointer-events: none;
}

.ceo-principle__blob-1 {
	width: 400px;
	height: 400px;
	background: #0FDEC9;
	top: -100px;
	left: -100px;
	opacity: 0.3;
}

.ceo-principle__blob-2 {
	width: 300px;
	height: 300px;
	background: #001BE6;
	bottom: -50px;
	right: -50px;
	animation-delay: -5s;
	opacity: 0.3;
}

@keyframes ceo-principle-float-light {
	0% { transform: translate(0, 0) scale(1); }
	100% { transform: translate(30px, 50px) scale(1.1); }
}

/* --- 2. CARD STYLE (GLASSMORPHISM CAO CẤP) --- */
.ceo-principle__container {
	position: relative;
	max-width: 900px;
	width: 100%;
	margin: 0 auto;
	padding: 80px 60px;
	
	/* Hiệu ứng kính - Giống value-card */
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	
	/* Viền siêu mỏng tinh tế */
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-top: 1px solid rgba(255, 255, 255, 0.2); /* Cạnh trên sáng hơn giả lập ánh sáng */
	border-radius: 40px;
	
	/* Bóng đổ mềm */
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	
	text-align: center;
	animation: ceo-principle-card-float 6s ease-in-out infinite;
}

@keyframes ceo-principle-card-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

/* --- 3. TYPOGRAPHY & ELEMENTS --- */

/* Icon Quote Lớn Chìm */
.ceo-principle__quote-mark {
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	font-size: 180px;
	line-height: 1;
	color: rgba(255, 255, 255, 0.02); /* Gần như trong suốt */
	pointer-events: none;
	z-index: 0;
}

/* Nhãn Tiêu Đề */
.ceo-principle__label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: rgba(255, 255, 255, 0.2);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 30px;
	color: #ffffff;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 40px;
	position: relative;
	z-index: 1;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(10px);
}

.ceo-principle__label i {
	font-size: 0.7rem;
}

/* Nội Dung Quote */
.ceo-principle__content {
	position: relative;
	z-index: 1;
	margin: 0;
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	font-style: italic;
	font-size: 2.8rem;
	line-height: 1.4;
	color: #ffffff;
	text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Điểm nhấn (Highlight) */
.ceo-principle__highlight {
	position: relative;
	color: #fff;
	font-weight: 700;
	white-space: nowrap;
	/* Text Gradient xanh lá - Sang trọng */
	background: linear-gradient(to right, #05e196, #02f4f9);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Gạch chân Neon */
.ceo-principle__highlight::after {
	content: '';
	position: absolute;
	bottom: 4px;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, transparent, #05e196, #02f4f9, transparent);
	box-shadow: 0 0 20px #05e196;
}

/* Tác giả / Chữ ký */
.ceo-principle__author {
	margin-top: 40px;
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 300;
	letter-spacing: 1px;
	position: relative;
	z-index: 1;
}

.ceo-principle__author span {
	color: #ffffff;
	font-weight: 700;
	font-size: 1.3rem;
}

/* Dấu ngoặc kép nhỏ trang trí 2 bên */
.ceo-principle__content::before,
.ceo-principle__content::after {
	content: '"';
	color: #05e196;
	font-size: 1.5em;
	vertical-align: -0.2em;
	opacity: 0.8;
}

.ceo-principle__content::before {
	margin-right: 10px;
}

.ceo-principle__content::after {
	margin-left: 10px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
	.ceo-principle {
		padding: 50px 20px;
	}

	.ceo-principle__container {
		padding: 50px 30px;
		border-radius: 30px;
	}

	.ceo-principle__content {
		font-size: 1.6rem;
	}

	.ceo-principle__quote-mark {
		font-size: 120px;
	}

	.ceo-principle__blob-1,
	.ceo-principle__blob-2 {
		opacity: 0.4;
	}
}
