/* ============================================
   Footer v2
   ============================================ */

.footer-v2 {
	color: #fff;
	background-color: var(--color-navy, #1B2A36);
	position: relative;
	overflow: hidden;
}

/* Decorative subtle grid lines */
.footer-v2::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px);
	background-size: 20% 100%;
	pointer-events: none;
}

.footer-inner {
	position: relative;
	z-index: 1;
	max-width: 1400px;
	margin: 0 auto;
	padding: clamp(48px, 6vw, 100px) clamp(24px, 5vw, 88px) clamp(24px, 3vw, 48px);
}

/* Top section */
.footer-top {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-3xl, 4rem);
}

@media (min-width: 768px) {
	.footer-top {
		grid-template-columns: 1fr 2fr;
		gap: clamp(40px, 6vw, 100px);
	}
}

/* Brand column */
.footer-brand-col {
	max-width: 300px;
}

.footer-logo {
	height: 42px;
	width: auto;
	margin-bottom: var(--space-lg, 1.5rem);
	display: block;
}

.footer-tagline {
	font-size: var(--fs-sm, 0.88rem);
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.65;
	margin-bottom: var(--space-xl, 2rem);
}

.footer-social {
	display: flex;
	gap: 12px;
}
.footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.1);
	text-decoration: none;
	font-size: 1.1rem;
	transition: all 0.3s ease;
}
.footer-social a:hover {
	color: var(--color-navy, #1B2A36);
	background-color: var(--color-gold, #FFC000);
	border-color: var(--color-gold, #FFC000);
}

/* Links grid */
.footer-links-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-2xl, 3rem);
}

@media (min-width: 768px) {
	.footer-links-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.footer-heading {
	font-family: var(--font-accent, 'Be Vietnam Pro', sans-serif);
	font-weight: 600;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--color-gold, #FFC000);
	margin-bottom: var(--space-lg, 1.5rem);
}

.footer-address {
	font-size: var(--fs-xs, 0.8rem);
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.65;
	margin-bottom: var(--space-md, 1rem);
}
.footer-address strong {
	color: rgba(255, 255, 255, 0.85);
	font-weight: 600;
	display: block;
	margin-bottom: 2px;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-links li {
	margin-bottom: 10px;
}
.footer-links a {
	font-size: var(--fs-xs, 0.8rem);
	color: rgba(255, 255, 255, 0.45);
	text-decoration: none;
	transition: color 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.footer-links a::before {
	content: '';
	width: 0;
	height: 1px;
	background: var(--color-gold, #FFC000);
	transition: width 0.3s ease;
}
.footer-links a:hover {
	color: var(--color-gold, #FFC000);
}
.footer-links a:hover::before {
	width: 12px;
}

/* Divider */
.footer-divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.06);
	margin: var(--space-2xl, 3rem) 0 var(--space-lg, 1.5rem);
}

/* Bottom bar */
.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 8px;
}
.footer-bottom p {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.3);
	margin: 0;
}
.footer-bottom a {
	color: rgba(255, 255, 255, 0.4);
	text-decoration: none;
	transition: color 0.2s ease;
}
.footer-bottom a:hover {
	color: var(--color-gold, #FFC000);
}

/* ============================================
   Mobile
   ============================================ */

@media (max-width: 767px) {
	.footer-brand-col {
		max-width: none;
		text-align: center;
	}
	.footer-social {
		justify-content: center;
	}
	.footer-bottom {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 4px;
	}
}
