/* ==========================================================================
   Pestco - Main Stylesheet
   ========================================================================== */

:root {
	--pestco-accent: #4caf50;
	--pestco-accent-dark: #388e3c;
	--pestco-dark: #1b2a3a;
	--pestco-darker: #12202e;
	--pestco-text: #5a6a7a;
	--pestco-heading: #1b2a3a;
	--pestco-light: #f5f8fa;
	--pestco-border: #e6ecf1;
	--pestco-white: #ffffff;
	--pestco-radius: 8px;
	--pestco-shadow: 0 10px 30px rgba(27, 42, 58, 0.08);
	--pestco-shadow-lg: 0 20px 50px rgba(27, 42, 58, 0.14);
	--pestco-transition: all 0.3s ease;
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 16px;
	line-height: 1.7;
	color: var(--pestco-text);
	background: var(--pestco-white);
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Poppins', sans-serif;
	color: var(--pestco-heading);
	line-height: 1.25;
	margin: 0 0 0.6em;
	font-weight: 700;
}

a {
	color: var(--pestco-accent);
	text-decoration: none;
	transition: var(--pestco-transition);
}

a:hover {
	color: var(--pestco-accent-dark);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

p {
	margin: 0 0 1rem;
}

ul, ol {
	margin: 0 0 1rem;
	padding-left: 1.2rem;
}

/* ---------- Layout helpers ---------- */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.section {
	padding: 90px 0;
}

.section-light {
	background: var(--pestco-light);
}

.section-dark {
	background: var(--pestco-dark);
	color: rgba(255, 255, 255, 0.8);
}

.section-header {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 55px;
}

.section-header .subtitle {
	display: inline-block;
	color: var(--pestco-accent);
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.section-header h2 {
	font-size: 38px;
	margin-bottom: 15px;
}

.section-header p {
	font-size: 17px;
}

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

/* ---------- Buttons ---------- */
.btn {
	display: inline-block;
	padding: 14px 34px;
	background: var(--pestco-accent);
	color: #fff;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 15px;
	border: 2px solid var(--pestco-accent);
	border-radius: 50px;
	cursor: pointer;
	transition: var(--pestco-transition);
	text-align: center;
}

.btn:hover {
	background: var(--pestco-accent-dark);
	border-color: var(--pestco-accent-dark);
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 12px 24px rgba(76, 175, 80, 0.3);
}

.btn-outline {
	background: transparent;
	color: #fff;
	border-color: #fff;
}

.btn-outline:hover {
	background: #fff;
	color: var(--pestco-heading);
	border-color: #fff;
}

.btn-dark {
	background: var(--pestco-dark);
	border-color: var(--pestco-dark);
}

.btn-dark:hover {
	background: var(--pestco-darker);
	border-color: var(--pestco-darker);
}

/* ==========================================================================
   Top bar
   ========================================================================== */
.top-bar {
	background: var(--pestco-darker);
	color: rgba(255, 255, 255, 0.75);
	font-size: 14px;
	padding: 10px 0;
}

.top-bar .container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

.top-bar-info {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
}

.top-bar-info span i {
	color: var(--pestco-accent);
	margin-right: 7px;
}

.top-bar-social a {
	color: rgba(255, 255, 255, 0.75);
	margin-left: 15px;
	font-size: 15px;
}

.top-bar-social a:hover {
	color: var(--pestco-accent);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
	background: #fff;
	box-shadow: 0 2px 20px rgba(27, 42, 58, 0.06);
	position: sticky;
	top: 0;
	z-index: 999;
}

.site-header.is-scrolled {
	box-shadow: 0 4px 24px rgba(27, 42, 58, 0.12);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 0;
}

.site-branding {
	display: flex;
	align-items: center;
	gap: 12px;
}

.site-branding .custom-logo-link img {
	max-height: 50px;
	width: auto;
}

.site-title {
	font-family: 'Poppins', sans-serif;
	font-size: 26px;
	font-weight: 800;
	margin: 0;
	line-height: 1;
}

.site-title a {
	color: var(--pestco-heading);
}

.site-title a span {
	color: var(--pestco-accent);
}

.site-description {
	margin: 2px 0 0;
	font-size: 13px;
	color: var(--pestco-text);
}

/* Navigation */
.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 4px;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	padding: 10px 16px;
	color: var(--pestco-heading);
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 15px;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
	color: var(--pestco-accent);
}

.main-navigation .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 210px;
	background: #fff;
	box-shadow: var(--pestco-shadow);
	border-radius: var(--pestco-radius);
	padding: 8px 0;
	flex-direction: column;
	gap: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: var(--pestco-transition);
	z-index: 100;
}

