:root {
	--primary: #7907f4;
	--accent: #03728a;
	--highlight: #d8ef06;
	--dark: #222;
	--hero: url("images/hero_bg.jpg");
}

body {
	margin: 0;
	font-family: Arial, sans-serif;
	background: #f9f9f9;
}

/* URGENCY BAR */
.urgency {
	background: #ff3b3b;
	color: white;
	text-align: center;
	padding: 8px;
	font-weight: bold;
}

/* NAVBAR */
.navbar {
	background: white;
	text-align: center;
	padding: 10px;
	position: sticky;
	top: 0;
	z-index: 999;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.logo {
	max-width: 250px;
	width: 100%;
}

.navbar ul {
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 8px;
	padding: 0;
	margin: 10px 0 0;
	flex-wrap: wrap;
}

.navbar a {
	color: var(--accent);
	text-decoration: none;
	font-weight: bold;
	padding: 6px 10px;
	border-radius: 5px;
}

.navbar a:hover {
	background: var(--accent);
	color: white;
}

/* ENHANCED NAV BUTTONS */
.nav-btn {
	display: inline-block;
	padding: 0.45rem 1rem;
	border-radius: 999px;
	font-size: 0.88rem;
	font-weight: bold;
	text-decoration: none;
	transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.nav-trial {
	background: var(--primary);
	color: white !important;
}

.nav-trial:hover {
	background: #6200d4 !important;
	color: white !important;
	transform: scale(1.05);
	box-shadow: 0 4px 12px rgba(121,7,244,0.35);
}

.nav-book {
	background: var(--accent);
	color: white !important;
}

.nav-book:hover {
	background: #025e72 !important;
	color: white !important;
	transform: scale(1.05);
	box-shadow: 0 4px 12px rgba(3,114,138,0.35);
}

.nav-pay {
	background: #ff9800;
	color: white !important;
}

.nav-pay:hover {
	background: #e68900 !important;
	color: white !important;
	transform: scale(1.05);
	box-shadow: 0 4px 12px rgba(255,152,0,0.35);
}

.nav-hw {
	background: #2196f3;
	color: white !important;
}

.nav-hw:hover {
	background: #1679d0 !important;
	color: white !important;
	transform: scale(1.05);
	box-shadow: 0 4px 12px rgba(33,150,243,0.35);
}

/* HERO */
/* ===== HERO (Parallax + Gradient + Motion) ===== */

.hero {
	position: relative;
	min-height: 650px;
	display: grid;
	place-items: center;
	overflow: hidden;
	color: white;
	text-align: center;
	isolation: isolate; /* keeps overlays layered correctly */
}

/* Parallax background layer */
.hero-bg {
	position: absolute;
	inset: -10%;
	background-image: var(--hero);
	background-size: cover;
	background-position: center;
	transform: translate3d(0, 0, 0) scale(1.08);
	filter: saturate(1.05) contrast(1.05);
	z-index: -3;
	will-change: transform;
}

/* Gradient overlay layer */
.hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(3,114,138,0.85), rgba(121,7,244,0.75)),
		radial-gradient(800px 500px at 10% 10%, rgba(216,239,6,0.22), transparent 60%),
		radial-gradient(700px 450px at 90% 15%, rgba(255,255,255,0.12), transparent 60%);
	z-index: -2;
}

/* Animated blobs */
.hero-blobs {
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	opacity: 0.95;
}

.blob {
	position: absolute;
	width: 520px;
	height: 520px;
	border-radius: 999px;
	filter: blur(40px);
	mix-blend-mode: screen;
	opacity: 0.35;
	animation: floaty 10s ease-in-out infinite;
}

.blob.b1 {
	left: -140px;
	top: -160px;
	background: rgba(216,239,6,0.75);
	animation-duration: 11s;
}

.blob.b2 {
	right: -180px;
	top: 40px;
	background: rgba(121,7,244,0.9);
	animation-duration: 13s;
	animation-delay: -2s;
}

