/*
 * Footer CSS
 *
 * @author  Andy Bui
 * @website https://abui.top
 * @project XE DỊCH VỤ HOÀNG DUY
 */

.hoangduy-footer-wrapper {
	background-color: var(--hd-secondary-color);
	color: #d1d5db; /* Light grey text */
}

.hoangduy-footer-main {
	padding: 60px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-widgets {
	display: grid;
	grid-template-columns: 1.5fr 1.5fr 1fr 1fr;
	gap: 30px;
}

.widget-title {
	color: var(--hd-white);
	font-size: 16px;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 10px;
}

.widget-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 2px;
	background-color: var(--hd-primary-color);
}

/* Logo and About */
.footer-logo img {
	max-height: 60px;
	margin-bottom: 20px;
}

.footer-desc {
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 20px;
}

.footer-socials {
	display: flex;
	gap: 10px;
}

.footer-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: var(--hd-white);
	transition: var(--hd-transition);
}

.footer-socials a:hover {
	background-color: var(--hd-primary-color);
}

/* Contact List */
.contact-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 15px;
	font-size: 14px;
}

.contact-list i {
	color: var(--hd-primary-color);
	margin-top: 4px;
}

/* Menu Links */
.widget-links .menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.widget-links .menu li {
	margin-bottom: 12px;
}

.widget-links .menu a {
	color: #d1d5db;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
}

.widget-links .menu a::before {
	content: '•';
	color: var(--hd-primary-color);
	margin-right: 8px;
	font-size: 18px;
	line-height: 1;
}

.widget-links .menu a:hover {
	color: var(--hd-primary-color);
	transform: translateX(5px);
}

/* Newsletter */
.widget-newsletter p {
	font-size: 14px;
	margin-bottom: 15px;
}

.newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.newsletter-form input {
	padding: 12px 15px;
	background-color: var(--hd-white);
	border: none;
	border-radius: 4px;
	color: var(--hd-text-color);
	font-family: var(--hd-font-main);
	width: 100%;
	box-sizing: border-box;
}

.newsletter-form .btn-primary {
	background-color: var(--hd-primary-color);
	color: var(--hd-white);
	border: none;
	padding: 12px 15px;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 600;
	transition: var(--hd-transition);
}

.newsletter-form .btn-primary:hover {
	background-color: var(--hd-primary-hover);
}

/* Bottom Bar */
.hoangduy-footer-bottom {
	background-color: #111; /* Darker than main footer */
	padding: 20px 0;
	font-size: 13px;
	color: #9ca3af;
}

.footer-bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-bottom-links a {
	color: #9ca3af;
	margin: 0 5px;
}

.footer-bottom-links a:hover {
	color: var(--hd-white);
}

/* Responsive basics */
@media (max-width: 991px) {
	.footer-widgets {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.footer-widgets {
		grid-template-columns: 1fr;
	}
	.footer-bottom-inner {
		flex-direction: column;
		text-align: center;
		gap: 10px;
	}
}
