/*First Section*/
:root {
	--Mint_Whisper: #e8ffe4;
	--Frosted_Lime: #caffc4;
	--Fresh_Spring: #9aff90;
	--Bright_Meadow: #59ff50;
	--Neon_Leaf: #25ff22;
	--Pure_Green: #00e603;
	--Vivid_Emerald: #00b807;
	--Deep_Emerald: #008b05;
	--Forest_Canopy: #076d0c;
	--Dark_Forest: #0b5c10;
	--Midnight_Pine: #003406;
}

:root {
	--Dewdrop: #E4F5E3;
	--Fresh_Herb: #6BBF69;
	--Mossy_Stone: #368835;
	--Deep_Forest_Night: #0E250E;
}

.feature-list i {
	color: var(--Neon_Leaf);
	margin-right: 8px;
}

.phone-img {
	max-width: 100%;
	height: auto;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	position: absolute;
}

.badge-custom {
	background-color: #ebe4ff;
	color: #6f42c1;
	font-weight: 500;
}

.button-download {
	background-color: var(--Fresh_Spring);
	color: var(--Dark_Forest);
	padding: 10px 25px;
	border-radius: 10px;
	font-weight: 500;
}

.button-download:hover {
	background-color: #5a35a0;
}

/**/
/*Img*/
.healthy_food {
	width: 600px;
	height: 600px;
	object-fit: cover;
	background-position: center;
	border-radius: 50px;
}

/**/
.container {
	max-width: 1200px;
	margin: 0 auto;
}

.contact-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.contact-box {
	margin-top: 50px;
	background-color: #ffffff;
	border-radius: 15px;
	padding: 30px 25px;
	margin-right: 30px;
	width: 300px;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(46, 125, 50, 0.1);
	border-top: 4px solid #4CAF50;
	position: relative;
	overflow: hidden;
}

.contact-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(46, 125, 50, 0.2);
}

.contact-box i {
	font-size: 2.5rem;
	color: #4CAF50;
	margin-bottom: 20px;
	background-color: #e8f5e9;
	width: 70px;
	height: 70px;
	line-height: 70px;
	border-radius: 50%;
	display: inline-block;
	transition: all 0.3s ease;
}

.contact-box:hover i {
	background-color: #4CAF50;
	color: white !important;
	transform: rotate(5deg) scale(1.1);
}

.contact-box h4 {
	color: #2E7D32;
	margin-bottom: 15px;
	font-size: 1.2rem;
	font-weight: 600;
}

.contact-box p {
	color: #555;
	line-height: 1.6;
	font-size: 0.95rem;
}

@media (max-width: 768px) {
	.contact-grid {
		flex-direction: column;
		align-items: center;
	}

	.contact-box {
		width: 100%;
		max-width: 350px;
	}
}

/**/
.contact-section {
	padding: 80px 60px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 60px;
}

.map-container iframe {
	width: 600px;
	height: 600px;
	border: 0;
	border-radius: 10px;
}

.contact-form {
	max-width: 850px;
	flex: 1;
}

.contact-header h2 {
	font-size: 48px;
	font-weight: 800;
	margin-bottom: 12px;
	color: var(--Neon_Leaf);
}

.contact-header span {
	font-size: 48px;
	font-weight: 800;
	color: var(--Deep_Emerald);
	margin-bottom: 12px;
}

.contact-header p {
	font-size: 18px;
	color: #555;
	margin-bottom: 30px;
}

label {
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 6px;
	display: block;
}
.form-control {
	border: 1px solid #ddd !important;
}
.form-control:focus {
	border: 1px solid #ddd !important;
    box-shadow: 0 0 0 0.25rem rgba(76, 175, 80, 0.25) !important;
	outline: none !important;
}
input[type="text"],
input[type="email"],
textarea {
	width: 100%;
	padding: 18px;
	font-size: 16px;
	border-radius: 10px;
	border: 1px solid #ddd;
	margin-bottom: 20px;
}

textarea {
	height: 180px;
	resize: none;
}

.form-row {
	display: flex;
	gap: 20px;
}

.form-row>div {
	flex: 1;
}

.for-submit {
	background-color: var(--Fresh_Herb);
	color: white;
	font-size: 18px;
	font-weight: 600;
	border-radius: 30px;
	padding: 14px 36px;
	border: none;
	margin-top: 10px;
	transition: background-color 0.3s ease;
}

.for-submit:hover {
	background-color: var(--Forest_Canopy)
}