* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
		font-size: 15px; 
}

body {
	font-family: "Inter", sans-serif;
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
		background-size: 98%;
}

.container {
	max-width: 1000px; 
	margin: 0 auto;
	padding: 0 32px; 
}

.section-title {
	font-family: "Playfair Display", serif;
	font-size: 2rem; 
	font-weight: 600;
	text-align: center;
	margin-bottom: 1rem;
	color: #2c3e50;
	position: relative;
}

.section-title::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: linear-gradient(135deg, #27ae60, #2ecc71);
	border-radius: 2px;
}

.section-subtitle {
	text-align: center;
	font-size: 0.95rem;
	color: #7f8c8d;
	margin-bottom: 2.5rem;
	max-width: 550px;
	margin-left: auto;
	margin-right: auto;
}

.section-header {
	margin-bottom: 4rem; 
}

.btn {
	display: inline-block;
	padding: 12px 30px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 500;
	text-align: center;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	font-size: 0.95rem;
	position: relative;
	overflow: hidden;
}

.btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s;
}

.btn:hover::before {
	left: 100%;
}

.btn-primary {
	background: linear-gradient(135deg, #27ae60, #2ecc71);
	color: white;
	box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.btn-secondary {
	background: transparent;
	color: #27ae60;
	border: 2px solid #27ae60;
}

.btn-secondary:hover {
	background: #27ae60;
	color: white;
	transform: translateY(-2px);
}

.btn-outline {
	background: transparent;
	color: #27ae60;
	border: 2px solid #27ae60;
	padding: 10px 25px;
	font-size: 0.9rem;
}

.btn-outline:hover {
	background: #27ae60;
	color: white;
}

.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 1rem 0;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
}

.nav-logo .logo {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}

.logo-text {
	font-family: "Playfair Display", serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: #27ae60;
}

.nav-menu {
	display: flex;
	gap: 2rem;
}

.nav-link {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: #27ae60;
	transition: width 0.3s ease;
}

.nav-link:hover::after {
	width: 100%;
}

.nav-link:hover {
	color: #27ae60;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.bar {
	width: 25px;
	height: 3px;
	background: #333;
	margin: 3px 0;
	transition: 0.3s;
}

.hero {
	min-height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, #ffd700 0%, #27ae60 100%);
	overflow: hidden;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #ffd700 0%, #f1c40f 50%, #27ae60 100%);
	z-index: -2;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(39, 174, 96, 0.1),
		rgba(46, 204, 113, 0.1)
	);
	z-index: -1;
}

.hero-pattern {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(
			circle at 25% 25%,
			rgba(255, 255, 255, 0.1) 2px,
			transparent 2px
		),
		radial-gradient(
			circle at 75% 75%,
			rgba(255, 255, 255, 0.1) 2px,
			transparent 2px
		);
	background-size: 50px 50px;
	animation: float 20s ease-in-out infinite;
}