.main-navigation li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.main-navigation .sub-menu a {
	padding: 9px 20px;
	font-size: 14px;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 18px;
}

.header-actions .btn {
	padding: 11px 24px;
}

/* Mobile toggle */
.menu-toggle {
	display: none;
	background: transparent;
	border: 0;
	font-size: 24px;
	color: var(--pestco-heading);
	cursor: pointer;
	padding: 6px;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
	position: relative;
	background: linear-gradient(120deg, var(--pestco-dark) 0%, #24405a 100%);
	color: #fff;
	overflow: hidden;
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.05)"/></svg>');
	pointer-events: none;
}

.hero-bg-image {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.25;
}

.hero-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 40px;
	min-height: 620px;
	padding: 70px 0;
}

.hero-content .hero-subtitle {
	display: inline-block;
	color: var(--pestco-accent);
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-size: 15px;
	margin-bottom: 18px;
}

.hero-title {
	color: #fff;
	font-size: 54px;
	line-height: 1.15;
	margin-bottom: 20px;
}

.hero-desc {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.85);
	max-width: 520px;
	margin-bottom: 30px;
}

.hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.hero-visual {
	position: relative;
	text-align: center;
}

.hero-visual .hero-badge {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 16px;
	padding: 40px;
	backdrop-filter: blur(4px);
}

.hero-badge .hero-badge-icon {
	font-size: 90px;
	color: var(--pestco-accent);
	margin-bottom: 20px;
}

.hero-badge h3 {
	color: #fff;
	font-size: 26px;
}

.hero-badge p {
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
}

/* ==========================================================================
   Feature bar (under hero)
   ========================================================================== */
.feature-bar {
	background: var(--pestco-accent);
	color: #fff;
}

.feature-bar .container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 32px 30px;
	border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.feature-item:last-child {
	border-right: 0;
}

.feature-item i {
	font-size: 40px;
	opacity: 0.9;
}

.feature-item h4 {
	color: #fff;
	margin: 0 0 3px;
	font-size: 19px;
}

.feature-item p {
	margin: 0;
	color: rgba(255, 255, 255, 0.85);
	font-size: 14px;
}

