/* Floating Contact Buttons CSS */
.contact-buttons {
	position: fixed;
	bottom: 10px;
	left: 5px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 1000;
}
.contact-buttons a {
	color: white;
	font-size: 15px;
	padding: 10px 10px;
	border-radius: 50px;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
	text-align: center;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	width: 125px;
	text-decoration: none;
	transition: transform 0.3s ease;
	font-family: "Epunda Sans", sans-serif;
	letter-spacing: 1px;
}
.contact-buttons a.call-button {
	background-color: #0191db;
}
.contact-buttons a.whatsapp-button {
	background-color: #095702;
}
.contact-buttons a i {
	margin-right: 10px;
}
.contact-buttons a:hover {
	transform: scale(0.95);
}
.main-section {
	max-width: 1170px;
	margin: 0 auto;
	padding-bottom: 90px;
}
.main-section h1 {
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	margin: 0 0 8px 0;
	letter-spacing: 1px;
}
.main-section p.subtitle {
	text-align: center;
	font-size: 1.05rem;
	margin: 0 0 32px 0;
	color: #555;
	font-weight: 500;
	letter-spacing: 1px;
}
.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	padding: 0 8px;
}
.feature-card {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 6px 26px 0 rgba(0,0,0,0.03);
	border: 1px solid #eee;
	padding: 28px 16px 24px 16px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	transition: box-shadow 0.2s;
	min-height: 100px;
	min-width: 0;
}
.feature-card:hover {
	box-shadow: 0 8px 32px 0 rgba(0,0,0,0.07);
	border-color: #e94e1b2e;
}
.feature-card .title {
	font-weight: 700;
	font-size: 1.04rem;
	line-height: 1.4;
	margin-bottom: 5px;
	display: flex;
	align-items: center;
}
.feature-card .sub {
	display: block;
	font-size: 0.98rem;
	color: #222;
	margin-top: 2px;
	font-weight: 500;
}
.feature-card .highlight {
	color: #fff;
	background: #DE3C20;
	font-weight: 800;
	border-radius: 4px;
	padding: 1px 7px;
	font-size: 0.98rem;
	margin-right: 6px;
	letter-spacing: 0.01em;
}
.feature-card .highlight-orange {
	color: #fff;
	background: #EE6722;
	font-weight: 700;
	border-radius: 4px;
	padding: 1px 7px;
	font-size: 0.95rem;
	margin-right: 6px;
}
.feature-card .highlight-dark {
	color: #fff;
	background: #222;
	font-weight: 700;
	border-radius: 4px;
	padding: 1px 6px;
	font-size: 0.95rem;
	margin-left: 7px;
}
.feature-card .highlight-outline {
	color: #EE6722;
	background: #fff;
	border: 2px solid #EE6722;
	font-weight: 700;
	border-radius: 4px;
	padding: 1px 7px;
	margin-right: 6px;
}
@media (max-width: 900px) {
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 18px;
	}
} 
@media (max-width: 768px) { 
	.contact-buttons {
		width: 100%;
		margin: 0;
		padding: 0;
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 99;
		display: block;
	}
	.contact-buttons a {
		min-width: auto;
        padding: 10px 12px;
        font-size: 14px;
        float: left;
        width: 50%;
        overflow: hidden;
        text-align: center;
        border-radius: 0;
	}
}
@media (max-width: 600px) {
	.main-section {
		padding: 18px 4px 10px 4px;
	}
	.main-section h1 {
		font-size: 1.22rem;
	}
	.features-grid {
		grid-template-columns: 1fr;
        gap: 16px;
        padding: 0;
	}
	.feature-card {
		padding: 18px 8px 16px 12px;
	}
}