/* ==========================================================================
   Alltek Services Plugin – Frontend Styles
   ========================================================================== */

/* ---------- Hero sections ---------- */
.alltek-hero {
	padding: 60px 24px;
	text-align: center;
}

.alltek-hero-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.alltek-hero h1,
.alltek-hero h2 {
	color: #fff;
	font-size: 2.2rem;
	font-weight: 800;
	text-transform: uppercase;
	margin: 0 0 8px;
}

.alltek-hero p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.05rem;
	margin: 0;
}

/* ---------- Content sections ---------- */
.alltek-content-section {
	padding: 50px 24px;
}

.alltek-content-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.alltek-content-inner h2 {
	color: #1B2A4A;
	font-size: 1.6rem;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 24px;
}

/* ---------- Archive grid ---------- */
.alltek-archive-section {
	padding: 50px 24px;
}

.alltek-archive-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.alltek-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 24px;
}

/* ---------- Cards ---------- */
.alltek-card {
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 8px;
	padding: 30px;
	transition: box-shadow 0.2s, transform 0.2s;
}

.alltek-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.alltek-card h3 {
	font-size: 1.15rem;
	font-weight: 700;
	color: #1B2A4A;
	margin: 0 0 10px;
	text-transform: uppercase;
}

.alltek-card h3 a {
	color: #1B2A4A;
	text-decoration: none;
}

.alltek-card h3 a:hover {
	color: #E63946;
}

.alltek-card h4 {
	font-size: 1rem;
	font-weight: 700;
	color: #1B2A4A;
	margin: 0 0 6px;
}

.alltek-card h4 a {
	color: #1B2A4A;
	text-decoration: none;
}

.alltek-card h4 a:hover {
	color: #E63946;
}

.alltek-card p {
	color: #555;
	font-size: 0.9rem;
	line-height: 1.6;
	margin: 0 0 14px;
}

.alltek-card-small {
	padding: 20px;
}

.alltek-card-link {
	color: #E63946;
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
}

.alltek-card-link:hover {
	text-decoration: underline;
}

/* ---------- Related / alternate sections ---------- */
.alltek-related-section {
	padding: 50px 24px;
}

/* ---------- CTA section ---------- */
.alltek-cta-section {
	padding: 60px 24px;
	text-align: center;
}

.alltek-cta-section h2 {
	color: #fff;
}

.alltek-cta-section p {
	color: rgba(255, 255, 255, 0.85);
}

.alltek-cta-button {
	display: inline-block;
	background: #E63946;
	color: #fff;
	padding: 14px 32px;
	border-radius: 4px;
	font-weight: 700;
	font-size: 0.95rem;
	text-transform: uppercase;
	text-decoration: none;
	margin: 20px 12px 0;
	transition: background 0.2s;
}

.alltek-cta-button:hover {
	background: #C62833;
	color: #fff;
}

.alltek-cta-phone {
	display: inline-block;
	color: #fff;
	font-weight: 700;
	font-size: 1.3rem;
	text-decoration: none;
	margin: 20px 12px 0;
}

.alltek-cta-phone:hover {
	color: #E63946;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
	.alltek-card-grid {
		grid-template-columns: 1fr;
	}

	.alltek-hero h1,
	.alltek-hero h2 {
		font-size: 1.6rem;
	}
}