/* ==========================================================================
   Services
   ========================================================================== */
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.service-card {
	background: #fff;
	border: 1px solid var(--pestco-border);
	border-radius: var(--pestco-radius);
	padding: 40px 30px;
	text-align: center;
	transition: var(--pestco-transition);
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 4px;
	width: 100%;
	background: var(--pestco-accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: var(--pestco-transition);
}

.service-card:hover {
	box-shadow: var(--pestco-shadow-lg);
	transform: translateY(-8px);
	border-color: transparent;
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-icon {
	width: 84px;
	height: 84px;
	margin: 0 auto 22px;
	border-radius: 50%;
	background: rgba(76, 175, 80, 0.1);
	color: var(--pestco-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	transition: var(--pestco-transition);
}

.service-card:hover .service-icon {
	background: var(--pestco-accent);
	color: #fff;
}

.service-card h3 {
	font-size: 21px;
	margin-bottom: 12px;
}

.service-card h3 a {
	color: var(--pestco-heading);
}

.service-card h3 a:hover {
	color: var(--pestco-accent);
}

.service-card .read-more {
	display: inline-block;
	margin-top: 12px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 14px;
}

.service-card .read-more i {
	margin-left: 6px;
	font-size: 12px;
}

/* ==========================================================================
   About
   ========================================================================== */
.about-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.about-image {
	position: relative;
}

.about-image img {
	border-radius: var(--pestco-radius);
	box-shadow: var(--pestco-shadow);
}

.about-image .experience-badge {
	position: absolute;
	bottom: -25px;
	right: -20px;
	background: var(--pestco-accent);
	color: #fff;
	padding: 25px 30px;
	border-radius: var(--pestco-radius);
	text-align: center;
	box-shadow: var(--pestco-shadow-lg);
}

.experience-badge .num {
	font-family: 'Poppins', sans-serif;
	font-size: 40px;
	font-weight: 800;
	line-height: 1;
}

.experience-badge .label {
	font-size: 14px;
}

.about-content h2 {
	font-size: 36px;
}

.about-list {
	list-style: none;
	padding: 0;
	margin: 20px 0 25px;
}

.about-list li {
	position: relative;
	padding-left: 32px;
	margin-bottom: 12px;
	font-family: 'Poppins', sans-serif;
	color: var(--pestco-heading);
	font-weight: 500;
}

.about-list li i {
	position: absolute;
	left: 0;
	top: 4px;
	color: var(--pestco-accent);
}

/* ==========================================================================
   Why choose us
   ========================================================================== */
.why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.why-card {
	text-align: center;
	padding: 30px 20px;
}

.why-card .why-icon {
	width: 90px;
	height: 90px;
	margin: 0 auto 20px;
	border-radius: 20px;
	background: #fff;
	box-shadow: var(--pestco-shadow);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 38px;
	color: var(--pestco-accent);
	transition: var(--pestco-transition);
}

.why-card:hover .why-icon {
	background: var(--pestco-accent);
	color: #fff;
	transform: rotate(-8deg);
}

.why-card h4 {
	font-size: 19px;
	margin-bottom: 8px;
}

/* ==========================================================================
   Counters
   ========================================================================== */
.counters {
	background: var(--pestco-dark);
	color: #fff;
}

.counters .container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	text-align: center;
}

.counter-item .counter-num {
	font-family: 'Poppins', sans-serif;
	font-size: 46px;
	font-weight: 800;
	color: var(--pestco-accent);
	line-height: 1;
}

.counter-item .counter-label {
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 15px;
}

/* ==========================================================================
   Team
   ========================================================================== */
.team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.team-card {
	background: #fff;
	border-radius: var(--pestco-radius);
	overflow: hidden;
	box-shadow: var(--pestco-shadow);
	transition: var(--pestco-transition);
}

.team-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--pestco-shadow-lg);
}

.team-photo {
	position: relative;
	overflow: hidden;
}

.team-photo img {
	width: 100%;
	transition: var(--pestco-transition);
}

.team-card:hover .team-photo img {
	transform: scale(1.06);
}

.team-social {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 10px;
	padding: 14px;
	background: linear-gradient(transparent, rgba(27, 42, 58, 0.85));
	transform: translateY(100%);
	transition: var(--pestco-transition);
}

.team-card:hover .team-social {
	transform: translateY(0);
}

.team-social a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #fff;
	color: var(--pestco-heading);
	display: flex;
	align-items: center;
	justify-content: center;
}

.team-social a:hover {
	background: var(--pestco-accent);
	color: #fff;
}

.team-info {
	text-align: center;
	padding: 22px 16px;
}

.team-info h4 {
	margin: 0 0 4px;
	font-size: 19px;
}

