
:root {
	--primary-green: #4f9f5e;
	--primary-blue: #355472;
	--light-green: #e8f5e9;
	--light-blue: #e3f2fd;
	--accent-gold: #f4c542;
	--text-dark: #333;
	--text-light: #666;
	--white: #fff;
	--shadow: 0 5px 15px rgba(0, 0, 0, .08);
	--shadow-float: 0 10px 25px rgba(0, 0, 0, .15);
	--shadow-deep: 0 15px 35px rgba(0, 0, 0, .2);
	--transition: all .3s ease;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Poppins", sans-serif;
	color: var(--text-dark);
	line-height: 1.6;
	overflow-x: hidden;
}

h1, h2, h3, h4 {
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 1rem;
}

h2 {
	font-size: 2.5rem;
	position: relative;
	display: inline-block;
	margin-bottom: 2.5rem;
}

h2:after {
	content: "";
	position: absolute;
	bottom: -15px;
	left: 0;
	width: 80px;
	height: 5px;
	background: linear-gradient(to right, var(--primary-green), var(--accent-gold));
	border-radius: 3px;
}

.service-section h2 {
	font-size: 2.5rem;
	color: var(--primary-green);
	width: 100%;
	text-align: center;
}

.service-section h2:after {
	left: 50%;
	transform: translateX(-50%);
}

p {
	margin-bottom: 1.2rem;
}

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

.btn {
	display: inline-block;
	padding: 14px 32px;
	background: linear-gradient(135deg, var(--primary-green), #3e8c4c);
	color: var(--white);
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
	border: none;
	cursor: pointer;
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.btn:before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--primary-blue), #2a4560);
	transition: var(--transition);
	z-index: -1;
}

.btn:hover:before {
	left: 0;
}

.btn:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-float);
}

.btn-blue {
	background: linear-gradient(135deg, var(--primary-blue), #2a4560);
}

.btn-blue:before {
	background: linear-gradient(135deg, var(--primary-green), #3e8c4c);
}

/* Modern Header Design */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(255, 255, 255, .98);
	box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
	padding: 15px 0;
	transition: var(--transition);
}

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

.logo {
	display: flex;
	align-items: center;
	position: relative;
}

.logo:after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(to right, var(--primary-green), transparent);
	border-radius: 2px;
}

.logo img {
	max-height: 80px;
	transition: var(--transition);
}

/* Clean Modern Navigation */
.main-nav {
	display: flex;
	align-items: center;
}

.nav-list {
	display: flex;
	list-style: none;
	background: var(--light-green);
	border-radius: 30px;
	padding: 5px;
	box-shadow: var(--shadow);
}

.nav-list li {
	margin: 0;
}

.nav-list a {
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 600;
	transition: var(--transition);
	position: relative;
	padding: 12px 25px;
	display: block;
	border-radius: 25px;
	overflow: hidden;
	z-index: 1;
}

.nav-list a.active, .nav-list a:hover {
	background: var(--primary-green);
	color: white;
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}

.services-nav {
	position: relative;
}

.services-nav-btn {
	display: flex;
	align-items: center;
	gap: 8px;
}

.services-nav-btn i {
	transition: var(--transition);
}

.services-nav:hover .services-nav-btn i {
	transform: rotate(180deg);
}

.services-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	background: white;
	min-width: 480px;
	/* wider for 2 columns */
	box-shadow: var(--shadow-deep);
	border-radius: 15px;
	padding: 20px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: var(--transition);
	z-index: 100;
	/* NEW */
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 10px;
}

.services-nav:hover .services-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.services-dropdown a {
	padding: 12px 25px;
	color: var(--text-dark);
	font-weight: 500;
	border-bottom: 1px solid #eee;
	white-space: nowrap;
}

.services-dropdown a:nth-last-child(-n+2) {
	border-bottom: none;
}

.services-dropdown a:hover {
	background: var(--light-green);
	color: var(--primary-green);
	padding-left: 40px;
	transform: none;
}

.menu-toggle {
	display: none !important;
	font-size: 1.5rem;
	cursor: pointer;
	background: var(--primary-green);
	color: white;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow);
}

.mobile-nav {
	display: none;
}

/* Quick Contact Sidebar */
.quick-contact-sidebar {
	position: fixed;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	background: linear-gradient(135deg, var(--primary-blue), #4f9f5e);
	color: white;
	padding: 25px 15px;
	border-radius: 15px;
	z-index: 999;
	box-shadow: var(--shadow-deep);
	transition: var(--transition);
	width: 60px;
	overflow: hidden;
	text-align: center;
}

.quick-contact-sidebar:hover {
	width: 250px;
	border-radius: 15px 30px 30px 15px;
}

.quick-contact-icon {
	font-size: 1.5rem;
	margin-bottom: 25px;
	display: block;
	color: var(--accent-gold);
}

.quick-contact-sidebar h4 {
	white-space: nowrap;
	color: var(--accent-gold);
	font-size: 1.3rem;
	margin-bottom: 15px;
	opacity: 0;
	transition: opacity .3s ease;
}

.quick-contact-sidebar p {
	white-space: nowrap;
	margin-bottom: 10px;
	opacity: 0;
	transition: opacity .3s ease .1s;
	font-size: 1.1rem;
}

.quick-contact-sidebar:hover h4, .quick-contact-sidebar:hover p {
	opacity: 1;
}

/* Hero Section */
.hero {
	height: 100vh;
	background-image: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .5)), url("https://cdn-ilehdmk.nitrocdn.com/yJDQtKEmuraWtjKyKAwGXlXGNetkzvHn/assets/images/optimized/rev-cb93d00/gruhamithra.com/demo/chinmayee-enterprises/wordpress/wp-content/uploads/2025/12/chinmayee-banner1.jpg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	color: white;
	text-align: center;
	padding-top: 100px;
	position: relative;
}

