/*
Theme Name: Vision Pest
Theme URI: https://www.evaxes.com
Author: Evaxes
Author URI: https://www.evaxes.com
Description: A premium WordPress theme for Vision Pest control services, developed by Evaxes.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: visionpest
Tags: pest-control, business, services, clean, modern, responsive

Developer: Evaxes
Developer URI: https://www.evaxes.com
Email: info@evaxes.com
*/

/* ==========================================================================
   CSS Custom Properties (Design System)
   ========================================================================== */
:root {
	/* Colors */
	--color-primary: #181818;      /* Brand Black */
	--color-primary-dark: #0a0a0a; /* Deep Black */
	--color-secondary: #008037;    /* Brand Green */
	--color-secondary-hover: #00662c;
	--color-accent: #d32f2f;       /* Little Red */
	--color-dark: #111111;         /* Charcoal Black */
	--color-light: #f7f9fa;        /* Premium Light background */
	--color-border: #e2e8f0;       /* Border Grey */
	--color-white: #ffffff;
	
	/* Typography */
	--font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--font-secondary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	
	/* Layout & Spacing */
	--container-width: 1200px;
	--header-height-top: 40px;
	--header-height-main: 80px;
	--transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--shadow-subtle: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
	--shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
	--shadow-premium: 0 20px 25px -5px rgba(10, 42, 75, 0.1), 0 10px 10px -5px rgba(10, 42, 75, 0.04);
	--border-radius: 12px;
	--border-radius-sm: 6px;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
	box-sizing: border-box;
}

html, body {
	overflow-x: clip;
}

body {
	margin: 0;
	padding: 0;
	font-family: var(--font-secondary);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-dark);
	background-color: var(--color-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-primary);
	font-weight: 700;
	line-height: 1.25;
	color: var(--color-primary-dark);
	margin-top: 0;
	margin-bottom: 0.5em;
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: clamp(1.1rem, 1.5vw, 1.25rem); }
h6 { font-size: clamp(1rem, 1vw, 1rem); }

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: var(--transition-smooth);
}

a:hover {
	color: var(--color-secondary);
}

/* Accessibility */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.skip-link {
	position: absolute;
	top: -100px;
	left: 0;
	background: var(--color-secondary);
	color: var(--color-white);
	padding: 10px 20px;
	z-index: 99999;
	transition: top 0.2s ease;
}

.skip-link:focus {
	top: 0;
}

/* Layout Container */
.container {
	width: 100%;
	max-width: var(--container-width);
	margin-right: auto;
	margin-left: auto;
	padding-right: 20px;
	padding-left: 20px;
}

/* ==========================================================================
   Buttons & UI Elements
   ========================================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-primary);
	font-weight: 600;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	user-select: none;
	border: 2px solid transparent;
	padding: 12px 28px;
	font-size: 15px;
	line-height: 1.5;
	border-radius: 50px;
	transition: var(--transition-smooth);
	cursor: pointer;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.btn::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.2);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.4s ease-out;
	z-index: -1;
}

.btn:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.btn-primary {
	background-color: var(--color-secondary);
	border-color: var(--color-secondary);
	color: var(--color-white);
	box-shadow: 0 4px 14px rgba(0, 128, 55, 0.3);
}

.btn-primary:hover {
	color: var(--color-white);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 128, 55, 0.5);
}

.btn-primary:active {
	transform: translateY(0);
}

/* ==========================================================================
   Header Section
   ========================================================================== */
.site-header {
	background-color: var(--color-white);
	box-shadow: var(--shadow-subtle);
	position: sticky;
	top: 0;
	z-index: 1000;
}