.team-info span {
	color: var(--pestco-accent);
	font-size: 14px;
	font-family: 'Poppins', sans-serif;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.testimonial-card {
	background: #fff;
	border-radius: var(--pestco-radius);
	padding: 35px 30px;
	box-shadow: var(--pestco-shadow);
	position: relative;
}

.testimonial-card .quote-icon {
	font-size: 40px;
	color: rgba(76, 175, 80, 0.2);
	margin-bottom: 10px;
}

.testimonial-card .stars {
	color: #ffb400;
	margin-bottom: 12px;
}

.testimonial-text {
	font-style: italic;
	margin-bottom: 20px;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 14px;
}

.testimonial-author .avatar {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: var(--pestco-accent);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 20px;
}

.testimonial-author h5 {
	margin: 0;
	font-size: 17px;
}

.testimonial-author span {
	font-size: 14px;
}

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
	background: var(--pestco-accent);
	color: #fff;
	padding: 60px 0;
}

.cta-banner .container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
}

.cta-banner h2 {
	color: #fff;
	margin: 0;
	font-size: 32px;
}

.cta-banner p {
	margin: 6px 0 0;
	color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   Blog
   ========================================================================== */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.post-card {
	background: #fff;
	border-radius: var(--pestco-radius);
	overflow: hidden;
	box-shadow: var(--pestco-shadow);
	transition: var(--pestco-transition);
	display: flex;
	flex-direction: column;
}

.post-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--pestco-shadow-lg);
}

.post-thumb {
	position: relative;
	overflow: hidden;
	aspect-ratio: 3 / 2;
	background: var(--pestco-light);
}

.post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--pestco-transition);
}

.post-card:hover .post-thumb img {
	transform: scale(1.06);
}

.post-thumb .post-date {
	position: absolute;
	left: 16px;
	bottom: 16px;
	background: var(--pestco-accent);
	color: #fff;
	padding: 8px 14px;
	border-radius: 6px;
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	line-height: 1.2;
}

.post-thumb .post-date .day {
	font-size: 20px;
	display: block;
}

