/* Desktop Navigation */
.mainmenu_area .main {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.main-navigation {
	display: flex;
	align-items: center;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 0;
}

.main-navigation li {
	margin: 0;
}

.main-navigation a {
	color: #333;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	padding: 28px 20px;
	display: block;
	transition: all 0.3s ease;
	position: relative;
}

.main-navigation a:hover {
	color: #3498db;
}

.main-navigation a.active {
	color: #3498db;
}

.main-navigation a.active::after,
.main-navigation a:hover::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: #3498db;
}

/* Emergency Phone Number - Enhanced */
.usermenu_area {
	background: linear-gradient(135deg, #003e75 0%, #003e75 100%);
	padding: 12px 0;
	box-shadow: 0 2px 10px rgba(243, 156, 18, 0.3);
	height: 65px;
}

.usermenu_area .main {
	display: flex;
	justify-content: center;
	align-items: center;
}

.menuUsItem a {
	color: white !important;
	font-size: 18px !important;
	font-weight: bold !important;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	padding: 8px 20px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 25px;
	transition: all 0.3s ease;
	animation: urgencyPulse 2s ease-in-out infinite;
}

.menuUsItem a:before {
	content: "📞";
	margin-right: 10px;
	font-size: 20px;
	animation: phoneBounce 1s ease-in-out infinite;
}

.menuUsItem a:hover {
	background: rgba(255, 255, 255, 0.25);
	transform: scale(1.05);
	box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

@keyframes urgencyPulse {

	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
	}

	50% {
		box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
	}
}

@keyframes phoneBounce {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-3px);
	}
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 28px;
	color: #333;
	cursor: pointer;
	padding: 10px;
}

.mobile-menu-close {
	display: none;
}

.menu-overlay {
	display: none;
}

/* Services Section - Equal Height Fix */
.masonry.no_padding.isotopeNOanim {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.masonry.no_padding .isotopeElement {
	flex: 0 0 calc(33.333% - 14px);
	display: flex;
}

.masonry.no_padding .isotopePadding {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	min-height: 200px;
	padding: 20px 15px;
}

.masonry.no_padding .thumb.hoverIncrease {
	flex-shrink: 0;
	margin-bottom: 15px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.masonry.no_padding .sc_blogger_content-wrap {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.masonry.no_padding .sc_blogger_content-wrap h4 {
	text-align: center;
	line-height: 1.3;
	min-height: 2.6em;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
}

/* Call Button with Pulse Animation */
.call-us {
	position: fixed;
	right: 30px;
	bottom: 100px;
	z-index: 9999;
}

.call-us-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background: #003e75;
	color: white;
	border-radius: 50%;
	font-size: 28px;
	box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
	transition: all 0.3s ease;
	animation: pulse 2s infinite;
}

.call-us-button:hover {
	background: #20ba5a;
	transform: scale(1.1);
	box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
	0% {
		box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
	}

	50% {
		box-shadow: 0 8px 24px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1), 0 0 0 20px rgba(37, 211, 102, 0.05);
	}

	100% {
		box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
	}
}

/* Tablet Responsive */
@media (max-width: 1024px) {
	.masonry.no_padding .isotopeElement {
		flex: 0 0 calc(50% - 10px);
	}

	.menuUsItem a {
		font-size: 16px !important;
	}

	.call-us {
		right: 20px;
		bottom: 90px;
	}

	.upToScroll {
		right: 20px;
		bottom: 20px;
	}

	.call-us-button {
		width: 55px;
		height: 55px;
		font-size: 26px;
	}

	.scrollToTop {
		width: 45px;
		height: 45px;
		font-size: 20px;
	}
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.mobile-menu-toggle {
		display: block;
	}

	.main-navigation {
		position: fixed;
		top: 0;
		right: -100%;
		width: 280px;
		height: 100vh;
		background: white;
		box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
		padding: 80px 0 30px;
		transition: right 0.3s ease;
		z-index: 9999;
		overflow-y: auto;
	}

	.main-navigation.active {
		right: 0;
	}

	.main-navigation ul {
		flex-direction: column;
		gap: 0;
	}

	.main-navigation li {
		border-bottom: 1px solid #eee;
	}

	.main-navigation a {
		padding: 20px 30px;
		font-size: 18px;
	}

	.main-navigation a.active::after,
	.main-navigation a:hover::after {
		display: none;
	}

	.mobile-menu-close {
		display: block;
		position: absolute;
		top: 20px;
		right: 20px;
		font-size: 32px;
		color: #333;
		background: none;
		border: none;
		cursor: pointer;
		padding: 5px;
		line-height: 1;
	}

	.menu-overlay {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		z-index: 9998;
	}

	.menu-overlay.active {
		display: block;
	}

	.masonry.no_padding .isotopeElement {
		flex: 0 0 100%;
	}

	.masonry.no_padding .sc_blogger_content-wrap h4 {
		min-height: auto;
	}

	.usermenu_area {
		padding: 8px 0;
	}

	.menuUsItem a {
		font-size: 14px !important;
		padding: 6px 15px;
	}

	.menuUsItem a:before {
		font-size: 16px;
		margin-right: 6px;
	}

	.call-us {
		right: 15px;
		bottom: 80px;
	}

	.upToScroll {
		right: 15px;
		bottom: 15px;
	}

	.call-us-button {
		width: 50px;
		height: 50px;
		font-size: 24px;
	}

	.scrollToTop {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}
}

/* Logo Styles */
.logo img {
	border-radius: 20%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}