/* Top bar contact details */
.header-top {
	background-color: var(--color-primary-dark);
	color: rgba(255, 255, 255, 0.85);
	font-size: 13px;
	padding: 8px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-top-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.contact-info {
	display: flex;
	gap: 20px;
}

.info-item {
	display: flex;
	align-items: center;
	gap: 6px;
}

.info-item svg {
	opacity: 0.8;
}

.info-item a {
	color: rgba(255, 255, 255, 0.9);
}

.info-item a:hover {
	color: var(--color-secondary-hover);
}

.opening-hours {
	opacity: 0.9;
}

/* Main Header Navbar */
.header-main {
	height: var(--header-height-main);
	display: flex;
	align-items: center;
}

.header-main-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

.header-action {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.site-branding .site-title {
	font-size: 24px;
	font-weight: 800;
	margin-bottom: 0;
}

.site-branding .site-title a {
	color: var(--color-primary-dark);
	background: linear-gradient(120deg, var(--color-primary), var(--color-secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}

.site-branding .site-description {
	font-size: 11px;
	margin: 0;
	color: var(--color-accent);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Main Navigation Menu */
.main-navigation {
	height: 100%;
	display: flex;
	align-items: center;
}

.main-navigation ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	height: 100%;
	align-items: center;
}

.main-navigation li {
	margin: 0 16px;
	position: relative;
}

.main-navigation a {
	font-family: var(--font-primary);
	font-weight: 600;
	font-size: 15px;
	color: var(--color-primary-dark);
	padding: 8px 4px;
	display: block;
	position: relative;
}

.main-navigation a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--color-secondary);
	transition: var(--transition-smooth);
}

.main-navigation a:hover {
	color: var(--color-secondary);
}

.main-navigation a:hover::after {
	width: 100%;
}

/* Mobile Toggle Hamburger button */
.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 24px;
	height: 18px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1001;
}

.menu-toggle .bar {
	width: 100%;
	height: 3px;
	background-color: var(--color-primary-dark);
	border-radius: 2px;
	transition: var(--transition-smooth);
}

/* ==========================================================================
   Content Area
   ========================================================================== */
.site-content {
	padding: 60px 0;
	min-height: calc(100vh - 400px);
	background-color: var(--color-light);
}

/* Remove top padding on the homepage so the Hero Banner touches the header */
.home .site-content {
	padding: 0;
}

/* Sample Article Cards styling */
article {
	background: var(--color-white);
	border-radius: var(--border-radius);
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: var(--shadow-subtle);
	border: 1px solid var(--color-border);
	transition: var(--transition-smooth);
}

/* Removed article:hover transform for better reading experience */

.entry-title {
	font-size: 26px;
	margin-bottom: 15px;
}

.entry-title a {
	color: var(--color-primary-dark);
}

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

.entry-content {
	color: var(--color-accent);
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.site-footer {
	background-color: var(--color-primary-dark);
	color: var(--color-white);
	padding-top: 60px;
}

.footer-widgets {
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-widgets-container {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
}

.footer-title {
	color: var(--color-white);
	font-size: 20px;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.footer-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background-color: var(--color-secondary);
	border-radius: 2px;
}

.footer-desc {
	color: rgba(255, 255, 255, 0.7);
	max-width: 360px;
}

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

.footer-menu-list li {
	margin-bottom: 10px;
}

.footer-menu-list a {
	color: rgba(255, 255, 255, 0.7);
	display: block;
}

.footer-menu-list a:hover {
	color: var(--color-secondary-hover);
	padding-left: 5px;
}

.contact-col p {
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 12px;
}

.contact-col a {
	color: var(--color-white);
}

.contact-col a:hover {
	color: var(--color-secondary-hover);
}

/* Copyright Bar */
.site-info {
	background-color: rgba(0, 0, 0, 0.2);
	padding: 20px 0;
	font-size: 14px;
}

.site-info-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: rgba(255, 255, 255, 0.6);
}

.site-info a {
	color: rgba(255, 255, 255, 0.8);
}

.site-info a:hover {
	color: var(--color-secondary-hover);
}

.developer-info a {
	font-weight: 600;
	color: var(--color-white);
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 991px) {
	.footer-widgets-container {
		grid-template-columns: 1fr 1fr;
	}
	.about-col {
		grid-column: span 2;
	}
	.header-action .btn {
		display: none;
	}
}

@media (max-width: 768px) {
	:root {
		--header-height-main: 70px;
	}
	
	.header-top {
		display: none; /* Hide top info bar on smaller screens */
	}
	
	.menu-toggle {
		display: flex;
	}
	
	.footer-widgets-container {
		grid-template-columns: 1fr;
	}
	
	.about-col {
		grid-column: span 1;
	}
	
	.site-info-container {
		flex-direction: column;
		gap: 10px;
		text-align: center;
	}



	.cta-buttons {
		flex-direction: column;
		gap: 15px;
	}
}

/* ==========================================================================
   Grid System & Utilities (Simplified)
   ========================================================================== */
.row {
	display: flex;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}
.align-items-center { align-items: center; }
.col-6, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-4, .col-md-5, .col-md-7, .col-md-8 {
	position: relative;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
}
.col-6 { flex: 0 0 50%; max-width: 50%; }
@media (min-width: 992px) {
	.col-lg-3 { flex: 0 0 25%; max-width: 25%; }
	.col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
	.col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
	.col-lg-6 { flex: 0 0 50%; max-width: 50%; }
	.col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
	.col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
	.col-lg-9 { flex: 0 0 75%; max-width: 75%; }
	.d-lg-none { display: none !important; }
	.d-lg-block { display: block !important; }
}

@media (min-width: 768px) {
	.col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
	.col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
	.col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
	.col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
	.d-md-none { display: none !important; }
	.d-md-block { display: block !important; }
}

@media (min-width: 1200px) {
	.d-xl-none { display: none !important; }
	.d-xl-block { display: block !important; }
}

.d-none { display: none !important; }
.d-block { display: block !important; }

.section-padding { padding: 30px 0; }
.bg-light { background-color: var(--color-light); }
.bg-primary { background-color: var(--color-primary); }
.text-white { color: var(--color-white); }
.text-white p, .text-white h2, .text-white ul { color: var(--color-white); }

.btn-outline-white {
	background: transparent;
	border: 2px solid var(--color-white);
	color: var(--color-white);
	margin-left: 15px;
}
.btn-outline-white:hover {
	background: var(--color-white);
	color: var(--color-primary);
}
.btn-lg { padding: 15px 35px; font-size: 1.1rem; }

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
	height: 100vh;
	min-height: 600px;
	position: relative;
	display: flex;
	align-items: center;
	color: #ffffff;
	overflow: hidden;
}
.hero-bg-image {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	z-index: 0;
}
.hero-radar-bg {
	position: absolute;
	top: -50%; left: -50%; width: 200%; height: 200%;
	background: conic-gradient(from 0deg, transparent 70%, rgba(35, 211, 127, 0.4) 100%);
	border-radius: 50%;
	z-index: 1;
	animation: radarSpin 6s linear infinite;
	mix-blend-mode: screen;
	pointer-events: none;
}
@keyframes radarSpin {
	100% { transform: rotate(360deg); }
}
.hero-overlay {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: linear-gradient(90deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.6) 100%);
	z-index: 2;
}
.hero-container {
	position: relative;
	z-index: 3;
}
.hero-content {
	max-width: 700px;
}
.hero-title {
	color: var(--color-white);
	font-size: clamp(2.5rem, 8vw, 4.5rem);
	font-weight: 800;
	margin-bottom: 20px;
	letter-spacing: -1px;
	line-height: 1.1;
	text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-subtitle {
	font-size: 1.25rem;
	opacity: 0.95;
	margin-bottom: 40px;
	text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

/* CTA SECTION — Redesigned */
.cta-section {
	position: relative;
	z-index: 1;
	background: linear-gradient(135deg, #008037 0%, #004d21 50%, #181818 100%);
	overflow: hidden;
}
.cta-pattern-overlay {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background-image: repeating-linear-gradient(
		45deg,
		rgba(255,255,255,0.03) 0px,
		rgba(255,255,255,0.03) 1px,
		transparent 1px,
		transparent 12px
	);
	z-index: 1;
	pointer-events: none;
}
.cta-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 30px;
	flex-wrap: wrap;
}
.btn-whatsapp {
	background-color: #25D366;
	border-color: #25D366;
	color: #ffffff;
	box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
	background-color: #1da851;
	border-color: #1da851;
	color: #ffffff;
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   Typewriter Effect
   ========================================================================== */
.typed-text-wrapper {
	display: inline;
}
.typed-text {
	color: var(--color-secondary);
	text-shadow: 0 0 20px rgba(0, 128, 55, 0.4);
}
.cursor {
	display: inline-block;
	color: var(--color-secondary);
	animation: blink 0.8s infinite;
	font-weight: 100;
}
@keyframes blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0; }
}

/* ==========================================================================
   Service Card Enhancements
   ========================================================================== */
.service-link {
	display: inline-block;
	margin-top: 15px;
	color: var(--color-secondary);
	font-weight: 700;
	font-size: 0.95rem;
	transition: var(--transition-smooth);
}
.service-link:hover {
	color: var(--color-secondary-hover);
	transform: translateX(5px);
}
.service-card {
	border-left: 4px solid transparent;
}
.service-card:hover {
	border-left-color: var(--color-secondary);
}
.service-card:hover .service-img-wrapper {
	box-shadow: inset 0 0 30px rgba(0, 128, 55, 0.15);
}

/* ==========================================================================
   Our Process Timeline - Premium Edition
   ========================================================================== */
.process-timeline {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	position: relative;
	margin-top: 70px;
}
.process-timeline::before {
	content: '';
	position: absolute;
	top: 105px;
	left: 10%;
	right: 10%;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(35, 211, 127, 0.2), transparent);
	z-index: 0;
}
.process-timeline::after {
	content: '';
	position: absolute;
	top: 105px;
	left: 10%;
	width: 0%;
	height: 2px;
	background: var(--color-secondary);
	z-index: 0;
	transition: width 1s ease;
	box-shadow: 0 0 10px var(--color-secondary);
}
.process-timeline:hover::after {
	width: 80%;
}
@media (max-width: 991px) {
	.process-timeline::before,
	.process-timeline::after {
		display: none;
	}
}
.process-step {
	text-align: center;
	position: relative;
	z-index: 1;
}
.step-watermark {
	position: absolute;
	top: -55px;
	left: 50%;
	transform: translateX(-50%);
	font-size: clamp(4rem, 10vw, 8rem);
	font-weight: 900;
	color: rgba(35, 211, 127, 0.04);
	z-index: -1;
	line-height: 1;
	font-family: var(--font-primary);
	transition: var(--transition-smooth);
}
.process-step:hover .step-watermark {
	color: rgba(35, 211, 127, 0.08);
	transform: translateX(-50%) translateY(-10px);
}
.step-content-box {
	background: var(--color-white);
	border-radius: var(--border-radius);
	padding: 40px 20px;
	transition: var(--transition-smooth);
	box-shadow: var(--shadow-subtle);
	border-bottom: 3px solid transparent;
	height: 100%;
}
.process-step:hover .step-content-box {
	transform: translateY(-10px);
	box-shadow: var(--shadow-premium);
	border-bottom-color: var(--color-secondary);
}
.step-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	background: var(--color-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-secondary);
	box-shadow: 0 8px 25px rgba(0, 128, 55, 0.15);
	border: 2px solid rgba(35, 211, 127, 0.2);
	transition: var(--transition-smooth);
}
.step-icon svg {
	width: 35px;
	height: 35px;
	transition: var(--transition-smooth);
}
.process-step:hover .step-icon {
	background: var(--color-secondary);
	color: var(--color-white);
	box-shadow: 0 12px 30px rgba(0, 128, 55, 0.3);
	transform: scale(1.1);
}
.process-step h4 {
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--color-primary-dark);
	transition: var(--transition-smooth);
}
.process-step:hover h4 {
	color: var(--color-secondary);
}
.process-step p {
	font-size: 0.9rem;
	color: var(--color-accent);
	line-height: 1.6;
	margin-bottom: 0;
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.whatsapp-float {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	background: #25D366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
	z-index: 9999;
	transition: var(--transition-smooth);
	animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover {
	transform: scale(1.1);
	box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}
@keyframes whatsappPulse {
	0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
	70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
	100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   Back to Top Button
   ========================================================================== */
.back-to-top {
	position: fixed;
	bottom: 100px;
	right: 35px;
	width: 44px;
	height: 44px;
	background: var(--color-secondary);
	color: var(--color-white);
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: var(--transition-smooth);
	z-index: 9998;
	box-shadow: 0 4px 14px rgba(0, 128, 55, 0.3);
}
.back-to-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.back-to-top:hover {
	background: var(--color-secondary-hover);
	transform: translateY(-3px);
}

/* ==========================================================================
   Active Navigation Dot
   ========================================================================== */
.main-navigation a.active-nav {
	color: var(--color-secondary) !important;
}
.main-navigation a.active-nav::after {
	width: 6px !important;
	height: 6px !important;
	border-radius: 50% !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
	bottom: -4px !important;
	background-color: var(--color-secondary) !important;
}

/* ==========================================================================
   Footer Premium Enhancements
   ========================================================================== */
.footer-socials {
	display: flex;
	gap: 12px;
	margin-top: 20px;
}
.social-icon {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255,255,255,0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255,255,255,0.7);
	transition: var(--transition-smooth);
}
.social-icon:hover {
	background: var(--color-secondary);
	color: var(--color-white);
	transform: translateY(-3px);
}
.footer-map {
	margin-top: 10px;
	border-radius: 8px;
	overflow: hidden;
}
.footer-map iframe {
	display: block;
}

/* ==========================================================================
   Micro-Interaction Polish
   ========================================================================== */
.btn:hover {
	transform: translateY(-3px) scale(1.02);
}
.trust-bar .badge {
	text-shadow: 0 0 8px rgba(0, 128, 55, 0.3);
}

/* ==========================================================================
   Section Headings
   ========================================================================== */
.sub-heading {
	color: var(--color-secondary);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	display: block;
	margin-bottom: 10px;
}
.section-heading h2 {
	font-size: clamp(1.8rem, 5vw, 2.5rem);
	margin-bottom: 20px;
}
.heading-desc {
	max-width: 600px;
	margin: 0 auto 40px;
	color: var(--color-accent);
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-image-wrapper img {
	width: 100%;
	height: auto;
	border-radius: var(--border-radius);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 40px;
}
.service-card {
	background: #ffffff;
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: var(--transition-fast);
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(0,0,0,0.05);
}
.service-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-lg);
	border-color: rgba(35, 211, 127, 0.3);
}
.service-img-wrapper {
	width: 100%;
	height: 220px;
	overflow: hidden;
}
.service-img {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: transform 0.5s ease;
}
.service-card:hover .service-img {
	transform: scale(1.1);
}
.service-content {
	padding: 30px;
	flex: 1;
}
.service-list {
	list-style: none;
	padding: 0;
	margin: 15px 0 0 0;
}
.service-list li {
	margin-bottom: 8px;
	padding-left: 24px;
	position: relative;
	font-size: 0.95rem;
}
.service-list li::before {
	content: '✓';
	color: var(--color-accent);
	position: absolute;
	left: 0;
	font-weight: bold;
}

/* ==========================================================================
   Why Us Section
   ========================================================================== */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}
