#chat-icon {
	width: 30px;
	position: fixed;
	bottom: 20px;
	right: 20px;
	cursor: pointer;
	z-index: 1000;
	color: #0a417b;
	&:hover {
		svg {
			fill: rgb(31, 91, 154);
		}
	}
	svg {
		width: 35px;
		height: 45px;
	}
}

/* Contact Form Pop-up */
#contact-form-popup {
	display: none;
	position: fixed;
	bottom: 80px;
	right: 20px;
	width: 350px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	z-index: 1000;
	overflow: hidden;
	padding: 0;
}

#form-header {
	background-color: #0a417b;
	color: #fff;
	padding: 1rem;
	position: relative;
}

#form-header h2 {
	margin: 0;
	font-size: 16px;
}

#close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	font-size: 18px;
}

#contact-form {
	padding: 1rem;
}

#contact-form label {
	display: block;
	margin-top: 10px;
}

#contact-form input,
#contact-form textarea {
	width: 100%;
	padding: 8px;
	margin-top: 5px;
	border: 1px solid #ccc;
	border-radius: 5px;
	&:focus {
		outline: none;
		border-color: #0a417b;
	}
}

#contact-form button {
	margin-top: 15px;
	width: 100%;
	padding: 10px;
	background-color: #0a417b;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

#contact-form button:hover {
	background-color: rgb(31, 91, 154);
}

/* form success modal */
/* Modal Container */
#form-success-modal {
	display: none; /* Hidden by default */
	position: fixed;
	z-index: 2000; /* Above other elements */
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.5); /* Black w/ opacity */
}

/* Modal Content Box */
#form-success-modal .modal-content {
	background-color: #fefefe;
	margin: 10% auto; /* Centered vertically and horizontally */
	border: 1px solid #888;
	width: 80%;
	max-width: 450px; /* Max width */
	border-radius: 10px;
	position: relative;
}
#form-success-modal .header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 1rem;
	background-color: #0a417b;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

/* Close Button */
#form-success-modal .modal-close-btn {
	color: #ffffff;
	float: right;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
}

#form-success-modal .modal-close-btn:hover,
#form-success-modal .modal-close-btn:focus {
	color: #aaa;
	text-decoration: none;
}

/* Modal Paragraph */
#form-success-modal .modal-content p {
	margin-bottom: 0;
	padding: 2rem;
	font-size: 17px;
}
