/* ========== Floating Button (WhatsApp/Call) ========== */
.mea-fab-wrap {
	position: fixed;
	bottom: 24px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.mea-fab-right { right: 24px; align-items: flex-end; }
.mea-fab-left  { left: 24px; align-items: flex-start; }

.mea-fab-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	color: #fff !important;
	box-shadow: 0 4px 14px rgba(0,0,0,.25);
	text-decoration: none;
	position: relative;
	transition: transform .25s ease;
}
.mea-fab-btn:hover { transform: scale(1.08); }
.mea-fab-btn[data-tooltip]:hover::after {
	content: attr(data-tooltip);
	position: absolute;
	right: 110%;
	top: 50%;
	transform: translateY(-50%);
	background: #1a1a1a;
	color: #fff;
	padding: 4px 10px;
	border-radius: 4px;
	font-size: 12px;
	white-space: nowrap;
}
.mea-fab-left .mea-fab-btn[data-tooltip]:hover::after { right: auto; left: 110%; }

.mea-fab-pulse::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: inherit;
	z-index: -1;
	animation: mea-pulse 1.8s infinite;
}
@keyframes mea-pulse {
	0%   { transform: scale(1); opacity: .6; }
	70%  { transform: scale(1.9); opacity: 0; }
	100% { transform: scale(1.9); opacity: 0; }
}

/* ========== Shimmer Headline ========== */
.mea-shimmer-text {
	display: inline-block;
	background-size: 200% auto;
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: mea-shimmer linear infinite;
	margin: 0;
}
@keyframes mea-shimmer {
	0%   { background-position: 200% center; }
	100% { background-position: -200% center; }
}

/* ========== 3D Text Marquee ========== */
.mea-marquee-3d-wrap { overflow: hidden; width: 100%; }
.mea-marquee-3d-inner { transform-style: preserve-3d; }
.mea-marquee-track {
	display: flex;
	width: max-content;
	white-space: nowrap;
	animation: mea-marquee-ltr linear infinite;
}
.mea-marquee-track span {
	font-size: 48px;
	font-weight: 800;
	text-transform: uppercase;
	padding-right: 40px;
	color: transparent;
	-webkit-text-stroke: 1px #ddd;
}
.mea-marquee-rtl { animation-name: mea-marquee-rtl; }
@keyframes mea-marquee-ltr { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes mea-marquee-rtl { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

/* ========== Sticky ========== */
.mea-is-sticky.mea-stuck { padding-top: 8px; padding-bottom: 8px; }

/* ========== Pricing Table ========== */
.mea-pricing-table {
	position: relative;
	text-align: center;
	border: 1px solid #eee;
	border-radius: 12px;
	padding: 40px 24px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.mea-pt-ribbon {
	position: absolute;
	top: 16px;
	right: -8px;
	color: #fff;
	font-size: 12px;
	padding: 4px 14px;
	border-radius: 4px 0 0 4px;
}
.mea-pt-heading { margin: 0 0 16px; font-size: 20px; }
.mea-pt-price { font-size: 42px; font-weight: 800; color: #1a1a1a; margin-bottom: 24px; }
.mea-pt-currency, .mea-pt-period { font-size: 16px; font-weight: 500; vertical-align: middle; }
.mea-pt-features { list-style: none; margin: 0 0 28px; padding: 0; text-align: left; }
.mea-pt-features li { padding: 8px 0; border-bottom: 1px solid #f3f3f3; display: flex; align-items: center; gap: 8px; }
.mea-pt-yes i { color: #27ae60; }
.mea-pt-no  i { color: #e74c3c; }
.mea-pt-btn {
	display: inline-block;
	color: #fff !important;
	padding: 12px 32px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
}

/* ========== Countdown ========== */
.mea-countdown { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.mea-cd-box {
	min-width: 80px;
	padding: 16px 12px;
	border-radius: 8px;
	text-align: center;
}
.mea-cd-number { display: block; font-size: 32px; font-weight: 800; }
.mea-cd-label { display: block; font-size: 12px; color: #999; margin-top: 4px; text-transform: uppercase; }

/* ========== Flip Box ========== */
.mea-flip-box { perspective: 1000px; height: 260px; }
.mea-flip-inner {
	position: relative;
	width: 100%;
	height: 100%;
	transition: transform .6s;
	transform-style: preserve-3d;
}
.mea-flip-box:hover .mea-flip-inner { transform: rotateY(180deg); }
.mea-flip-front, .mea-flip-back {
	position: absolute;
	inset: 0;
	backface-visibility: hidden;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	padding: 24px;
	text-align: center;
}
.mea-flip-front i { font-size: 40px; margin-bottom: 16px; }
.mea-flip-back { transform: rotateY(180deg); }
.mea-flip-back a { color: #fff; text-decoration: underline; margin-top: 12px; display: inline-block; }

/* ========== Image Accordion ========== */
.mea-img-accordion { display: flex; width: 100%; overflow: hidden; border-radius: 10px; }
.mea-img-accordion-panel {
	flex: 1;
	background-size: cover;
	background-position: center;
	position: relative;
	transition: flex .5s ease;
	min-width: 40px;
	display: flex;
	align-items: flex-end;
	cursor: pointer;
}
.mea-img-accordion-panel:hover { flex: 3; }
.mea-img-accordion-panel::before {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,.6), transparent 60%);
}
.mea-img-accordion-title {
	position: relative;
	color: #fff;
	padding: 16px;
	font-weight: 700;
	writing-mode: vertical-rl;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.mea-img-accordion-panel:hover .mea-img-accordion-title { writing-mode: horizontal-tb; }

/* ========== Animated Text ========== */
.mea-animated-text { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; font-size: 28px; font-weight: 700; }
.mea-rotating-wrap { display: inline-block; min-width: 1px; }