.post-body {
	padding: 25px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.post-meta {
	font-size: 13px;
	color: var(--pestco-text);
	margin-bottom: 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.post-meta i {
	color: var(--pestco-accent);
	margin-right: 5px;
}

.post-body h3 {
	font-size: 21px;
	margin-bottom: 12px;
}

.post-body h3 a {
	color: var(--pestco-heading);
}

.post-body h3 a:hover {
	color: var(--pestco-accent);
}

.post-body .read-more {
	margin-top: auto;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 14px;
	align-self: flex-start;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-inner {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 45px;
}

.contact-info-box {
	display: flex;
	gap: 18px;
	background: #fff;
	padding: 24px;
	border-radius: var(--pestco-radius);
	box-shadow: var(--pestco-shadow);
	margin-bottom: 22px;
}

.contact-info-box .icon {
	width: 56px;
	height: 56px;
	flex-shrink: 0;
	border-radius: 50%;
	background: rgba(76, 175, 80, 0.1);
	color: var(--pestco-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
}

.contact-info-box h4 {
	margin: 0 0 4px;
	font-size: 18px;
}

.contact-info-box p {
	margin: 0;
}

.contact-form {
	background: #fff;
	padding: 40px;
	border-radius: var(--pestco-radius);
	box-shadow: var(--pestco-shadow);
}

.contact-form .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.contact-form label {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	color: var(--pestco-heading);
	margin-bottom: 6px;
	font-size: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
	width: 100%;
	padding: 13px 16px;
	border: 1px solid var(--pestco-border);
	border-radius: 6px;
	font-family: inherit;
	font-size: 15px;
	margin-bottom: 18px;
	transition: var(--pestco-transition);
	background: var(--pestco-light);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
	outline: none;
	border-color: var(--pestco-accent);
	background: #fff;
}

.contact-form textarea {
	min-height: 130px;
	resize: vertical;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
	background: var(--pestco-darker);
	color: rgba(255, 255, 255, 0.7);
}

.footer-widgets {
	padding: 70px 0 40px;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
	gap: 40px;
}

.site-footer .widget-title {
	color: #fff;
	font-size: 19px;
	margin-bottom: 22px;
	position: relative;
	padding-bottom: 12px;
}

.site-footer .widget-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 3px;
	background: var(--pestco-accent);
}

.site-footer .widget {
	margin-bottom: 0;
}

.site-footer a {
	color: rgba(255, 255, 255, 0.7);
}

.site-footer a:hover {
	color: var(--pestco-accent);
}

.site-footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.site-footer .widget li {
	padding: 6px 0;
}

.footer-about .footer-logo {
	font-family: 'Poppins', sans-serif;
	font-size: 26px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 16px;
	display: inline-block;
}

.footer-about .footer-logo span {
	color: var(--pestco-accent);
}

.footer-social {
	display: flex;
	gap: 10px;
	margin-top: 18px;
}

.footer-social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.footer-social a:hover {
	background: var(--pestco-accent);
	color: #fff;
}

.footer-contact-item {
	display: flex;
	gap: 12px;
	margin-bottom: 14px;
}

.footer-contact-item i {
	color: var(--pestco-accent);
	margin-top: 4px;
}

.site-info {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 22px 0;
	font-size: 14px;
}

.site-info .container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
}

.site-info .footer-menu {
	display: flex;
	gap: 20px;
}

/* ==========================================================================
   Page / blog templates
   ========================================================================== */
.page-hero {
	background: linear-gradient(120deg, var(--pestco-dark) 0%, #24405a 100%);
	color: #fff;
	text-align: center;
	padding: 80px 0;
	position: relative;
}

.page-hero h1 {
	color: #fff;
	font-size: 42px;
	margin-bottom: 10px;
}

.page-hero .breadcrumbs {
	color: rgba(255, 255, 255, 0.8);
	font-size: 15px;
}

.page-hero .breadcrumbs a {
	color: #fff;
}

.content-area-wrap {
	padding: 80px 0;
}

.content-with-sidebar {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 45px;
}

body.no-sidebar .content-with-sidebar {
	grid-template-columns: 1fr;
}

.entry {
	background: #fff;
	margin-bottom: 40px;
}

.entry-title {
	font-size: 30px;
	margin-bottom: 14px;
}

.entry-title a {
	color: var(--pestco-heading);
}

.entry-title a:hover {
	color: var(--pestco-accent);
}

.entry-thumb {
	margin-bottom: 22px;
	border-radius: var(--pestco-radius);
	overflow: hidden;
}

.entry-meta {
	font-size: 14px;
	margin-bottom: 16px;
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.entry-meta i {
	color: var(--pestco-accent);
	margin-right: 5px;
}

.entry-content {
	margin-bottom: 20px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3 {
	margin-top: 1.5em;
}

.entry-content blockquote {
	border-left: 4px solid var(--pestco-accent);
	background: var(--pestco-light);
	padding: 18px 24px;
	margin: 20px 0;
	font-style: italic;
}

.entry-content img {
	border-radius: var(--pestco-radius);
}

.read-more-btn {
	display: inline-block;
	margin-top: 8px;
}

/* Sidebar widgets */
.widget-area .widget {
	background: #fff;
	border: 1px solid var(--pestco-border);
	border-radius: var(--pestco-radius);
	padding: 26px;
	margin-bottom: 30px;
}

.widget-area .widget-title {
	font-size: 19px;
	margin-bottom: 18px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--pestco-light);
	position: relative;
}

.widget-area .widget-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 45px;
	height: 2px;
	background: var(--pestco-accent);
}

.widget-area ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.widget-area li {
	padding: 8px 0;
	border-bottom: 1px solid var(--pestco-light);
}

.widget-area li:last-child {
	border-bottom: 0;
}

.widget-area a {
	color: var(--pestco-text);
}

.widget-area a:hover {
	color: var(--pestco-accent);
}

.search-form {
	display: flex;
}

.search-form .search-field {
	flex: 1;
	padding: 11px 14px;
	border: 1px solid var(--pestco-border);
	border-radius: 6px 0 0 6px;
	font-family: inherit;
}

.search-form .search-submit {
	border: 0;
	background: var(--pestco-accent);
	color: #fff;
	padding: 0 18px;
	border-radius: 0 6px 6px 0;
	cursor: pointer;
}

/* Pagination */
.pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 20px;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border-radius: 6px;
	background: #fff;
	border: 1px solid var(--pestco-border);
	color: var(--pestco-heading);
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
	background: var(--pestco-accent);
	color: #fff;
	border-color: var(--pestco-accent);
}

/* Comments */
.comments-area {
	margin-top: 40px;
}

.comment-list {
	list-style: none;
	padding: 0;
}

.comment-list .comment-body {
	background: var(--pestco-light);
	border-radius: var(--pestco-radius);
	padding: 22px;
	margin-bottom: 20px;
}

.comment-list .children {
	list-style: none;
	padding-left: 40px;
}

.comment-author {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: var(--pestco-heading);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid var(--pestco-border);
	border-radius: 6px;
	margin-bottom: 16px;
	font-family: inherit;
	background: var(--pestco-light);
}

/* 404 */
.error-404 {
	text-align: center;
	padding: 40px 0;
}

.error-404 .big {
	font-family: 'Poppins', sans-serif;
	font-size: 120px;
	font-weight: 800;
	color: var(--pestco-accent);
	line-height: 1;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991px) {
	.section-header h2,
	.hero-title { font-size: 40px; }

	.hero-inner {
		grid-template-columns: 1fr;
		text-align: center;
		min-height: auto;
	}

	.hero-desc { margin-left: auto; margin-right: auto; }
	.hero-buttons { justify-content: center; }
	.hero-visual { display: none; }

	.services-grid,
	.testimonials-grid,
	.blog-grid { grid-template-columns: repeat(2, 1fr); }

	.why-grid,
	.team-grid,
	.counters .container { grid-template-columns: repeat(2, 1fr); }

	.feature-bar .container { grid-template-columns: 1fr; }
	.feature-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.18); }
	.feature-item:last-child { border-bottom: 0; }

	.about-inner,
	.contact-inner,
	.content-with-sidebar { grid-template-columns: 1fr; }

	.about-image .experience-badge { right: 20px; }

	.footer-widgets { grid-template-columns: repeat(2, 1fr); }

	/* Mobile nav */
	.menu-toggle { display: block; }

	.main-navigation {
		position: fixed;
		top: 0;
		right: -300px;
		width: 280px;
		height: 100vh;
		background: #fff;
		box-shadow: -4px 0 24px rgba(0,0,0,0.15);
		padding: 70px 20px 20px;
		overflow-y: auto;
		transition: right 0.35s ease;
		z-index: 1000;
	}

	.main-navigation.is-open { right: 0; }

	.main-navigation ul { flex-direction: column; align-items: stretch; gap: 0; }

	.main-navigation .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		padding-left: 15px;
	}

	.menu-close {
		display: block;
		position: absolute;
		top: 18px;
		right: 18px;
		background: transparent;
		border: 0;
		font-size: 24px;
		cursor: pointer;
		color: var(--pestco-heading);
	}

	.nav-overlay {
		position: fixed;
		inset: 0;
		background: rgba(0,0,0,0.5);
		opacity: 0;
		visibility: hidden;
		transition: var(--pestco-transition);
		z-index: 999;
	}

	.nav-overlay.is-open { opacity: 1; visibility: visible; }
}

.menu-close { display: none; }

@media (max-width: 640px) {
	.section { padding: 60px 0; }
	.hero-title { font-size: 32px; }
	.section-header h2 { font-size: 30px; }

	.services-grid,
	.testimonials-grid,
	.blog-grid,
	.why-grid,
	.team-grid,
	.counters .container,
	.footer-widgets { grid-template-columns: 1fr; }

	.contact-form .form-row { grid-template-columns: 1fr; }
	.top-bar .container { justify-content: center; text-align: center; }
	.cta-banner .container { flex-direction: column; text-align: center; }
	.site-info .container { flex-direction: column; text-align: center; }
	.site-info .footer-menu { justify-content: center; }
}