.hero-content {
	width: 100%;
	position: relative;
	z-index: 1;
	padding: 2rem 0;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-text {
	color: #2c3e50;
	text-align: left;
}

.hero-badge {
	display: inline-block;
	background: rgba(44, 62, 80, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(44, 62, 80, 0.2);
	border-radius: 50px;
	padding: 0.5rem 1.5rem;
	margin-bottom: 2rem;
	font-size: 0.9rem;
	font-weight: 500;
	color: #2c3e50;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.hero-title {
	font-family: "Playfair Display", serif;
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.1;
}

.hero-title-main {
	display: block;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease 0.2s;
}

.hero-title-accent {
	display: block;
	background: linear-gradient(45deg, #e74c3c, #c0392b, #8e44ad);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease 0.4s;
}

.hero-description {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	opacity: 0;
	line-height: 1.6;
	transform: translateY(30px);
	transition: all 0.6s ease 0.6s;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	margin-bottom: 3rem;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease 0.8s;
}

.hero-buttons .btn {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	transition: all 0.3s ease;
}

.hero-buttons .btn i {
	transition: transform 0.3s ease;
}

.hero-buttons .btn:hover i {
	transform: translateX(3px);
}

.hero-features {
	display: flex;
	gap: 2rem;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease 1s;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	opacity: 0.9;
}

.feature-item i {
	color: #e74c3c;
	font-size: 1rem;
}

.hero-visual {
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease 0.6s;
}

.hero-image-container {
	position: relative;
	width: 350px;
	height: 350px;
}

.hero-image {
	width: 100%;
	height: 100%;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-image img {
	width: 80%;
	height: 80%;
	object-fit: contain;
	border-radius: 15px;
}

.floating-card {
	position: absolute;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	padding: 1rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: #2c3e50;
	border: 1px solid rgba(255, 255, 255, 0.3);
	opacity: 0;
	transition: all 0.6s ease;
}

.floating-card i {
	color: #27ae60;
}

.card-1 {
	top: -20px;
	right: -20px;
	transition-delay: 1.2s;
}

.card-2 {
	bottom: -20px;
	left: -20px;
	transition-delay: 1.4s;
}

.scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	animation: bounce 2s infinite;
}

.scroll-arrow {
	width: 20px;
	height: 20px;
	border-right: 2px solid white;
	border-bottom: 2px solid white;
	transform: rotate(45deg);
}

/* About Section */
.about {
	padding: 100px 0;
	background: white;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-text h3 {
	font-family: "Playfair Display", serif;
	font-size: 1.8rem;
	color: #2c3e50;
	margin-bottom: 1rem;
	margin-top: 2rem;
}

.about-text h3:first-child {
	margin-top: 0;
}

.about-text p {
	color: #7f8c8d;
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

.about-features {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-top: 2rem;
}

.feature-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.5rem;
	background: #f8f9fa;
	border-radius: 10px;
	transition: transform 0.3s ease;
}

.feature-item:hover {
	transform: translateY(-5px);
}

.feature-item i {
	font-size: 1.5rem;
	color: #27ae60;
	margin-top: 0.2rem;
}

.feature-item h4 {
	font-size: 1.1rem;
	color: #2c3e50;
	margin-bottom: 0.5rem;
}

.feature-item p {
	color: #7f8c8d;
	margin: 0;
	font-size: 0.95rem;
}

.about-image {
	position: relative;
}

.about-img {
	width: 100%;
	border-radius: 15px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.about-img:hover {
	transform: scale(1.05);
}

/* Who Are We Section */
.who-we-are {
	padding: 80px 0;
	background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
	color: white;
	position: relative;
	overflow: hidden;
}

.who-we-are::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	pointer-events: none;
}

.who-we-are .section-title,
.who-we-are .section-subtitle {
	color: white;
}

.who-we-are .section-title::after {
	background: linear-gradient(135deg, #f1c40f, #f39c12);
}

/* Vision & Mission Grid */
.vision-mission-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin-bottom: 5rem;
}

.vision-card,
.mission-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 2.5rem;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.vision-card::before,
.mission-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.1),
		transparent
	);
	transition: left 0.6s;
}

.vision-card:hover::before,
.mission-card:hover::before {
	left: 100%;
}

.vision-card:hover,
.mission-card:hover {
	transform: translateY(-10px);
	background: rgba(255, 255, 255, 0.15);
	border-color: #f1c40f;
}

.card-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #f1c40f, #f39c12);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	box-shadow: 0 10px 30px rgba(241, 196, 15, 0.3);
	transition: all 0.3s ease;
}

.vision-card:hover .card-icon,
.mission-card:hover .card-icon {
	transform: scale(1.1) rotate(10deg);
	box-shadow: 0 15px 40px rgba(241, 196, 15, 0.4);
}

.card-icon i {
	font-size: 2rem;
	color: white;
}

.vision-card h3,
.mission-card h3 {
	font-family: "Playfair Display", serif;
	font-size: 1.6rem;
	margin-bottom: 1.2rem;
	color: #f1c40f;
}

.vision-card p,
.mission-card p {
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
}

.core-values-section {
	margin-bottom: 4rem;
}

.core-values-header {
	text-align: center;
	margin-bottom: 3rem;
}

.core-values-title {
	font-family: "Playfair Display", serif;
	font-size: 2rem;
	color: #f1c40f;
	margin-bottom: 1rem;
}

.core-values-subtitle {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.8);
	max-width: 600px;
	margin: 0 auto;
}

.core-values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2.5rem;
}