.feature-box {
	text-align: center;
	padding: 40px 20px;
	background: var(--color-white);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-subtle);
	border-bottom: 3px solid transparent;
	transition: var(--transition-smooth);
}
.feature-box:hover {
	border-bottom-color: var(--color-secondary);
	transform: translateY(-5px);
}
.feature-icon {
	font-size: 3rem;
	margin-bottom: 20px;
}

/* ==========================================================================
   Sectors Section
   ========================================================================== */
.sector-list {
	list-style: none;
	padding: 0;
}
.sector-list li {
	margin-bottom: 10px;
	font-size: 1.1rem;
	opacity: 0.9;
}
.sectors-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}
.sector-item {
	background: rgba(255,255,255,0.1);
	padding: 30px;
	border-radius: var(--border-radius);
	text-align: center;
	font-weight: 600;
	border: 1px solid rgba(255,255,255,0.2);
}

/* ==========================================================================
   Animations & Utilities
   ========================================================================== */
html {
	scroll-behavior: smooth;
}

.animate-on-scroll {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate-on-scroll.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* Keep fade-in-up for elements that should animate immediately on load without JS (like Hero content) */
.fade-in-up {
	animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(40px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ==========================================================================
   Trust & Accreditation Bar (Infinite Scroll)
   ========================================================================== */
.trust-bar {
	overflow: hidden;
	white-space: nowrap;
	padding: 15px 0;
	border-bottom: 1px solid var(--color-border);
}
.trust-track {
	display: inline-block;
	animation: scrollTrust 30s linear infinite;
}
.trust-item {
	display: inline-block;
	margin: 0 30px;
	font-weight: 600;
	color: var(--color-primary-dark);
	font-size: 1.1rem;
	vertical-align: middle;
}
.trust-item .badge {
	background: var(--color-accent);
	color: var(--color-white);
	padding: 4px 10px;
	border-radius: 4px;
	font-size: 0.85rem;
}
@keyframes scrollTrust {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* ==========================================================================
   Impact Counters
   ========================================================================== */
.impact-section {
	position: relative;
}
.counter-box {
	padding: 20px;
}
.counter-number {
	font-size: clamp(2rem, 5vw, 4rem);
	font-weight: 800;
	font-family: var(--font-primary);
	margin-bottom: 10px;
	color: var(--color-white);
}
.counter-box p {
	font-size: 1.1rem;
	opacity: 0.9;
	text-transform: uppercase;
	letter-spacing: 1px;
}

@media (max-width: 768px) {
	.impact-section .row {
		flex-wrap: nowrap;
		margin-left: -5px;
		margin-right: -5px;
	}
	.impact-section .col-md-6 {
		flex: 0 0 25%;
		max-width: 25%;
		padding-right: 5px;
		padding-left: 5px;
	}
	.counter-box {
		padding: 5px 0;
	}
	.counter-number {
		font-size: 1.8rem;
		margin-bottom: 5px;
	}
	.counter-box p {
		font-size: 0.65rem;
		letter-spacing: 0;
		line-height: 1.2;
	}
}

/* ==========================================================================
   Tabs Container (Compliance & Safety)
   ========================================================================== */
.safety-section {
	background: #ffffff;
}
.safety-badge-custom {
	position: absolute;
	right: 0;
	top: -60px;
	width: 140px;
	height: 140px;
	z-index: 10;
	pointer-events: none;
}
.shield-glint {
	animation: glintSweep 3s infinite;
}
@keyframes glintSweep {
	0% { transform: translateX(-100%); }
	100% { transform: translateX(100%); }
}
.tabs-container {
	max-width: 900px;
	margin: 2rem auto 0;
}
.tabs-nav {
	display: flex;
	justify-content: center;
	border-bottom: 2px solid var(--color-border);
	margin-bottom: 0.5rem;
}
.tab-btn {
	background: none;
	border: none;
	padding: 15px 30px;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--color-accent);
	cursor: pointer;
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
	transition: var(--transition-smooth);
}
.tab-btn.active, .tab-btn:hover {
	color: var(--color-primary);
	border-bottom-color: var(--color-secondary);
}
.tabs-content-wrapper {
	background: var(--color-white);
	border-radius: var(--border-radius);
	padding: 40px;
}
.tab-pane {
	display: none;
	animation: fadeEffect 0.5s;
}
.tab-pane.active {
	display: block;
}
.icon-huge {
	font-size: clamp(4rem, 10vw, 8rem);
}
@keyframes fadeEffect {
	from {opacity: 0; transform: translateY(10px);}
	to {opacity: 1; transform: translateY(0);}
}



/* ==========================================================================
   Reviews Section
   ========================================================================== */
.reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}
.review-card {
	background: var(--color-white);
	border-radius: var(--border-radius);
	padding: 30px;
	border: 1px solid var(--color-border);
}
.review-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 20px;
}
.reviewer-info {
	display: flex;
	align-items: center;
	gap: 15px;
}
.reviewer-avatar {
	width: 50px; height: 50px;
	background: var(--color-primary);
	color: var(--color-white);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-weight: bold; font-size: 1.2rem;
}
.stars { letter-spacing: 2px; }
.review-text { font-style: italic; color: var(--color-accent); }

/* ==========================================================================
   Blog Section
   ========================================================================== */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
}
.blog-card {
	background: var(--color-white);
	border-radius: var(--border-radius);
	overflow: hidden;
	border: 1px solid var(--color-border);
}
.blog-img { height: 200px; overflow: hidden; background: var(--color-light); }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-content { padding: 25px; }
.blog-meta { font-size: 0.85rem; color: var(--color-secondary); margin-bottom: 10px; font-weight: 600; }
.read-more { font-weight: 700; color: var(--color-primary); }
.read-more:hover { color: var(--color-secondary); }