.hero.nitro-lazy {
	background-image: none !important;
}

.hero:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background: linear-gradient(to top, var(--light-green), transparent);
}

.hero-content {
	max-width: 900px;
	margin: 0 auto;
	animation: floatUp 1s ease-out;
	position: relative;
	z-index: 2;
}

.hero h1 {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	text-shadow: 0 2px 10px rgba(0, 0, 0, .5);
	background: linear-gradient(to right, white, var(--accent-gold));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero p {
	font-size: 1.4rem;
	margin-bottom: 2.5rem;
	text-shadow: 0 1px 5px rgba(0, 0, 0, .5);
}

/* About Section */
.about {
	padding: 120px 0;
	background: var(--light-green);
	position: relative;
	overflow: hidden;
}

.about:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 10px;
	background: linear-gradient(to right, var(--primary-green), var(--accent-gold), var(--primary-blue));
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.about-text h2 {
	color: var(--primary-blue);
}

.pest-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	margin-top: 25px;
}

.pest-list span {
	background: white;
	padding: 12px 15px;
	border-radius: 8px;
	box-shadow: var(--shadow);
	font-weight: 600;
	transition: var(--transition);
	text-align: center;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.pest-list span:before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, var(--primary-green), var(--accent-gold));
	transition: var(--transition);
	z-index: -1;
}

.pest-list span:hover:before {
	left: 0;
}

.pest-list span:hover {
	color: white;
	transform: translateY(-5px);
	box-shadow: var(--shadow-float);
}

.about-image {
	position: relative;
	animation: float 6s ease-in-out infinite;
}

.about-image img {
	width: 100%;
	border-radius: 15px;
	box-shadow: var(--shadow-deep);
	border: 8px solid white;
}

/* Services Section - Sequential Layout */
.services {
	padding: 120px 0;
	background: var(--white);
	position: relative;
}

.services:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 10px;
	background: linear-gradient(to right, var(--primary-blue), var(--accent-gold), var(--primary-green));
}

.services h2 {
	text-align: center;
	width: 100%;
	color: var(--primary-green);
}

.services h2:after {
	left: 50%;
	transform: translateX(-50%);
}

.services-intro {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 60px;
	font-size: 1.1rem;
}

/* Service Item - Sequential Layout */
.service-item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin-bottom: 100px;
	padding: 40px;
	border-radius: 20px;
	background: linear-gradient(to right, var(--light-green), transparent);
	position: relative;
	overflow: hidden;
}

.service-item:nth-child(even) {
	background: linear-gradient(to left, var(--light-blue), transparent);
}

.service-item:nth-child(even) .service-content {
	order: 2;
}

.service-item:nth-child(even) .service-image {
	order: 1;
}

.service-item:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
	background: linear-gradient(to bottom, var(--primary-green), var(--accent-gold));
}

.service-item:nth-child(even):before {
	left: auto;
	right: 0;
}

.service-content h3 {
	font-size: 2.2rem;
	color: var(--primary-blue);
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 15px;
}

.service-content h3:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 4px;
	background: var(--primary-green);
	border-radius: 2px;
}

.service-content p {
	font-size: 1.1rem;
	margin-bottom: 25px;
	color: var(--text-light);
}

.service-features {
	margin: 25px 0;
}

.service-features li {
	margin-bottom: 10px;
	padding-left: 25px;
	position: relative;
}

.service-features li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--primary-green);
	font-weight: bold;
}

.service-image {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: var(--shadow-deep);
	height: 400px;
}

.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.service-image:hover img {
	transform: scale(1.05);
}

.service-image:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .2));
	z-index: 1;
}

/* Individual Service Sections */
.service-section {
	padding: 100px 0;
	scroll-margin-top: 100px;
}

.service-section:nth-child(odd) {
	background: linear-gradient(to right, var(--light-green), transparent);
}

.service-section:nth-child(even) {
	background: linear-gradient(to left, var(--light-blue), transparent);
}

.service-section-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	padding: 40px;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
}

.service-section-content:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
	background: linear-gradient(to bottom, var(--primary-green), var(--accent-gold));
}

.service-section:nth-child(even) .service-section-content:before {
	left: auto;
	right: 0;
}

.service-section-image {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: var(--shadow-deep);
	height: 400px;
}

