/**
 * Footer Component Styles
 * Converted from Footer.module.scss for WordPress
 * All classes are scoped with 'footer-' prefix to avoid conflicts
 */

.footer {
	background-color: var(--darkBlue, #002c5f);
	width: 100%;
	color: #ffffff;
}

.footer .footer-main-content {
	display: flex;
	justify-content: space-between;
	gap: 60px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Left Section - Logo and Social Media */
.footer .footer-left-section {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.footer .footer-left-section .footer-logo {
	display: block;
	margin-bottom: 15px;
	max-width: 370px;
}

.footer .footer-left-section .footer-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.footer .footer-left-section .footer-social-icons {
	display: flex;
	gap: 10px;
	align-items: center;
}

.footer .footer-left-section .footer-social-icons .footer-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: auto;
	aspect-ratio: 1/1;
	transition: transform 0.3s ease;
}

.footer .footer-left-section .footer-social-icons .footer-social-link:hover {
	transform: scale(1.1);
}

.footer .footer-left-section .footer-social-icons .footer-social-link img {
	width: 100%;
	height: 100%;
	max-height: 70%;
	object-fit: contain;
}

/* Middle Section - Quick Links */
.footer .footer-middle-section {
	max-width: 280px;
	padding-top: 70px;
	width: 100%;
}

.footer .footer-middle-section .footer-section-heading {
	color: #ffffff;
	font-family: var(--font-semi-bold, "Raleway-SemiBold", sans-serif);
	font-size: 16px;
	line-height: 22px;
	font-weight: 600;
	margin-bottom: 20;
}

.footer .footer-middle-section .footer-links-grid {
	display: flex;
	gap: 40px;
	justify-content: space-between;
}

.footer .footer-middle-section .footer-links-column {
	display: flex;
	flex-direction: column;
}

.footer .footer-middle-section .footer-links-column .footer-quick-link {
	color: #ffffff;
	padding-bottom: 15px;
	font-family: var(--font-light, "Raleway-Light", sans-serif);
	font-size: 18px;
	line-height: 1.3;
	font-weight: 400;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer .footer-middle-section .footer-links-column .footer-quick-link:hover {
	color: var(--lightBlue, #a3dbe8);
}

/* Right Section - Newsletter Signup */
.footer .footer-right-section {
	border-left: 1px solid rgba(255, 255, 255, 0.1);
	padding-left: 4%;
	width: 100%;
	max-width: 580px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.footer .footer-right-section .footer-section-heading {
	color: #a3dbe8;
	font-family: var(--font-semi-bold, "Raleway-SemiBold", sans-serif);
	font-size: 30px;
	line-height: 1.3;
	font-weight: 600;
	margin-bottom: 0;
}

.footer .footer-right-section .footer-newsletter-description {
	color: #ffffff;
	font-family: var(--font-medium, "Raleway-Medium", sans-serif);
	font-size: 16px;
	line-height: 1.6;
	font-weight: 500;
	width: 90%;
	margin-top: 15px;
	margin-bottom: 0;
}

.footer .footer-right-section .footer-newsletter-form {
	margin-top: auto;
	display: flex;
	justify-content: space-between;
	background-color: var(--darkBlue, #002c5f);
	border: 1px solid hsla(191, 60%, 77%, 0.2);
	border-radius: 50px;
	overflow: hidden;
	height: 60px;
}

.footer .footer-right-section .footer-newsletter-form .footer-email-input {
	color: var(--lightBlue, #a3dbe8);
	text-align: left;
	font-family: var(--font-regular, "Raleway-Regular", sans-serif);
	font-size: 16px;
	line-height: 1.3;
	font-weight: 400;
	padding: 0 25px;
	flex: 1;
	border: none;
	background: transparent;
	outline: none;
}

.footer .footer-right-section .footer-newsletter-form .footer-email-input::placeholder {
	color: var(--lightBlue, #a3dbe8);
}

.footer .footer-right-section .footer-newsletter-form .footer-email-input:focus {
	border-color: var(--lightBlue, #a3dbe8);
}

.footer .footer-right-section .footer-newsletter-form .footer-subscribe-button {
	width: 210px;
}

/* Bottom Section - Copyright and Legal Links */
.footer .footer-bottom-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 30px;
	padding-bottom: 30px;
}

.footer .footer-bottom-section .footer-copyright {
	color: #ffffff;
	font-family: var(--font-regular, "Raleway-Regular", sans-serif);
	font-size: 16px;
	line-height: 1.3;
	font-weight: 400;
	margin-bottom: 0;
}

.footer .footer-bottom-section .footer-legal-links {
	display: flex;
	gap: 10px;
	align-items: center;
}

.footer .footer-bottom-section .footer-legal-links .footer-legal-link {
	color: #ffffffd7;
	font-family: var(--font-regular, "Raleway-Regular", sans-serif);
	font-size: 16px;
	line-height: 1.3;
	font-weight: 400;
	text-decoration: underline;
	transition: color 0.3s ease;
}

.footer .footer-bottom-section .footer-legal-links .footer-legal-link:hover {
	color: var(--lightBlue, #a3dbe8);
}

/* Media Queries */
@media (max-width: 1024px) {
	.footer .footer-main-content {
		gap: 40px;
		padding-bottom: 40px;
	}

	.footer .footer-middle-section .footer-section-heading {
		font-size: 18px;
		margin-bottom: 20px;
	}
}

@media (max-width: 820px) {
	.footer .footer-middle-section {
		padding-top: 0;
		padding-bottom: 20px;
	}

	.footer .footer-main-content {
		flex-direction: column;
		/* gap: 40px; */
		gap: 20px;
		padding-bottom: 30px;
	}

	.footer .footer-middle-section .footer-section-heading {
		font-size: 16px;
		margin-bottom: 15px;
	}

	.footer .footer-left-section .footer-logo {
		max-width: 200px;
	}

	.footer .footer-middle-section .footer-links-grid {
		gap: 30px;
	}

	.footer .footer-right-section {
		max-width: 100%;
		border-left: none;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		padding-left: 0;
		padding-top: 30px;
	}

	.footer .footer-right-section .footer-newsletter-form {
		/* flex-direction: column; */
		flex-direction: row;
		height: auto;
		padding: 10px;
		gap: 10px;
		margin-top: 25px;
	}

	.footer .footer-right-section .footer-newsletter-form .footer-email-input {
		/* width: 100%; */
		flex: 1;
		padding: 10px 14px;
	}

	.footer .footer-right-section .footer-newsletter-form .footer-subscribe-button {
		width: 100%;
	}

	.footer .footer-bottom-section {
		flex-direction: column;
		gap: 20px;
		align-items: center;
	}

	.footer .footer-bottom-section .footer-legal-links {
		align-items: center;
		gap: 10px;
	}
}

@media (max-width: 700px) {
	.footer .footer-main-content {
		padding-bottom: 0px;
	}

	.footer .footer-right-section .footer-newsletter-form {
		margin-top: 0;
		padding: 0;
	}

	.footer .footer-right-section .footer-newsletter-form .btn_primary {

		height: 40px;
	}

	.footer .footer-right-section .footer-newsletter-description {
		font-size: 14px;
	}

	.footer .footer-bottom-section .footer-copyright {
		font-size: 13px;
	}

	.footer .footer-left-section .footer-logo {
		max-width: 150px;
		display: none;
	}

	.footer .footer-middle-section .footer-links-column .footer-quick-link {
		font-size: 14px;
	}

	.footer .footer-right-section .footer-section-heading {
		font-size: 22px;
	}

	.footer .footer-middle-section {
		max-width: 100%;
		padding-top: 0px;
		padding-bottom: 0px;
	}

	.footer-newsletter-content {
		padding-bottom: 20px;
	}

	.footer .footer-bottom-section {
		gap: 10px;
		padding: 20px 0;
	}

	.footer .footer-bottom-section .footer-legal-links .footer-legal-link {
		font-size: 12px;
	}

	.footer .footer-left-section .footer-social-icons .footer-social-link {
		width: 25px;
	}
}