/* Base Utility Classes */
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-accent { color: var(--color-accent); }

/* ==========================================================================
   Logo Sizing
   ========================================================================== */
.site-logo {
	width: 260px;
	max-width: 100%;
	height: auto;
	display: block;
}
.footer-logo {
	width: 260px;
	max-width: 100%;
	height: auto;
	display: block;
	margin-top: -30px;
	margin-bottom: -10px;
}

@media (max-width: 768px) {
	.site-logo {
		width: 240px;
	}
}
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

/* ==========================================================================
   Advanced UI / UX Enhancements
   ========================================================================== */

/* 1. Custom Scrollbar & Highlight */
::-webkit-scrollbar {
	width: 10px;
}
::-webkit-scrollbar-track {
	background: var(--color-light);
}
::-webkit-scrollbar-thumb {
	background: var(--color-primary);
	border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
	background: var(--color-secondary);
}
::selection {
	background: var(--color-secondary);
	color: var(--color-white);
}

/* 2. Pulsing Glow CTA Button */
.pulse-btn {
	position: relative;
	box-shadow: 0 0 0 0 rgba(245, 130, 32, 0.7);
	animation: pulseGlow 2s infinite;
}
@keyframes pulseGlow {
	0% { box-shadow: 0 0 0 0 rgba(245, 130, 32, 0.7); }
	70% { box-shadow: 0 0 0 15px rgba(245, 130, 32, 0); }
	100% { box-shadow: 0 0 0 0 rgba(245, 130, 32, 0); }
}

