/**
 * Footer Component Styles
 * 
 * @package SeedDigital
 * @since 1.0.0
 */

/* ============================================
   Footer Base Styles
   ============================================ */
   .site-footer {
	background-color: #36BFFA;
	padding: 0;
	margin-top: 0;
}

.footer-wrapper {
	width: 100%;
	padding: 3rem 2rem;
}

.footer-content {
	background-color: #E6F2FF;
	border-radius: 32px;
	padding: 100px 120px 70px;
	max-width: 1266px;
	margin: 0 auto;
}

/* ============================================
   Footer Columns Layout
   ============================================ */
.footer-columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
	margin-bottom: 3rem;
	padding-bottom: 2rem;
	border-bottom: 3px solid #0086C9;
}

.footer-column {
	color: #026AA2;
}

/* ============================================
   Footer Typography
   ============================================ */
.footer-heading {
	font-size: 1.25rem;
	font-weight: bold;
	color: #026AA2;
	margin-bottom: 1rem;
}

.footer-text {
	color: #026AA2;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
}

/* ============================================
   Footer Button
   ============================================ */
.footer-button {
	display: inline-block;
	background-color: #0066CC;
	color: #B9E6FE;
	width: 195px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
	border-radius: 32px;
	text-decoration: none;
	font-weight: 600;
	transition: background-color 0.3s ease;
}

.footer-button:hover {
	background-color: #0052A3;
	color: #ffffff;
}

/* ============================================
   Footer Navigation & Links
   ============================================ */
.footer-menu {
	display: flex;
	flex-direction: column;
}

.footer-menu-list,
.footer-links-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-menu-list li,
.footer-links-list li {
	margin-bottom: 0.75rem;
}

.footer-menu-list a,
.footer-links-list a {
	color: #026AA2;
	text-decoration: none;
	transition: color 0.3s ease;
	font-size: 0.95rem;
}

.footer-menu-list a:hover,
.footer-links-list a:hover {
	color: #0066CC;
}

/* Menu lists side by side */
.footer-menu-lists-wrapper {
	display: flex;
	gap: 3rem;
	align-items: flex-start;
}

.footer-menu-list,
.footer-links-list {
	flex: 0 0 auto;
	min-width: 0;
}

/* ============================================
   Footer Insights Section
   ============================================ */
.insights-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.insight-item {
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
}

.insight-icon {
	font-size: 1.25rem;
	flex-shrink: 0;
}

.insight-content {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.insight-date {
	font-size: 0.85rem;
	color: #026AA2;
	font-weight: 500;
}

.insight-text {
	font-size: 0.9rem;
	color: #026AA2;
	margin: 0;
	line-height: 1.4;
}

/* ============================================
   Footer Bottom Section
   ============================================ */
.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 1.5rem;
}

/* Footer Left Section (Logo + Social) */
.footer-left {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: flex-start;
}

/* Footer Logo */
.footer-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.logo-circle {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #026AA2;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-inner-circle {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background-color: #0066CC;
}

.logo-text {
	font-size: 1.25rem;
	font-weight: 500;
	color: #026AA2;
}

/* Footer Legal Links */
.footer-legal {
	display: flex;
	align-items: center;
	gap: 3rem;
	flex-wrap: wrap;
	font-size: 0.85rem;
	justify-content: flex-end;
}

.copyright {
	color: #026AA2;
  font-size: 10px;
  font-weight: 400;
  font-family: Exo, sans-serif;
}

.legal-link {
	color: #026AA2;
	text-decoration: none;
	transition: color 0.3s ease;
  font-size: 10px;
  font-weight: 400;
  font-family: Exo, sans-serif;
}

.legal-link:hover {
	color: #0066CC;
}

/* Footer Social Icons */
.footer-social {
	display: flex;
	gap: 0.75rem;
}

.social-icon {
	width: 24px;
	height: 24px;
	border-radius: 50%;
  border: 1px solid #0086C9;
	display: block;
	transition: background-color 0.3s ease;
}

.social-icon:hover {
	background-color: #fff;
}

.social-icon img{
	max-width: 100%;
	height: 100%;
	object-fit: contain;
}
.footer-message{
	max-width: 1266px;
	margin: 96px auto;
}
.footer-message p{
	font-size: 22px;
	font-weight: 400;
	font-family: 'Be Vietnam Pro', sans-serif;
	color: #fff;
	line-height: 130%;
}
/* ============================================
   Footer Responsive Styles
   ============================================ */
@media (max-width: 1024px) {
	.footer-columns {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}

@media (max-width: 768px) {
	.footer-wrapper {
		padding: 2rem 1rem;
	}

	.footer-content {
		padding: 2rem 1.5rem;
		border-radius: 15px;
	}

	.footer-columns {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer-left {
		width: 100%;
	}

	.footer-legal {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
		justify-content: flex-start;
	}
}