.service-section-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.service-section-image:hover img {
	transform: scale(1.05);
}

/* Creative Footer Design */
footer {
	background: linear-gradient(135deg, var(--primary-blue), #1e2f44);
	color: white;
	padding: 80px 0 20px;
	position: relative;
	overflow: hidden;
}

footer:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 8px;
	background: linear-gradient(to right, var(--primary-green), var(--accent-gold));
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	margin-bottom: 60px;
	position: relative;
	z-index: 2;
}

.footer-col h3 {
	font-size: 1.5rem;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 15px;
	color: var(--accent-gold);
}

.footer-col h3:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	background: var(--primary-green);
	border-radius: 2px;
}

.footer-col ul {
	list-style: none;
}

.footer-col li {
	margin-bottom: 12px;
	position: relative;
	padding-left: 20px;
}

.footer-col li:before {
	content: "▸";
	position: absolute;
	left: 0;
	color: var(--primary-green);
}

.footer-col a {
	color: #ddd;
	text-decoration: none;
	transition: var(--transition);
}

.footer-col a:hover {
	color: var(--accent-gold);
	padding-left: 5px;
}

.contact-info p {
	margin-bottom: 15px;
	display: flex;
	align-items: flex-start;
}

.contact-info i {
	margin-right: 12px;
	color: var(--accent-gold);
	margin-top: 3px;
}

.social-icons {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.social-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	background: rgba(255, 255, 255, .1);
	border-radius: 50%;
	transition: var(--transition);
	color: white;
	font-size: 1.2rem;
}

.social-icons a:hover {
	background: var(--primary-green);
	transform: translateY(-5px) rotate(5deg);
	color: white;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	padding-top: 25px;
	border-top: 1px solid rgba(255, 255, 255, .15);
	font-size: .9rem;
	color: #ddd;
	position: relative;
	z-index: 2;
}

.footer-bottom a {
	color: var(--accent-gold);
	text-decoration: none;
	font-weight: 600;
}

.footer-bottom a:hover {
	text-decoration: underline;
}

.footer-pattern {
	position: absolute;
	bottom: 0;
	right: 0;
	opacity: .05;
	font-size: 15rem;
	color: white;
	z-index: 1;
}

/* Animations */
@keyframes float {
	0%, 100% {
		transform: translateY(0);
	}
	
	50% {
		transform: translateY(-20px);
	}
}

@keyframes floatUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Hide WP Social Chat button only on post ID 2189 */
.postid-2821 #qlwapp {
	display: none !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.footer-content {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.quick-contact-sidebar {
		display: none;
	}
	
	.nav-list {
		display: none;
	}
	
	.menu-toggle {
		display: flex;
	}
	
	.mobile-nav {
		position: fixed;
		top: 85px;
		left: 0;
		width: 100%;
		background: white;
		box-shadow: var(--shadow-deep);
		padding: 20px;
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		transition: var(--transition);
		z-index: 999;
	}
	
	.menu-toggle {
		display: block !important;
	}
	
	.mobile-nav {
		display: block !important;
	}
	
	.mobile-nav.active {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}
	
	.mobile-nav ul {
		list-style: none;
	}
	
	.mobile-nav li {
		margin-bottom: 15px;
	}
	
	.mobile-nav a {
		text-decoration: none;
		color: var(--text-dark);
		font-weight: 600;
		padding: 12px 20px;
		display: block;
		border-radius: 8px;
		transition: var(--transition);
	}
	
	.mobile-nav a:hover {
		background: var(--light-green);
		color: var(--primary-green);
	}
}

@media (max-width: 768px) {
	.menu-toggle {
		padding-left: 11px;
		padding-top: 3px;
	}
	
	.hero {
		height: 50vh;
	}
	
	h2 {
		font-size: 2.2rem;
	}
	
	.hero h1 {
		font-size: 2.8rem;
	}
	
	.about-content {
		grid-template-columns: 1fr;
	}
	
	.service-item {
		grid-template-columns: 1fr;
		padding: 30px;
		margin-bottom: 60px;
	}
	
	.service-content {
		order: 2;
	}
	
	.service-image {
		order: 1;
		height: 300px;
	}
	
	.service-item:nth-child(even) .service-content, .service-item:nth-child(even) .service-image {
		order: unset;
	}
	
	.pest-list {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.footer-content {
		grid-template-columns: 1fr;
	}
	
	.footer-bottom {
		flex-direction: column;
		text-align: center;
		gap: 10px;
	}
	
	.service-section-content {
		grid-template-columns: 1fr;
		padding: 30px;
	}
	
	.service-section-image {
		height: 300px;
	}
}

@media (max-width: 576px) {
	.hero h1 {
		font-size: 2.2rem;
	}
	
	.hero p {
		font-size: 1.1rem;
	}
	
	.pest-list {
		grid-template-columns: 1fr;
	}
	
	.service-content h3 {
		font-size: 1.8rem;
	}
	
	.service-item {
		padding: 20px;
	}
	
	.service-section h2 {
		font-size: 2rem;
	}
}