.value-card {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	padding: 2rem;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.value-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(241, 196, 15, 0.1),
		transparent
	);
	transition: left 0.6s;
}

.value-card:hover::before {
	left: 100%;
}

.value-card:hover {
	transform: translateY(-8px);
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(241, 196, 15, 0.3);
}

.value-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #27ae60, #2ecc71);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.2rem;
	box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
	transition: all 0.3s ease;
}

.value-card:hover .value-icon {
	transform: scale(1.1);
	box-shadow: 0 12px 35px rgba(39, 174, 96, 0.4);
}

.value-icon i {
	font-size: 1.5rem;
	color: white;
}

.value-card h4 {
	font-family: "Playfair Display", serif;
	font-size: 1.3rem;
	color: #f1c40f;
	margin-bottom: 1rem;
}

.value-card p {
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	font-size: 0.95rem;
}

.who-we-are-cta {
	text-align: center;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(15px);
	border-radius: 25px;
	padding: 3rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	position: relative;
	overflow: hidden;
}

.who-we-are-cta::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(241, 196, 15, 0.1),
		rgba(243, 156, 18, 0.1)
	);
	z-index: -1;
}

.who-we-are-cta h3 {
	font-family: "Playfair Display", serif;
	font-size: 2rem;
	color: #f1c40f;
	margin-bottom: 1.5rem;
}

.who-we-are-cta p {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2.5rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.7;
}

.cta-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

.products {
	padding: 80px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2.5rem;
	margin-bottom: 4rem;
}

.featured-products {
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 3rem;
	margin-bottom: 5rem;
}

.featured-products .product-card {
	border: 2px solid #27ae60;
	will-change: transform;
}

.product-line-section {
	margin-bottom: 5rem;
}

.product-line-header {
	text-align: center;
	margin-bottom: 3rem;
}

.product-line-title {
	font-family: "Playfair Display", serif;
	font-size: 2rem;
	color: #2c3e50;
	margin-bottom: 0.5rem;
}

.product-line-subtitle {
	font-size: 1.1rem;
	color: #7f8c8d;
	max-width: 600px;
	margin: 0 auto;
}

.hagpos-products {
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.traditional-products {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.traditional-products .product-card {
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
}

.product-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
		box-shadow 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
	position: relative;
	will-change: transform;
}

.product-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
	position: relative;
	overflow: hidden;
	height: 280px;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	border-radius: 15px 15px 0 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.product-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
		filter 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
	will-change: transform, filter;
	filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
	border-radius: 10px;
	background: white;
	padding: 15px;
	max-width: 90%;
	max-height: 90%;
}

