:root {
  --footer-bg: #075a58;
  --footer-accent: #45b8e2;
  --footer-text: #eaf6fb;
  --footer-muted: #b9d8e5;
}

.site-footer {
  background: linear-gradient(135deg, var(--footer-bg) 0%, #075a58 100%);
  color: var(--footer-text);
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(69, 184, 226, 0.18), transparent 35%);
  pointer-events: none;
}

.footer-widget {
  height: 100%;
}

.footer-title {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54px;
  height: 2px;
  background: var(--footer-accent);
}

.footer-text,
.footer-links,
.footer-contact {
  color: var(--footer-muted);
  line-height: 1.8;
  font-size: 0.96rem;
  letter-spacing: 1px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: background 0.25s ease, transform 0.25s ease;
}

.footer-social a:hover {
  background: var(--footer-accent);
  transform: translateY(-2px);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--footer-muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-links i {
  color: var(--footer-accent);
  font-size: 0.8rem;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  letter-spacing: 1px;
}

.footer-contact li a{
  text-decoration: none;
  gap: 0.5rem;
  color: var(--footer-muted);
  display: flex;
}

.footer-contact i {
  color: var(--footer-accent);
  margin-top: 0.25rem;
}

.footer-bottom {
  margin-top: 2.2rem;
  padding: 10px 0 10px;
  border-top: 1px solid rgb(69 184 226);
  position: relative;
  background: rgb(5 67 66);
}

.copyright {
  margin: 0;
  color: var(--footer-muted);
  font-size: 16px;
  letter-spacing: 1px;
}

.copyright a{
	color:#fff;
}

.footer-back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--footer-accent);
  color: #fff;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
}

.footer-back-to-top:hover {
  transform: translateY(-2px);
  background: #2fa4d8;
  color: #fff;
}

/* Floating Contact Buttons CSS */
.contact-buttons {
	position: fixed;
	bottom: 10px;
	left: 5px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 1000;
}
.contact-buttons a {
	color: white;
	font-size: 15px;
	padding: 10px 10px;
	border-radius: 50px;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
	text-align: center;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	width: 125px;
	text-decoration: none;
	transition: transform 0.3s ease;
	letter-spacing: 1px;
}
.contact-buttons a.call-button {
	background-color: #45b8e2;
}
.contact-buttons a.whatsapp-button {
	background-color: #095702;
}
.contact-buttons a i {
	margin-right: 10px;
}
.contact-buttons a:hover {
	transform: scale(0.95);
}
@media (max-width: 767px) {
	.site-footer {
		padding: 50px 0 0;
	}
	.footer-widget {
		margin-bottom: 1rem;
	}
	.footer-bottom {
		padding-bottom: 55px;
	}
	.footer-back-to-top {
		right: 7px;
		transform: translateY(-0px) !important;
		bottom: 0px;
		border-radius: 0;
		z-index: 100000;
		height: 41px;
		background: #095b58 !important;
	}
	.copyright{
		font-size: 15px;
	}
	.contact-buttons {
		width: 100%;
		margin: 0;
		padding: 0;
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 99999;
		opacity: 1 !important;
		display: block;
	}
	.contact-buttons a {
		min-width: auto;
        padding: 10px 12px;
        font-size: 14px;
        float: left;
        width: 50%;
        overflow: hidden;
        text-align: center;
        border-radius: 0;
	}
}