/* 3. Transparent-to-Solid Sticky Header */
.home .site-header {
	position: fixed;
	width: 100%;
	top: 0;
	background-color: transparent !important;
	box-shadow: none;
	transition: background-color 0.4s ease, box-shadow 0.4s ease;
}
.home .site-header .header-top {
	background-color: rgba(6, 28, 51, 0.75); /* Dark semi-transparent */
	backdrop-filter: blur(5px);
}
.home .site-header.scrolled {
	background-color: var(--color-white) !important;
	box-shadow: var(--shadow-medium);
}
.home .site-header.scrolled .header-top {
	background-color: var(--color-primary-dark);
}
.home .site-header .main-navigation a {
	color: var(--color-white);
	text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.home .site-header.scrolled .main-navigation a {
	color: var(--color-primary-dark);
	text-shadow: none;
}
/* Note: Since we have negative margins on the logo, the transparent mode handles it gracefully */

/* 4. Preloader - Flying Bee Animation */
#vision-preloader {
	position: fixed;
	top: 0; left: 0; width: 100%; height: 100%;
	background-color: var(--color-white);
	z-index: 999999;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader-scene {
	position: relative;
	width: 300px;
	height: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.preloader-circle {
	width: 150px;
	height: 150px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background: radial-gradient(circle, rgba(35, 211, 127, 0.1) 0%, rgba(35, 211, 127, 0) 70%);
}
.loader-ring {
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	animation: spinRing 2s linear infinite;
	z-index: 1;
}
.loader-arc {
	stroke-dasharray: 200 534;
	stroke-dashoffset: 0;
	filter: drop-shadow(0 0 6px #23d37f);
}
.animated-bee-wrapper {
	width: 120px;
	height: 120px;
	z-index: 2;
}
.animated-bee {
	width: 100%;
	height: 100%;
}
.wing.left-wing {
	transform-origin: 60px 55px;
	animation: flapLeft 0.03s infinite alternate;
}
.wing.right-wing {
	transform-origin: 60px 55px;
	animation: flapRight 0.03s infinite alternate;
}
@keyframes flapLeft {
	0% { transform: scaleX(1) rotate(15deg); }
	100% { transform: scaleX(0.3) rotate(-5deg); }
}
@keyframes flapRight {
	0% { transform: scaleX(1) rotate(-15deg); }
	100% { transform: scaleX(0.3) rotate(5deg); }
}
@keyframes spinRing {
	100% { transform: rotate(360deg); }
}



#vision-preloader.loaded {
	opacity: 0;
	visibility: hidden;
}

/* 5. Off-Canvas Mobile Menu */
@media (max-width: 768px) {
	.main-navigation ul {
		position: fixed !important;
		top: 0 !important;
		right: -400px !important;
		width: 340px !important;
		max-width: 85vw !important;
		height: 100vh !important;
		max-height: 100vh !important;
		background-color: var(--color-primary-dark) !important;
		box-shadow: -5px 0 25px rgba(0,0,0,0.2) !important;
		transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
		z-index: 1000;
		padding-top: 80px !important;
		flex-direction: column;
		align-items: flex-start !important;
		padding-left: 30px !important;
		padding-right: 30px !important;
	}
	.main-navigation.is-open ul {
		right: 0 !important;
	}
	.home .site-header .main-navigation a,
	.main-navigation a {
		color: var(--color-white) !important;
		font-size: 18px !important;
		text-shadow: none !important;
	}
	.main-navigation a:hover {
		color: var(--color-secondary) !important;
	}
	
	/* Off-canvas Overlay */
	.menu-overlay {
		position: fixed;
		top: 0; left: 0; width: 100%; height: 100%;
		background: rgba(0,0,0,0.6);
		backdrop-filter: blur(3px);
		z-index: 999;
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
	}
	.menu-overlay.active {
		opacity: 1;
		visibility: visible;
	}
	
	/* Adjust Hamburger for Dark Background if transparent */
	.home .site-header .menu-toggle .bar {
		background-color: var(--color-white);
	}
	.home .site-header.scrolled .menu-toggle .bar {
		background-color: var(--color-primary-dark);
	}
	
	/* Hamburger Animation */
	.menu-toggle.is-active {
		z-index: 1002;
	}
	.menu-toggle.is-active .bar:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
		background-color: var(--color-white) !important;
	}
	.menu-toggle.is-active .bar:nth-child(2) {
		opacity: 0;
	}
	.menu-toggle.is-active .bar:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
		background-color: var(--color-white) !important;
	}

	/* Adjust header actions for mobile */
	.header-action .btn {
		display: none; /* Hide the Call Now text button on mobile */
	}
	.header-action {
		order: 2;
		margin-left: auto;
		margin-right: 15px;
	}
	.main-navigation {
		order: 3;
	}
	.site-branding {
		order: 1;
	}
}

/* ==========================================================================
   Blog & Single Post Styling
   ========================================================================== */
.blog-archive-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}
.blog-card {
	background: var(--color-white);
	border-radius: var(--border-radius);
	overflow: hidden;
	transition: var(--transition-smooth);
	border-bottom: 3px solid transparent;
	display: flex;
	flex-direction: column;
	height: 100%;
}
.blog-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-premium);
	border-bottom-color: var(--color-secondary);
}
.blog-img {
	position: relative;
	height: 220px;
	overflow: hidden;
}
.blog-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.blog-card:hover .blog-img img {
	transform: scale(1.05);
}
.blog-img-placeholder {
	width: 100%;
	height: 100%;
	background: var(--color-light);
}
.blog-cat-badge {
	position: absolute;
	bottom: 15px;
	left: 15px;
	background: var(--color-secondary);
	color: var(--color-white);
	padding: 5px 12px;
	border-radius: 4px;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	z-index: 2;
}
.sidebar-premium {
	background: var(--color-white);
	padding: 30px;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-subtle);
}
.sidebar-premium .widget {
	margin-bottom: 40px;
}
.sidebar-premium .widget:last-child {
	margin-bottom: 0;
}
.sidebar-premium .widget-title {
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--color-primary-dark);
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid rgba(0,0,0,0.05);
	position: relative;
}
.sidebar-premium .widget-title::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 40px;
	height: 2px;
	background: var(--color-secondary);
}
.sidebar-premium ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.sidebar-premium ul li {
	padding: 10px 0;
	border-bottom: 1px dashed rgba(0,0,0,0.1);
}
.sidebar-premium ul li:last-child {
	border-bottom: none;
}
.sidebar-premium ul li a {
	color: var(--color-text);
	transition: var(--transition-smooth);
}
.sidebar-premium ul li a:hover {
	color: var(--color-secondary);
	padding-left: 5px;
}
.article-reading-text {
	font-size: 1.1rem;
	line-height: 1.8;
	color: var(--color-text);
}
.article-reading-text h2, .article-reading-text h3 {
	margin-top: 40px;
	margin-bottom: 20px;
	color: var(--color-primary-dark);
	font-weight: 700;
}
.article-reading-text blockquote {
	border-left: 4px solid var(--color-secondary);
	background: var(--color-light);
	padding: 20px 30px;
	margin: 30px 0;
	font-style: italic;
	font-size: 1.2rem;
	border-radius: 0 var(--border-radius) var(--border-radius) 0;
}
.category-pills .cat-pill {
	padding: 8px 20px;
	border-radius: 30px;
	background: var(--color-light);
	color: var(--color-text);
	font-weight: 600;
	font-size: 0.9rem;
	cursor: pointer;
	transition: var(--transition-smooth);
}
.category-pills .cat-pill:hover,
.category-pills .cat-pill.active {
	background: var(--color-secondary);
	color: var(--color-white);
}
.share-icon:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.related-card {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.related-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-premium) !important;
}