.product-card:hover .product-img {
	transform: scale(1.05) translateY(-5px);
	filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* Featured product images get special treatment */
.featured .product-image {
	height: 320px;
	background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
	padding: 25px;
}

.featured .product-img {
	background: rgba(255, 255, 255, 0.95);
	border: 2px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	will-change: transform;
}

.featured:hover .product-img {
	transform: scale(1.05) translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* HAGPOS products styling */
.hagpos-products .product-image {
	background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

.hagpos-products .product-img {
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(39, 174, 96, 0.2);
}

/* Traditional products styling */
.traditional-products .product-image {
	background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
}

.traditional-products .product-img {
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(142, 68, 173, 0.2);
}

.product-img[src=""] {
	background: linear-gradient(135deg, #ecf0f1, #bdc3c7);
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-img[src=""]:before {
	content: "📦";
	font-size: 3rem;
	color: #7f8c8d;
}

.product-image::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(to top, rgba(255, 255, 255, 0.1), transparent);
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.product-card:hover .product-image::after {
	opacity: 1;
}

.product-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(39, 174, 96, 0.9),
		rgba(46, 204, 113, 0.8)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
		transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
	will-change: opacity, transform;
	backdrop-filter: blur(5px);
	border-radius: 15px 15px 0 0;
}

.product-card:hover .product-overlay {
	opacity: 1;
	transform: translateY(0);
}

.featured .product-overlay {
	background: linear-gradient(
		135deg,
		rgba(231, 76, 60, 0.9),
		rgba(192, 57, 43, 0.8)
	);
}

.hagpos-products .product-overlay {
	background: linear-gradient(
		135deg,
		rgba(39, 174, 96, 0.9),
		rgba(46, 204, 113, 0.8)
	);
}

.traditional-products .product-overlay {
	background: linear-gradient(
		135deg,
		rgba(142, 68, 173, 0.9),
		rgba(155, 89, 182, 0.8)
	);
}

.featured-products .product-card {
	border-color: #27ae60;
}

.featured-products .product-image {
	background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

.featured-products .product-img {
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(39, 174, 96, 0.2);
}

.featured-products .product-overlay {
	background: linear-gradient(
		135deg,
		rgba(39, 174, 96, 0.9),
		rgba(46, 204, 113, 0.8)
	);
}

.featured-products .product-badge {
	background: linear-gradient(135deg, #27ae60, #2ecc71);
	box-shadow: 0 4px 15px rgba(39, 174, 96, 0.35);
}

.product-overlay .btn-outline {
	background: rgba(255, 255, 255, 0.9);
	color: #2c3e50;
	border: 2px solid rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(10px);
	font-weight: 600;
	transform: translateY(20px);
	transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) 40ms,
		background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	will-change: transform;
}

.product-card:hover .product-overlay .btn-outline {
	transform: translateY(0);
}

.product-overlay .btn-outline:hover {
	background: white;
	color: #2c3e50;
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.product-info {
	padding: 1.5rem;
}

.product-title {
	font-family: "Playfair Display", serif;
	font-size: 1.3rem;
	color: #2c3e50;
	margin-bottom: 0.8rem;
}

.product-description {
	color: #7f8c8d;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.product-benefits {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.benefit-tag {
	background: linear-gradient(135deg, #27ae60, #2ecc71);
	color: white;
	padding: 0.3rem 0.8rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 500;
}

.product-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	background: linear-gradient(135deg, #f39c12, #e67e22);
	color: white;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	z-index: 2;
	box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.product-badge.featured {
	background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.product-price {
	font-size: 1.5rem;
	font-weight: 700;
	color: #27ae60;
	margin-bottom: 1rem;
	font-family: "Playfair Display", serif;
}

.product-features {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid #ecf0f1;
}

.product-features .feature-item {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	margin-bottom: 1rem;
	font-size: 0.9rem;
	color: #7f8c8d;
}

.product-features .feature-item:last-child {
	margin-bottom: 0;
}

.product-features .feature-item i {
	font-size: 1rem;
	color: #27ae60;
	min-width: 16px;
}

.product-features .feature-item span {
	flex: 1;
}

.products-cta {
	text-align: center;
	background: white;
	padding: 3rem;
	border-radius: 20px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	margin-top: 3rem;
}

.products-cta h3 {
	font-family: "Playfair Display", serif;
	font-size: 1.8rem;
	color: #2c3e50;
	margin-bottom: 1rem;
}

.products-cta p {
	color: #7f8c8d;
	margin-bottom: 2rem;
	font-size: 1.1rem;
}

.benefits {
	padding: 80px 0;
	background: white;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2.5rem;
}

.benefit-card {
	text-align: center;
	padding: 2.5rem 1.5rem;
	border-radius: 15px;
	background: #f8f9fa;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.benefit-card:hover {
	transform: translateY(-10px);
	background: white;
	border-color: #27ae60;
	box-shadow: 0 15px 35px rgba(39, 174, 96, 0.1);
}

.benefit-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #27ae60, #2ecc71);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
	transform: scale(1.1);
}

.benefit-icon i {
	font-size: 2rem;
	color: white;
}

.benefit-card h3 {
	font-family: "Playfair Display", serif;
	font-size: 1.3rem;
	color: #2c3e50;
	margin-bottom: 1rem;
}

.benefit-card p {
	color: #7f8c8d;
	line-height: 1.6;
}

.how-to-earn {
	padding: 80px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	position: relative;
}

.how-to-earn::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
}

.earning-step {
	background: white;
	border-radius: 25px;
	padding: 2.5rem;
	margin-bottom: 2.5rem;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(39, 174, 96, 0.1);
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.earning-step::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(39, 174, 96, 0.05),
		transparent
	);
	transition: left 0.8s;
}

.earning-step:hover::before {
	left: 100%;
}

.earning-step:hover {
	transform: translateY(-5px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.step-header {
	display: flex;
	align-items: center;
	gap: 2rem;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
}

.step-number {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #27ae60, #2ecc71);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	font-weight: 700;
	color: white;
	box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
	min-width: 70px;
}

.step-title {
	font-family: "Playfair Display", serif;
	font-size: 2rem;
	color: #2c3e50;
	margin: 0;
	flex: 1;
}

.step-price {
	background: linear-gradient(135deg, #f1c40f, #f39c12);
	color: white;
	padding: 1rem 2rem;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1.1rem;
	box-shadow: 0 8px 25px rgba(241, 196, 15, 0.3);
}

.registration-benefits {
	margin-bottom: 3rem;
}

.registration-benefits h4 {
	font-family: "Playfair Display", serif;
	font-size: 1.5rem;
	color: #2c3e50;
	margin-bottom: 1.5rem;
}

.benefits-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1rem;
}

.benefit-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: #f8f9fa;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.benefit-item:hover {
	background: rgba(39, 174, 96, 0.1);
	transform: translateX(5px);
}

.benefit-item i {
	font-size: 1.2rem;
	color: #27ae60;
	min-width: 20px;
}

.benefit-item span {
	color: #2c3e50;
	font-weight: 500;
}

.packages-section {
	margin-bottom: 3rem;
}

.packages-section h4 {
	font-family: "Playfair Display", serif;
	font-size: 1.5rem;
	color: #2c3e50;
	margin-bottom: 1.5rem;
}

.packages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
}

.package-card {
	background: white;
	border: 2px solid #ecf0f1;
	border-radius: 15px;
	overflow: hidden;
	transition: all 0.3s ease;
	position: relative;
}

.package-card:hover {
	border-color: #27ae60;
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(39, 174, 96, 0.15);
}

.featured-package {
	border-color: #f1c40f;
	position: relative;
}

.featured-package::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(135deg, #f1c40f, #f39c12);
}

.package-header {
	background: #f8f9fa;
	padding: 1.5rem;
	text-align: center;
	position: relative;
}

.featured-package .package-header {
	background: linear-gradient(135deg, #f1c40f, #f39c12);
	color: white;
}

.package-header h5 {
	font-family: "Playfair Display", serif;
	font-size: 1.3rem;
	margin: 0;
}

.package-badge {
	position: absolute;
	top: -10px;
	right: 15px;
	background: #27ae60;
	color: white;
	padding: 0.3rem 1rem;
	border-radius: 15px;
	font-size: 0.8rem;
	font-weight: 600;
}

.package-content {
	padding: 1.5rem;
}

.package-item {
	padding: 0.8rem;
	margin-bottom: 0.5rem;
	background: rgba(39, 174, 96, 0.05);
	border-radius: 8px;
	color: #2c3e50;
	font-weight: 500;
	border-left: 3px solid #27ae60;
}

.package-item:last-child {
	margin-bottom: 0;
}

.compensation-section h4 {
	font-family: "Playfair Display", serif;
	font-size: 1.5rem;
	color: #2c3e50;
	margin-bottom: 1.5rem;
}

.compensation-card {
	background: linear-gradient(
		135deg,
		rgba(39, 174, 96, 0.1),
		rgba(46, 204, 113, 0.05)
	);
	border: 1px solid rgba(39, 174, 96, 0.2);
	border-radius: 15px;
	padding: 2rem;
	text-align: center;
}

.compensation-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #27ae60, #2ecc71);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
}

.compensation-icon i {
	font-size: 2rem;
	color: white;
}

.compensation-card h5 {
	font-family: "Playfair Display", serif;
	font-size: 1.5rem;
	color: #2c3e50;
	margin-bottom: 1rem;
}

.compensation-card p {
	color: #7f8c8d;
	line-height: 1.7;
}

.sales-info p {
	color: #7f8c8d;
	line-height: 1.7;
	margin-bottom: 2rem;
}

.profit-example {
	background: rgba(39, 174, 96, 0.05);
	border: 1px solid rgba(39, 174, 96, 0.2);
	border-radius: 15px;
	padding: 2rem;
}

.profit-example h5 {
	font-family: "Playfair Display", serif;
	font-size: 1.3rem;
	color: #2c3e50;
	margin-bottom: 1.5rem;
}

.profit-breakdown {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.profit-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
	background: white;
	border-radius: 10px;
	border: 1px solid #ecf0f1;
}

.profit-item.highlight {
	background: linear-gradient(135deg, #27ae60, #2ecc71);
	color: white;
	font-weight: 600;
	border-color: #27ae60;
}

.profit-item .label {
	font-weight: 500;
}

.profit-item .value {
	font-weight: 700;
	font-size: 1.1rem;
}

.vip-info p {
	color: #7f8c8d;
	line-height: 1.7;
	margin-bottom: 2rem;
}

.vip-requirements,
.profit-calculation,
.payout-info {
	background: #f8f9fa;
	border-radius: 15px;
	padding: 2rem;
	margin-bottom: 2rem;
}

.vip-requirements h5,
.profit-calculation h5,
.payout-info h5 {
	font-family: "Playfair Display", serif;
	font-size: 1.3rem;
	color: #2c3e50;
	margin-bottom: 1rem;
}

.vip-requirements ul {
	list-style: none;
	padding: 0;
}

.vip-requirements li {
	padding: 0.8rem;
	background: white;
	border-radius: 8px;
	margin-bottom: 0.5rem;
	border-left: 3px solid #27ae60;
	color: #2c3e50;
}

.calc-formula {
	background: white;
	border-radius: 10px;
	padding: 1.5rem;
	border: 1px solid #ecf0f1;
}

.formula-line {
	padding: 0.8rem;
	margin-bottom: 0.5rem;
	background: rgba(39, 174, 96, 0.05);
	border-radius: 8px;
	color: #2c3e50;
	font-family: monospace;
	font-size: 0.95rem;
}

.formula-result {
	padding: 1rem;
	background: linear-gradient(135deg, #27ae60, #2ecc71);
	color: white;
	border-radius: 10px;
	font-weight: 600;
	text-align: center;
	margin-top: 1rem;
}

.payout-details {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
}

.payout-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: white;
	border-radius: 10px;
	border: 1px solid #ecf0f1;
}

.payout-item i {
	font-size: 1.2rem;
	color: #27ae60;
	min-width: 20px;
}

.account-requirements {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1rem;
}

.req-item {
	padding: 1rem;
	background: rgba(241, 196, 15, 0.1);
	border: 1px solid rgba(241, 196, 15, 0.3);
	border-radius: 10px;
	color: #2c3e50;
	font-weight: 500;
	text-align: center;
}

.vip-rewards-section {
	margin-bottom: 4rem;
}

.rewards-header {
	text-align: center;
	margin-bottom: 3rem;
}

.rewards-header h3 {
	font-family: "Playfair Display", serif;
	font-size: 2.2rem;
	color: #2c3e50;
	margin-bottom: 1rem;
}

.rewards-header p {
	font-size: 1.1rem;
	color: #7f8c8d;
}

.rewards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.reward-card {
	background: white;
	border-radius: 20px;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	border: 2px solid transparent;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.reward-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(135deg, #f1c40f, #f39c12);
}

.reward-card:hover {
	transform: translateY(-8px);
	border-color: #f1c40f;
	box-shadow: 0 20px 40px rgba(241, 196, 15, 0.2);
}

.reward-level {
	background: linear-gradient(135deg, #f1c40f, #f39c12);
	color: white;
	padding: 0.8rem 1.5rem;
	border-radius: 25px;
	font-weight: 700;
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	display: inline-block;
}

.reward-requirement {
	font-size: 1.2rem;
	color: #2c3e50;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.reward-gift {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
	padding: 1.5rem;
	background: rgba(39, 174, 96, 0.05);
	border-radius: 15px;
}

.reward-gift i {
	font-size: 2rem;
	color: #27ae60;
}

.reward-gift span {
	font-size: 1.2rem;
	color: #2c3e50;
	font-weight: 600;
}

.reward-bonus {
	color: #7f8c8d;
	font-size: 0.95rem;
	line-height: 1.6;
}

.stockist-section {
	background: white;
	border-radius: 25px;
	padding: 3rem;
	margin-bottom: 3rem;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(39, 174, 96, 0.1);
}

.stockist-header {
	text-align: center;
	margin-bottom: 3rem;
}

.stockist-header h3 {
	font-family: "Playfair Display", serif;
	font-size: 2rem;
	color: #2c3e50;
	margin-bottom: 1rem;
}

.stockist-header p {
	font-size: 1.1rem;
	color: #7f8c8d;
}

.stockist-levels {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 1rem;
	margin-bottom: 2.5rem;
}

.stockist-level {
	background: linear-gradient(
		135deg,
		rgba(39, 174, 96, 0.1),
		rgba(46, 204, 113, 0.05)
	);
	border: 2px solid rgba(39, 174, 96, 0.2);
	border-radius: 15px;
	padding: 1.5rem;
	text-align: center;
	transition: all 0.3s ease;
	word-break: break-word;
}

.stockist-level:hover {
	transform: translateY(-5px);
	border-color: #27ae60;
	box-shadow: 0 15px 35px rgba(39, 174, 96, 0.15);
}

.stockist-type {
	font-family: "Playfair Display", serif;
	font-size: 1.1rem;
	color: #2c3e50;
	margin-bottom: 0.8rem;
	font-weight: 600;
}

.stockist-investment {
	font-size: 1.3rem;
	color: #27ae60;
	font-weight: 700;
	overflow-wrap: break-word;
}

.stockist-benefits {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1rem;
}

.benefit-highlight {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.5rem;
	background: rgba(241, 196, 15, 0.1);
	border: 1px solid rgba(241, 196, 15, 0.3);
	border-radius: 15px;
}

.benefit-highlight i {
	font-size: 1.5rem;
	color: #f1c40f;
	min-width: 24px;
}

.benefit-highlight span {
	color: #2c3e50;
	font-weight: 600;
}

.high-class-venture {
	margin-bottom: 4rem;
}

.venture-card {
	background: linear-gradient(135deg, #2c3e50, #34495e);
	color: white;
	border-radius: 25px;
	padding: 3rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.venture-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f1c40f' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	pointer-events: none;
}

.venture-icon {
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, #f1c40f, #f39c12);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
	box-shadow: 0 15px 40px rgba(241, 196, 15, 0.3);
}

.venture-icon i {
	font-size: 3rem;
	color: white;
}

.venture-card h4 {
	font-family: "Playfair Display", serif;
	font-size: 2rem;
	color: #f1c40f;
	margin-bottom: 1.5rem;
}

.venture-card p {
	font-size: 1.1rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.9);
	max-width: 600px;
	margin: 0 auto;
}

.earn-cta {
	background: linear-gradient(135deg, #27ae60, #2ecc71);
	color: white;
	border-radius: 25px;
	padding: 4rem 3rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.earn-cta::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	pointer-events: none;
}

.earn-cta h3 {
	font-family: "Playfair Display", serif;
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: white;
}

.earn-cta p {
	font-size: 1.2rem;
	margin-bottom: 2.5rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.95);
}

.earn-cta .cta-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

.earn-cta .btn-primary {
	background: white;
	color: #27ae60;
	border: 2px solid white;
}

.earn-cta .btn-primary:hover {
	background: transparent;
	color: white;
	border-color: white;
}

.earn-cta .btn-secondary {
	background: transparent;
	color: white;
	border: 2px solid white;
}

.earn-cta .btn-secondary:hover {
	background: white;
	color: #27ae60;
}

.contact {
	padding: 80px 0;
	background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
	color: white;
}

.contact .section-title,
.contact .section-subtitle {
	color: white;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
}

.contact-info h3 {
	font-family: "Playfair Display", serif;
	font-size: 1.8rem;
	margin-bottom: 2rem;
	color: #f1c40f;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.5rem;
	padding: 1.2rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	backdrop-filter: blur(10px);
}

.contact-item i {
	font-size: 1.5rem;
	color: #f1c40f;
	margin-top: 0.2rem;
	min-width: 24px;
}

.contact-item h4 {
	color: #f1c40f;
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
}

.contact-item p {
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
}

.contact-form {
	background: rgba(255, 255, 255, 0.1);
	padding: 2.5rem;
	border-radius: 15px;
	backdrop-filter: blur(10px);
}

.contact-form h3 {
	font-family: "Playfair Display", serif;
	font-size: 1.8rem;
	margin-bottom: 2rem;
	color: #f1c40f;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.1);
	color: white;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #f1c40f;
	background: rgba(255, 255, 255, 0.2);
}

.form-group select option {
	background: #2c3e50;
	color: white;
}

.footer {
	background: #1a252f;
	color: white;
	padding: 60px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 1.5rem;
}

.footer-logo .logo {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}

.footer-description {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 2rem;
	line-height: 1.6;
}

.social-links {
	display: flex;
	gap: 1rem;
}

.social-link {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
	transition: all 0.3s ease;
}

.social-link:hover {
	background: #27ae60;
	transform: translateY(-3px);
}

.footer-section h4 {
	font-family: "Playfair Display", serif;
	font-size: 1.3rem;
	margin-bottom: 1.5rem;
	color: #f1c40f;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.8rem;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #27ae60;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 2rem;
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
}

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

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateX(-50%) translateY(0);
	}
	40% {
		transform: translateX(-50%) translateY(-10px);
	}
	60% {
		transform: translateX(-50%) translateY(-5px);
	}
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}

.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1024px) {
	.hero-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
		text-align: center;
	}

	.hero-text {
		text-align: center;
	}

	.hero-title {
		font-size: 3rem;
	}

	.hero-image-container {
		width: 350px;
		height: 350px;
	}

	.hero-features {
		justify-content: center;
	}

	.hero-stats {
		gap: 2rem;
	}

	.about-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.vision-mission-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.core-values-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 2rem;
	}

	.contact-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-content {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.hero-description {
		font-size: 1.1rem;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.hero-buttons .btn {
		width: 100%;
		max-width: 300px;
		justify-content: center;
	}

	.hero-features {
		flex-direction: column;
		gap: 1rem;
	}

	.hero-image-container {
		width: 280px;
		height: 280px;
	}

	.floating-card {
		display: none;
	}

	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: white;
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
		padding: 2rem 0;
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-toggle {
		display: flex;
	}

	.nav-toggle.active .bar:nth-child(2) {
		opacity: 0;
	}

	.nav-toggle.active .bar:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	.nav-toggle.active .bar:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	.hero-title {
		font-size: 2.8rem;
	}

	.hero-description {
		font-size: 1.1rem;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.hero-stats {
		flex-direction: column;
		gap: 1.5rem;
		align-items: center;
	}

	.section-title {
		font-size: 2rem;
	}

	.products-grid {
		grid-template-columns: 1fr;
	}

	.featured-products {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.hagpos-products,
	.traditional-products {
		grid-template-columns: 1fr;
	}

	.product-line-title {
		font-size: 1.8rem;
	}

	.benefits-grid {
		grid-template-columns: 1fr;
	}

	.core-values-grid {
		grid-template-columns: 1fr;
	}

	.vision-card,
	.mission-card {
		padding: 2rem;
	}

	.value-card {
		padding: 2rem;
	}

	.who-we-are-cta {
		padding: 2rem;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.core-values-title {
		font-size: 1.8rem;
	}

	.earning-step {
		padding: 2rem;
	}

	.step-header {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}

	.step-title {
		font-size: 1.8rem;
	}

	.packages-grid {
		grid-template-columns: 1fr;
	}

	.rewards-grid {
		grid-template-columns: 1fr;
	}

	.stockist-levels {
		grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
	}

	.earn-cta {
		padding: 2.5rem 2rem;
	}

	.earn-cta h3 {
		font-size: 2rem;
	}

	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.social-links {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}

	.hero-title {
		font-size: 2.2rem;
	}

	.hero-description {
		font-size: 1rem;
	}

	.section-title {
		font-size: 1.8rem;
	}

	.product-card,
	.benefit-card {
		margin: 0 10px;
	}

	.product-image {
		height: 260px;
		padding: 20px;
	}

	.featured .product-image {
		height: 300px;
		padding: 25px;
	}

	.product-img {
		padding: 10px;
	}

	.contact-form {
		padding: 1.5rem;
	}
}

.hero-background {
	will-change: transform;
}

.product-img,
.about-img {
	will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}

	.scroll-indicator {
		animation: none;
	}
}

.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus,
select:focus {
	outline: 2px solid #27ae60;
	outline-offset: 2px;
}

@media (prefers-contrast: high) {
	.hero-overlay {
		background: rgba(0, 0, 0, 0.8);
	}

	.btn-primary {
		border: 2px solid #27ae60;
	}
}
