/* Home Page Promotional Banner Styles */
.home-promo-banner {
	position: relative;
	width: 100%;
	min-height: 500px;
	background: linear-gradient(135deg, #ff6b35 0%, #ffa500 50%, #ffd700 100%);
	overflow: hidden;
	padding: 60px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.home-promo-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

.banner-container {
	position: relative;
	max-width: 1200px;
	width: 100%;
	z-index: 2;
}

.banner-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.brand-section {
	display: flex;
	align-items: center;
	gap: 20px;
}

.brand-logo {
	width: 80px;
	height: 80px;
	background: #d32f2f;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	font-size: 14px;
	text-align: center;
	line-height: 1.2;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	padding: 5px;
}

.brand-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 50%;
}

.brand-logo .est {
	font-size: 10px;
	display: block;
}

.brand-info {
	color: white;
}

.brand-info .brand-name-zh {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 5px;
}

.brand-info .brand-name-en {
	font-size: 14px;
	opacity: 0.9;
}

.partnership-logos {
	display: flex;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
}

.partner-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, 0.2);
	padding: 10px 15px;
	border-radius: 25px;
	backdrop-filter: blur(10px);
}

.partner-logo img {
	height: 30px;
	width: auto;
}

.partner-logo-text {
	color: white;
	font-size: 14px;
	font-weight: 500;
}

.promo-bubbles-container {
	position: relative;
	margin: 40px 0;
}

.promo-title {
	text-align: center;
	margin-bottom: 30px;
}

.promo-title h2 {
	color: #ffeb3b;
	font-size: 48px;
	font-weight: bold;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
	margin: 0;
}

.promo-bubbles {
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	position: relative;
}

.promo-bubble {
	background: #ff69b4;
	border-radius: 30px;
	padding: 25px 35px;
	color: white;
	font-weight: bold;
	text-align: center;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	position: relative;
	transform: perspective(1000px) rotateY(-5deg);
	transition: transform 0.3s ease;
	flex: 1;
	min-width: 200px;
	max-width: 300px;
}

.promo-bubble:hover {
	transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

.promo-bubble.left {
	background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
}

.promo-bubble.center {
	background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
	font-size: 32px;
	padding: 30px 40px;
}

.promo-bubble.right {
	background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
}

.promo-bubble .bubble-text {
	font-size: 24px;
	line-height: 1.3;
	margin-bottom: 8px;
}

.promo-bubble .bubble-subtext {
	font-size: 16px;
	opacity: 0.9;
}

.promo-bubble .asterisk {
	font-size: 12px;
	position: absolute;
	top: 10px;
	right: 15px;
}

.banner-cta {
	text-align: center;
	margin-top: 40px;
}

.cta-button {
	display: inline-block;
	background: #ff6b35;
	color: white;
	padding: 18px 50px;
	border-radius: 50px;
	font-size: 20px;
	font-weight: bold;
	text-decoration: none;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
	border: 2px solid white;
}

.cta-button:hover {
	background: white;
	color: #ff6b35;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.decorative-elements {
	position: absolute;
	bottom: 20px;
	right: 20px;
	display: flex;
	gap: 10px;
	opacity: 0.3;
}

.decorative-elements .circle,
.decorative-elements .plus {
	width: 20px;
	height: 20px;
	background: white;
	border-radius: 50%;
}

.decorative-elements .plus {
	border-radius: 0;
	position: relative;
}

.decorative-elements .plus::before,
.decorative-elements .plus::after {
	content: '';
	position: absolute;
	background: white;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.decorative-elements .plus::before {
	width: 2px;
	height: 12px;
}

.decorative-elements .plus::after {
	width: 12px;
	height: 2px;
}

.carousel-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.3);
	border: none;
	color: white;
	font-size: 24px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10;
}

.carousel-nav:hover {
	background: rgba(255, 255, 255, 0.5);
}

.carousel-nav.left {
	left: 20px;
}

.carousel-nav.right {
	right: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
	.home-promo-banner {
		padding: 40px 15px;
		min-height: auto;
	}
	
	.banner-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
	
	.promo-title h2 {
		font-size: 32px;
	}
	
	.promo-bubbles {
		flex-direction: column;
	}
	
	.promo-bubble {
		width: 100%;
		max-width: 100%;
	}
	
	.promo-bubble.center {
		font-size: 28px;
	}
	
	.cta-button {
		padding: 15px 40px;
		font-size: 18px;
	}
}