/* ==========================================================================
   Mobile Drawer Contact Widget
   ========================================================================== */
.mobile-contact-widget {
	display: none !important;
}
@media (max-width: 768px) {
	.main-navigation ul li.mobile-contact-widget {
		display: block !important;
		margin: 30px auto 0 auto !important;
		align-self: center !important;
		padding: 15px 12px !important;
		border: 1px solid rgba(255,255,255,0.1);
		border-radius: 12px;
		background: rgba(255,255,255,0.03);
		width: 100% !important;
		box-sizing: border-box;
	}
	.drawer-contact-info h4 {
		color: var(--color-white);
		font-size: 1rem;
		font-weight: 700;
		margin-bottom: 12px;
		text-align: center;
	}
	.contact-line {
		display: flex !important;
		align-items: center;
		justify-content: center;
		gap: 8px;
		color: rgba(255,255,255,0.8) !important;
		font-size: 0.7rem !important;
		margin-bottom: 12px;
		text-decoration: none;
		white-space: nowrap;
	}
	.contact-line svg {
		color: var(--color-secondary);
		flex-shrink: 0;
	}
	.drawer-socials {
		display: flex;
		justify-content: center;
		gap: 15px;
		margin-top: 20px;
		padding-top: 15px;
		border-top: 1px dashed rgba(255,255,255,0.1);
	}
	.drawer-socials a {
		color: var(--color-white) !important;
		opacity: 0.8;
		display: inline-flex;
	}
	.drawer-socials a:hover {
		color: var(--color-secondary) !important;
		opacity: 1;
		transform: translateY(-3px);
	}
}

/* ==========================================================================
   Project Sectors Accordion Gallery
   ========================================================================== */
