/**
 * Hero Section Styles
 */

.phytest-hero-section {
	width: 100%;
	background: #ffffff;
	overflow: hidden;
	position: relative;
	/* height: 758px; */
	display: flex;
	align-items: center;
}

.phytest-hero-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 40px;
	z-index: 2;
	width: 100%;
}

.phytest-hero-content {
	max-width: 750px;
	position: relative;
	z-index: 2;
}

.phytest-hero-heading {
	font-family: 'Lato', Helvetica, Arial, Lucida, sans-serif;
	font-size: 76px;
	font-weight: 700;
	color: #000000 !important;
	line-height: 88px;
	text-align: left;
	margin: 0 0 16px 0;
}

.phytest-hero-description {
	font-size: 18px;
	font-weight: 400;
	color: #666666;
	line-height: 1.6;
	margin: 0 0 32px 0;
	max-width: 600px;
}

.phytest-hero-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 40px;
	background-color: #682b88;
	border-width: 1px !important;
	border-style: solid;
	border-color: #682B88;
	border-top-left-radius: 12px;
	border-bottom-right-radius: 12px;
	border-top-right-radius: 0;
	border-bottom-left-radius: 0;
	color: #FFFFFF !important;
	font-family: 'Archivo', Helvetica, Arial, Lucida, sans-serif !important;
	font-size: 16px;
	font-weight: 600 !important;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(104, 43, 136, 0.2);
}

.phytest-hero-button:hover {
	background: #ffffff;
	border-color: #682B88;
	transform: translateY(-2px);
	box-shadow: none;
	color: #682B88 !important;
	text-decoration: none;
}

.phytest-hero-image {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 525px;
	height: 539px;
	z-index: 1;
	opacity: 1;
}

.phytest-hero-image img {
	width: 525px;
	height: 539px;
	max-width: none;
	object-fit: cover;
	object-position: bottom right;
	display: block;
}

/* Responsive Design */
@media (max-width: 1400px) {
	.phytest-hero-container {
		padding: 60px 40px;
	}

	.phytest-hero-content {
		max-width: 650px;
	}

	.phytest-hero-heading {
		font-size: 48px;
		line-height: 56px;
	}

	.phytest-hero-description {
		font-size: 16px;
	}

	.phytest-hero-image {
		width: 450px;
		height: 460px;
	}

	.phytest-hero-image img {
		width: 450px;
		height: 460px;
	}
}

@media (max-width: 1024px) {
	.phytest-hero-section {
		height: auto;
	}

	.phytest-hero-container {
		padding: 60px 40px;
	}

	.phytest-hero-content {
		max-width: 100%;
	}

	.phytest-hero-image {
		position: relative;
		width: 100%;
		height: 500px;
		margin-top: 40px;
	}

	.phytest-hero-image img {
		width: 100%;
		height: 100%;
	}

	.phytest-hero-heading {
		font-size: 42px;
		line-height: 50px;
	}
}

@media (max-width: 768px) {
	.phytest-hero-container {
		padding: 50px 30px;
	}

	.phytest-hero-heading {
		font-size: 36px;
		line-height: 44px;
		margin-bottom: 20px;
	}

	.phytest-hero-description {
		font-size: 15px;
		margin-bottom: 28px;
	}

	.phytest-hero-button {
		padding: 14px 32px;
		font-size: 16px;
	}

	.phytest-hero-image {
		position: relative;
		width: 100%;
		height: auto;
		max-height: 400px;
		margin-top: 30px;
	}

	.phytest-hero-image img {
		width: 100%;
		height: auto;
		max-height: 400px;
		object-fit: contain;
	}
}

@media (max-width: 480px) {
	.phytest-hero-container {
		padding: 40px 20px;
	}

	.phytest-hero-heading {
		font-size: 28px;
		line-height: 36px;
	}

	.phytest-hero-description {
		font-size: 14px;
	}

	.phytest-hero-button {
		padding: 12px 28px;
		font-size: 15px;
		width: 100%;
	}

	.phytest-hero-image {
		position: relative;
		width: 100%;
		height: auto;
		max-height: 350px;
		margin-top: 30px;
	}

	.phytest-hero-image img {
		width: 100%;
		height: auto;
		max-height: 350px;
		object-fit: contain;
	}
}