.blob.b3 {
	left: 20%;
	bottom: -240px;
	background: rgba(3,114,138,0.9);
	animation-duration: 14s;
	animation-delay: -4s;
}

@keyframes floaty {
	0%   { transform: translate3d(0, 0, 0) scale(1); }
	50%  { transform: translate3d(20px, -18px, 0) scale(1.05); }
	100% { transform: translate3d(0, 0, 0) scale(1); }
}

/* Hero content “glass” */
.hero-box {
	background: rgba(0,0,0,0.45);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255,255,255,0.14);
	padding: 2.2rem 1.4rem;
	border-radius: 16px;
	max-width: 820px;
	margin: 0 1rem;
	box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}

.hero h1 {
	font-size: 2.6rem;
	margin: 0 0 0.8rem 0;
	letter-spacing: -0.02em;
}

.hero .sub {
	font-size: 1.15rem;
	margin: 0 0 0.6rem 0;
	opacity: 0.95;
}

.hero .trust {
	margin: 0 0 1.4rem 0;
	opacity: 0.9;
}

/* Motion: entrance animation */
.hero-motion {
	animation: heroIn 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroIn {
	from { opacity: 0; transform: translateY(18px) scale(0.98); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* CTA row */
.hero-actions {
	display: flex;
	gap: 0.9rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 1.2rem;
}

/* CTA upgrades */
.cta.cta-glow {
	position: relative;
	box-shadow: 0 10px 28px rgba(0,0,0,0.25);
	transform: translateZ(0);
}

.cta.cta-glow::after {
	content: "";
	position: absolute;
	inset: -2px;
	border-radius: 10px;
	background: linear-gradient(90deg, rgba(216,239,6,0.75), rgba(121,7,244,0.75), rgba(3,114,138,0.75));
	filter: blur(14px);
	opacity: 0;
	z-index: -1;
	transition: opacity 200ms ease;
}

.cta.cta-glow:hover::after {
	opacity: 0.9;
}

.cta.cta-ghost {
	background: rgba(255,255,255,0.16);
	border: 1px solid rgba(255,255,255,0.25);
	color: #fff;
}

.cta.cta-ghost:hover {
	background: rgba(255,255,255,0.26);
	color: #fff;
}

/* Badges */
.hero-badges {
	display: flex;
	gap: 0.6rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 0.4rem;
}

.badge {
	display: inline-block;
	padding: 0.45rem 0.75rem;
	border-radius: 999px;
	background: rgba(255,255,255,0.14);
	border: 1px solid rgba(255,255,255,0.20);
	font-size: 0.92rem;
	opacity: 0.95;
}

/* Bottom fade (nice aesthetic) */
.hero-fade {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 140px;
	background: linear-gradient(to bottom, rgba(249,249,249,0) 0%, rgba(249,249,249,1) 100%);
	z-index: 1;
	pointer-events: none;
}

/* Desktop sizing */
@media (min-width: 800px) {
	.hero h1 { font-size: 3.2rem; }
	.hero-box { padding: 2.4rem 2.2rem; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
	.hero-motion { animation: none; }
	.blob { animation: none; }
}

.sub { font-size: 1.2rem; }
.trust { margin-bottom: 1.5rem; }

/* CTA */
.cta {
	display: inline-block;
	background: var(--primary);
	color: white;
	padding: 1rem 2rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: bold;
}

.cta:hover {
	background: var(--highlight);
	color: black;
}

/* SECTIONS */
section {
	padding: 3rem 1rem;
	text-align: center;
}

.content { background: #ddd; }
.highlight { background: var(--accent); color: white; }

/* STATS */
.stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	background: white;
	text-align: center;
}

.stat {
	padding: 2rem;
}

.count {
	font-size: 3rem;
	color: var(--primary);
	transition: transform 0.3s;
}

.stat:hover .count {
	transform: scale(1.1);
}

/* GRID */
.grid {
	display: grid;
	gap: 2rem;
	max-width: 900px;
	margin: auto;
}

.grid div {
	background: #f0f0f0;
	padding: 1.5rem;
	border-radius: 10px;
}

/* BUTTONS */
.btn {
	display: inline-block;
	background: var(--primary);
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 6px;
	text-decoration: none;
	font-weight: bold;
	margin: 0.5rem;
}

.btn:hover {
	background: var(--highlight);
	color: black;
}

/* TESTIMONIALS */
.testimonials { background: #fff; }

/* FOOTER */
.footer {
	background: var(--dark);
	color: white;
	text-align: center;
	padding: 1rem;
}

/* WHATSAPP FLOAT */
.whatsapp {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #25D366;
	color: white;
	font-size: 28px;
	padding: 12px 16px;
	border-radius: 50%;
	text-decoration: none;
	box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* DESKTOP */
@media (min-width: 700px) {
	.grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.hero h1 {
		font-size: 3.2rem;
	}
}


/* ACTION HUB */

.action-hub {
	padding: 4rem 1rem;
	background: linear-gradient(135deg, #03728a, #7907f4);
	color: white;
	text-align: center;
}

.hub-title {
	font-size: 2.4rem;
	margin-bottom: 0.5rem;
}

.hub-sub {
	opacity: 0.9;
	margin-bottom: 2.5rem;
}

.hub-grid {
	display: grid;
	gap: 2rem;
	max-width: 900px;
	margin: auto;
}

/* CARDS */

.hub-card {
	background: rgba(255,255,255,0.15);
	backdrop-filter: blur(12px);
	border-radius: 16px;
	padding: 2rem;
	transition: transform 0.3s, box-shadow 0.3s;
}

.hub-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* BUTTON AREA */

.hub-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 1rem;
}

/* BUTTON STYLE */

.hub-btn {
	display: inline-block;
	padding: 0.8rem 1.6rem;
	border-radius: 999px;
	text-decoration: none;
	font-weight: bold;
	background: white;
	color: #222;
	transition: 0.25s;
}

.hub-btn:hover {
	transform: scale(1.08);
	box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* PAYMENT COLORS */

.hub-btn.wipay {
	background: #00c853;
	color: white;
}

.hub-btn.endcash {
	background: #ff9800;
	color: white;
}

.hub-btn.portal {
	background: #2196f3;
	color: white;
}

/* TRUST NOTES */

.trust-note {
	margin-top: 1rem;
	font-size: 0.9rem;
	opacity: 0.85;
}

/* PORTAL INSTRUCTIONS */

.portal-instructions {
	background: rgba(255,255,255,0.12);
	border-radius: 10px;
	padding: 0.8rem 1rem;
	margin: 0.8rem 0 1.2rem;
	font-size: 0.88rem;
	text-align: left;
	line-height: 1.6;
}

.portal-instructions p {
	margin: 0.2rem 0;
}

/* CODE INPUT */

.code-input-wrap {
	display: flex;
	gap: 0.6rem;
	justify-content: center;
	margin: 1rem 0 0.5rem;
}

.code-input {
	width: 110px;
	padding: 0.75rem 1rem;
	border-radius: 10px;
	border: none;
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	outline: none;
	background: rgba(255,255,255,0.95);
	color: #222;
	box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.code-input::placeholder {
	color: #aaa;
	font-size: 1rem;
	letter-spacing: 0.05em;
}

.code-go-btn {
	padding: 0.75rem 1.4rem;
	border-radius: 10px;
	border: none;
	background: linear-gradient(135deg, #2196f3, #7907f4);
	color: white;
	font-size: 1.1rem;
	font-weight: bold;
	cursor: pointer;
	box-shadow: 0 3px 10px rgba(0,0,0,0.2);
	transition: transform 0.2s, box-shadow 0.2s;
}

.code-go-btn:hover {
	transform: scale(1.06);
	box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.code-error {
	color: #ffe0e0;
	font-size: 0.9rem;
	margin-top: 0.3rem;
}

/* DESKTOP GRID */

@media (min-width: 700px) {
	.hub-grid {
		grid-template-columns: 1fr 1fr;
	}
}