.accordion-gallery {
	display: flex;
	gap: 15px;
	height: 450px;
	width: 100%;
}
.accordion-card {
	flex: 1;
	position: relative;
	border-radius: var(--border-radius);
	overflow: hidden;
	background-size: cover;
	background-position: center;
	transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
	cursor: pointer;
	display: flex;
	align-items: flex-end;
}
.accordion-card:hover {
	flex: 3;
}
.card-overlay {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 100%);
	transition: background 0.6s ease;
	z-index: 1;
}
.accordion-card:hover .card-overlay {
	background: linear-gradient(to top, rgba(0, 128, 55, 0.9) 0%, rgba(0,0,0,0.2) 100%);
}
.card-content {
	position: relative;
	z-index: 2;
	padding: 25px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.icon-wrapper {
	width: 45px;
	height: 45px;
	background: rgba(255,255,255,0.1);
	backdrop-filter: blur(5px);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
	color: var(--color-white);
	transition: all 0.5s ease;
	transform: translateY(20px);
	opacity: 0;
}
.accordion-card:hover .icon-wrapper {
	transform: translateY(0);
	opacity: 1;
	background: var(--color-secondary);
}
.text-content h4 {
	color: var(--color-white);
	font-size: clamp(0.9rem, 3vw, 1.4rem);
	margin-bottom: 0;
	white-space: nowrap;
	transition: transform 0.4s ease;
}
.text-content p {
	color: rgba(255,255,255,0.9);
	font-size: clamp(0.75rem, 2vw, 0.95rem);
	line-height: 1.5;
	margin: 0;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
	max-width: 250px;
	height: 0;
	overflow: hidden;
}
.accordion-card:hover .text-content p {
	opacity: 1;
	transform: translateY(0);
	height: auto;
	margin-top: 10px;
}

/* ==========================================================================
   Safety & Quality Standards: Glass Tabs & SVG Animations
   ========================================================================== */

/* Glass Tabs */
.glass-tabs-nav {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 15px;
	border-bottom: none !important;
	margin-bottom: 30px;
}
.glass-tab {
	background: rgba(0, 0, 0, 0.03) !important;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(0, 0, 0, 0.05) !important;
	border-radius: 50px !important;
	padding: 10px 25px !important;
	color: var(--color-dark) !important;
	transition: all 0.4s ease !important;
}
.glass-tab:hover {
	background: rgba(35, 211, 127, 0.05) !important;
	color: var(--color-primary) !important;
}
.glass-tab.active {
	background: rgba(35, 211, 127, 0.1) !important;
	border: 1px solid var(--color-primary) !important;
	color: var(--color-primary) !important;
	box-shadow: 0 5px 15px rgba(35, 211, 127, 0.15) !important;
}

/* Tab Content Entry Animations */
.tab-pane.active .tab-content-anim {
	animation: slideInLeft 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.tab-pane.active .tab-svg-anim {
	animation: slideInRight 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideInLeft {
	0% { opacity: 0; transform: translateX(-30px); }
	100% { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
	0% { opacity: 0; transform: translateX(30px); }
	100% { opacity: 1; transform: translateX(0); }
}

/* Animated SVGs */
.animated-flask, .animated-shield, .animated-gear {
	filter: drop-shadow(0 15px 25px rgba(35, 211, 127, 0.15));
	max-width: 100%;
}

/* Chemical Bubbles Animation */
.flask-bubble {
	animation: floatUp 3s infinite ease-in;
	transform-origin: center;
}
.flask-bubble.b1 { animation-duration: 2.5s; animation-delay: 0.2s; }
.flask-bubble.b2 { animation-duration: 3.2s; animation-delay: 0.5s; }
.flask-bubble.b3 { animation-duration: 2s; animation-delay: 0s; }

@keyframes floatUp {
	0% { transform: translateY(0) scale(0.5); opacity: 0; }
	20% { opacity: 1; }
	80% { opacity: 1; }
	100% { transform: translateY(-40px) scale(1.2); opacity: 0; }
}

/* Shield Scan Animation */
.shield-scan {
	animation: laserScan 3s infinite linear;
}
@keyframes laserScan {
	0% { transform: translateY(0); opacity: 0; }
	10% { opacity: 1; }
	90% { opacity: 1; }
	100% { transform: translateY(50px); opacity: 0; }
}

/* Gear Spin Animation */
.gear-spin {
	transform-origin: 50px 50px;
	animation: slowSpin 10s infinite linear;
}
@keyframes slowSpin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* ==========================================================================
   Single Blog Page UI/UX Enhancements
   ========================================================================== */

/* Reading Progress Bar */
.reading-progress-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: transparent;
	z-index: 99999;
}
body.admin-bar .reading-progress-container {
	top: 32px;
}
.reading-progress-bar {
	height: 100%;
	background: var(--color-primary);
	width: 0%;
	box-shadow: 0 0 10px var(--color-primary);
	transition: width 0.1s ease;
}

/* Drop Cap Typography */
.article-reading-text p:first-of-type::first-letter {
	float: left;
	font-size: 5rem;
	line-height: 0.8;
	font-weight: 900;
	color: var(--color-primary);
	margin: 0.1em 0.15em 0 0;
	text-transform: uppercase;
}
.article-reading-text {
	font-size: 1.15rem;
	line-height: 1.9;
	color: var(--color-dark);
}

/* Sticky Social Share (Floating Left) */
.sticky-social-share .share-icon {
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: white;
	transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.sticky-social-share .share-icon:hover {
	transform: scale(1.15) translateY(-2px);
}
.sticky-social-share .whatsapp { background: #25D366; }
.sticky-social-share .linkedin { background: #0077b5; }

/* ==========================================================================
   Enterprise Blog Typography & UI/UX
   ========================================================================== */

/* Main Article Pacing */
.article-reading-text {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #333333;
}
.article-reading-text h2, 
.article-reading-text h3 {
	margin-top: 2em;
	margin-bottom: 0.8em;
	font-weight: 800;
	color: var(--color-primary-dark);
}
.article-reading-text h2 {
	border-bottom: 2px solid rgba(0,0,0,0.05);
	padding-bottom: 10px;
}

/* Premium Pull-Quotes */
.article-reading-text blockquote {
	font-size: 1.3rem;
	font-style: italic;
	color: var(--color-dark);
	margin: 2em 0;
	padding: 1.5em 2em;
	background: var(--color-light);
	border-left: 6px solid var(--color-secondary);
	border-radius: 0 12px 12px 0;
	position: relative;
	box-shadow: var(--shadow-subtle);
}
.article-reading-text blockquote::before {
	content: '\201C';
	font-size: 4rem;
	color: var(--color-secondary);
	position: absolute;
	left: 15px;
	top: -10px;
	opacity: 0.3;
	font-family: Georgia, serif;
}

/* Custom Bullet Lists */
.article-reading-text ul {
	list-style: none;
	padding-left: 1.5em;
	margin-bottom: 1.5em;
}
.article-reading-text ul li {
	position: relative;
	margin-bottom: 10px;
}
.article-reading-text ul li::before {
	content: '';
	position: absolute;
	left: -1.5em;
	top: 0.6em;
	width: 8px;
	height: 8px;
	background-color: var(--color-secondary);
	border-radius: 50%;
}

/* Inline Images */
.article-reading-text img {
	border-radius: 12px;
	box-shadow: var(--shadow-medium);
	margin: 1.5em 0;
	height: auto;
	max-width: 100%;
}

/* Modern Tag Pills */
.article-tags .tags-links a {
	display: inline-block;
	background: rgba(0,0,0,0.05);
	color: var(--color-dark);
	padding: 6px 16px;
	border-radius: 30px;
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none;
	margin: 0 5px 10px 0;
	transition: all 0.3s ease;
	border: 1px solid rgba(0,0,0,0.05);
}
.article-tags .tags-links a:hover {
	background: var(--color-secondary);
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(0, 128, 55, 0.2);
}

/* Enterprise Author Box */
.enterprise-author-box {
	background: #ffffff;
	border: 1px solid rgba(0,0,0,0.05);
	overflow: hidden;
}
.author-box-bg {
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 80px;
	background: linear-gradient(135deg, rgba(0,128,55,0.05) 0%, rgba(0,0,0,0.02) 100%);
	border-bottom: 1px solid rgba(0,0,0,0.03);
}
.premium-avatar {
	border: 4px solid #ffffff;
	background: #ffffff;
	margin-top: -30px;
}
.author-social-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: rgba(0,0,0,0.05);
	color: var(--color-dark);
	border-radius: 50%;
	transition: all 0.3s ease;
}
.author-social-btn:hover {
	background: var(--color-primary);
	color: #ffffff;
	transform: translateY(-2px);
}

/* Enterprise Related Articles */
.enterprise-related-card {
	border: 1px solid rgba(0,0,0,0.05);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	overflow: hidden;
}
.enterprise-related-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 128, 55, 0.1);
	border-color: rgba(0, 128, 55, 0.1);
}
.related-img-wrapper {
	overflow: hidden;
	height: 180px;
}
.related-thumb {
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.enterprise-related-card:hover .related-thumb {
	transform: scale(1.05);
}
.floating-cat-pill {
	position: absolute;
	top: 15px;
	left: 15px;
	background: rgba(255,255,255,0.95);
	color: var(--color-primary-dark);
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	backdrop-filter: blur(5px);
}
.related-title a {
	color: var(--color-primary-dark);
	text-decoration: none;
	font-weight: 800;
	transition: color 0.3s ease;
}
.enterprise-related-card:hover .related-title a {
	color: var(--color-secondary);
}
.animated-read-link {
	display: inline-flex;
	align-items: center;
	color: var(--color-secondary);
	font-weight: 700;
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}
.animated-read-link .arrow {
	margin-left: 5px;
	transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.enterprise-related-card:hover .animated-read-link .arrow {
	transform: translateX(5px);
}

/* Mobile Tweaks for 2x2 Related Articles Grid */
@media (max-width: 767px) {
	.enterprise-related-card .p-4 {
		padding: 15px !important;
	}
	.related-img-wrapper {
		height: 120px;
	}
	.related-title {
		font-size: 0.9rem !important;
		margin-bottom: 10px !important;
	}
	.related-meta {
		font-size: 0.75rem !important;
	}
	.floating-cat-pill {
		font-size: 0.6rem;
		padding: 3px 8px;
		top: 10px;
		left: 10px;
	}
	.animated-read-link {
		font-size: 0.8rem;
	}
}

/* Custom Widget: Vision Pest Latest Posts */
.vp-latest-posts-widget {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.vp-widget-post {
	display: flex;
	align-items: center;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}
.vp-widget-post:last-child {
	padding-bottom: 0;
	border-bottom: none;
}
.vp-widget-post:hover {
	transform: translateX(5px);
}
.vp-widget-post-thumb {
	flex-shrink: 0;
	width: 65px;
	height: 65px;
	margin-right: 15px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.vp-widget-post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.vp-widget-post:hover .vp-widget-post-thumb img {
	transform: scale(1.1);
}
.vp-widget-post-placeholder {
	width: 100%;
	height: 100%;
	background: var(--color-primary);
}
.vp-widget-post-content {
	flex-grow: 1;
}
.vp-widget-post-title {
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 5px;
}
.vp-widget-post-title a {
	color: var(--color-primary-dark);
	text-decoration: none;
	transition: color 0.3s ease;
}
.vp-widget-post:hover .vp-widget-post-title a {
	color: var(--color-secondary);
}
.vp-widget-post-meta {
	font-size: 0.75rem;
	color: #777;
	display: flex;
	align-items: center;
	gap: 5px;
}

/* Sticky Sidebar Physics */
@media (min-width: 992px) {
	#secondary.sidebar-premium {
		position: sticky;
		top: 110px;
		margin-top: 48px; /* Perfectly aligns top of sidebar with top of article card */
		align-self: start;
		z-index: 10;
		transition: top 0.3s ease;
	}
}

/* Single Post UI Overhaul */
.hover-primary:hover {
	color: var(--color-secondary) !important;
}

.share-circle { 
	display: flex; 
	align-items: center; 
	justify-content: center; 
	width: 40px; 
	height: 40px; 
	border-radius: 50%; 
	background: #f5f6f8; 
	transition: all 0.3s ease; 
	text-decoration: none; 
}
.share-circle.fb { color: #1877F2 !important; }
.share-circle.in { color: #0077b5 !important; }
.share-circle.tw { color: #1DA1F2 !important; }
.share-circle.em { color: #333 !important; }

.share-circle:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	background: #fff;
}

.search-field:focus {
	outline: none;
	border-color: var(--color-secondary) !important;
	box-shadow: 0 0 0 3px rgba(35, 211, 127, 0.1) !important;
}

.sidebar-widget {
	border: 1px solid #e1e5eb !important;
	box-shadow: none !important;
	border-radius: 12px !important;
}
.sidebar-widget.newsletter-widget {
	border: none !important;
}

.widget-title {
	color: #0a2540 !important;
	font-weight: 800 !important;
	margin-bottom: 1.2rem;
}

.article-reading-text h2 { margin-top: 2.5rem; margin-bottom: 1.2rem; font-weight: 800; color: #0a2540; line-height: 1.3; }
.article-reading-text h3 { margin-top: 2rem; margin-bottom: 1rem; font-weight: 700; color: #0a2540; line-height: 1.3; }
.article-reading-text p { margin-bottom: 1.5rem; }
.article-reading-text ul { margin-bottom: 1.5rem; padding-left: 1.5rem; }
.article-reading-text li { margin-bottom: 0.8rem; }
.article-reading-text img, .entry-content img { max-width: 100%; height: auto; border-radius: 8px; display: block; margin: 2rem 0; }
.wp-caption { max-width: 100%; }

/* Decrease global site content padding */
.site-content { padding: 10px 0 !important; }

/* ==========================================================================
   FULL RESPONSIVE OVERHAUL (End-to-End Audit)
   ========================================================================== */

/* 1. FLUID TYPOGRAPHY (Clamp) */
html, body {
    overflow-x: clip;
}
h1, .h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); line-height: 1.2; }
h2, .h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); line-height: 1.25; }
h3, .h3 { font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.3; }
h4, .h4 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); line-height: 1.35; }
h5, .h5 { font-size: clamp(1.1rem, 2vw, 1.25rem); line-height: 1.4; }
h6, .h6 { font-size: clamp(1rem, 1.5vw, 1.1rem); line-height: 1.4; }
p, .article-reading-text p, .entry-content p { font-size: clamp(1rem, 2vw, 1.05rem); line-height: 1.6; }

/* 2. GRID SYSTEM EXTENSIONS */
.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
@media (max-width: 991px) {
    /* Force columns to stack smoothly on tablet/mobile */
    .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
}
@media (max-width: 767px) {
    .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    .row {
        margin-right: -10px;
        margin-left: -10px;
    }
    .col-12, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-4, .col-md-5, .col-md-7, .col-md-8 {
        padding-right: 10px;
        padding-left: 10px;
    }
}

/* 3. RESPONSIVE SPACING & PADDING */
.section-padding { padding: 80px 0 !important; }
@media (max-width: 991px) {
    .section-padding { padding: 60px 0 !important; }
}
@media (max-width: 767px) {
    .section-padding { padding: 40px 0 !important; }
}

/* Spacing Utilities Override */
@media (max-width: 767px) {
    .pt-5 { padding-top: 2rem !important; }
    .pb-5 { padding-bottom: 2rem !important; }
    .mt-5 { margin-top: 2rem !important; }
    .mb-5 { margin-bottom: 2rem !important; }
    .mb-4 { margin-bottom: 1.5rem !important; }
    .pe-lg-5 { padding-right: 10px !important; }
}

/* 4. COMPONENT FIXES */

/* Hero Section Fixes */
@media (max-width: 991px) {
    .hero-section {
        min-height: auto !important;
        padding: 120px 0 80px 0 !important;
    }
}

/* Footer Fixes */
@media (max-width: 767px) {
    .footer-widgets-container {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }
    .site-info-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Sidebar & Single Post Fixes */
@media (max-width: 991px) {
    .sidebar-widget {
        padding: 20px !important;
        margin-bottom: 30px !important;
    }
    .post-navigation-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .post-navigation-box > div {
        text-align: center !important;
    }
    .post-navigation-box .nav-divider {
        width: 100% !important;
        height: 1px !important;
        margin: 15px 0 !important;
    }
    .article-cta-box {
        flex-direction: column;
        text-align: center;
        align-items: center !important;
        padding: 20px !important;
    }
}

/* Make absolutely sure images stay in bounds */
img {
    max-width: 100% !important;
    height: auto !important;
}
