/* Different logos for mobile and desktop header */
#header .mobile-header-logo {
	width: 150px;
	height: 60px;
	object-fit: contain;
}

#header .desktop-header-logo {
	width: 80px;
	height: 80px;
	object-fit: contain;
}

@media (min-width: 992px) {
	html.sticky-header-active #header .desktop-header-logo {
		width: 80px !important;
		height: 80px !important;
		top: auto !important;
	}
}

.inner-page-hero {
	background: linear-gradient(135deg, #113b59 0%, #1a6a93 55%, #2d89b9 100%);
	padding: 80px 0 70px;
	color: #fff;
}

.inner-page-hero .breadcrumb {
	margin-bottom: 0;
	background: transparent;
	padding: 0;
}

.inner-page-hero .breadcrumb-item,
.inner-page-hero .breadcrumb-item a {
	color: rgba(255, 255, 255, 0.86);
}

.inner-page-hero .breadcrumb-item + .breadcrumb-item::before {
	color: rgba(255, 255, 255, 0.6);
}

.inner-panel {
	background: #fff;
	border: 1px solid rgba(17, 59, 89, 0.08);
	border-radius: 12px;
	padding: 28px;
	box-shadow: 0 10px 30px rgba(17, 59, 89, 0.06);
}

.inner-page-section {
	padding: 60px 0;
	background: #f7fafc;
}

.inner-icon-box {
	border: 1px solid rgba(17, 59, 89, 0.1);
	border-radius: 12px;
	padding: 24px;
	background: #fff;
	height: 100%;
}

.inner-icon-box i {
	font-size: 30px;
	color: #1a6a93;
	margin-bottom: 10px;
}

.floating-whatsapp {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 1100;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 16px;
	border-radius: 999px;
	background: #25d366;
	color: #fff;
	font-weight: 700;
	box-shadow: 0 12px 24px rgba(37, 211, 102, 0.35);
	text-decoration: none !important;
	animation: whatsappPulse 1.8s infinite;
}

.floating-whatsapp i {
	font-size: 22px;
	line-height: 1;
}

.floating-whatsapp:hover {
	color: #fff;
	transform: translateY(-2px);
}

@keyframes whatsappPulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
	}
	70% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
	}
}

@media (max-width: 575px) {
	.floating-whatsapp {
		padding: 12px;
		right: 14px;
		bottom: 14px;
	}

	.floating-whatsapp span {
		display: none;
	}
}
