/**
 * VV Child Theme — Contact Us Page Styles
 *
 * Layout: Hero, Quick Action Cards, Split Location (Map & Address), Social Grid
 *
 * Theme Colors:
 * - Black: #0a0a0a, #111111
 * - Charcoal: #1c1c1e, #232323
 * - Accent Red: #e8001c
 * - Neutral Gray: #8e8e93
 */

:root {
	--contact-black:    #0a0a0a;
	--contact-dark:     #111111;
	--contact-charcoal: #1c1c1e;
	--contact-red:      #e8001c;
	--contact-red-dark: #c0001a;
	--contact-white:    #ffffff;
	--contact-grey-lt:  #f0eeeb;
	--contact-grey-md:  #8e8e93;
	--contact-grey-dk:  #3a3a3c;
	--contact-radius:   24px;
	--contact-radius-sm: 12px;
	--contact-transition: 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   BODY OVERRIDES & SPACERS
   ============================================================ */

body.page-template-page-contact {
	overflow-x: hidden;
	background: var(--contact-white);
	color: var(--contact-black);
}

/* Hide Salient's header spacer — hero handles its own top spacing */
body.page-template-page-contact #header-space {
	display: none !important;
}

/* ============================================================
   SCROLL REVEALS
   ============================================================ */

.vv-reveal {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity var(--contact-transition), transform var(--contact-transition);
}

.vv-reveal.from-left {
	transform: translateX(-40px);
}

.vv-reveal.from-right {
	transform: translateX(40px);
}

.vv-reveal.is-visible {
	opacity: 1;
	transform: none;
}

.vv-reveal-d1 { transition-delay: 0.1s; }
.vv-reveal-d2 { transition-delay: 0.2s; }
.vv-reveal-d3 { transition-delay: 0.3s; }
.vv-reveal-d4 { transition-delay: 0.4s; }

/* ============================================================
   HERO / HEADER
   ============================================================ */

.vv-contact-hero {
	position: relative;
	width: 100%;
	padding: 180px 0 100px;
	background: linear-gradient(to bottom, #ffffff 0%, #f9f9fb 100%);
	text-align: center;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.vv-contact-hero__inner {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 40px;
}

.vv-contact-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Manrope', sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--contact-red);
	margin-bottom: 20px;
}

.vv-contact-hero__eyebrow::before,
.vv-contact-hero__eyebrow::after {
	content: '';
	display: block;
	width: 16px;
	height: 1px;
	background: var(--contact-red);
}

.vv-contact-hero__title {
	font-family: 'Manrope', sans-serif;
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	font-weight: 800;
	line-height: 1.1;
	color: var(--contact-black);
	letter-spacing: -0.02em;
	margin: 0 0 24px;
}

.vv-contact-hero__title em {
	font-style: normal;
	color: var(--contact-red);
}

.vv-contact-hero__subtitle {
	font-family: 'Manrope', sans-serif;
	font-size: clamp(1rem, 1.3vw, 1.2rem);
	font-weight: 400;
	color: #555555;
	line-height: 1.6;
	margin: 0;
}

/* ============================================================
   CONTACT METHODS GRID
   ============================================================ */

.vv-contact-methods {
	padding: 80px 0;
	background: var(--contact-white);
}

.vv-contact-methods__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
}

.vv-contact-methods__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.vv-contact-card {
	background: var(--contact-white);
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: var(--contact-radius);
	padding: 48px 40px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
	            border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
	            box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.vv-contact-card:hover {
	transform: translateY(-6px);
	border-color: rgba(232, 0, 28, 0.3);
	box-shadow: 0 20px 40px rgba(232, 0, 28, 0.08), 0 5px 15px rgba(0, 0, 0, 0.03);
}

.vv-contact-card__icon {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: rgba(232, 0, 28, 0.08);
	border: 1px solid rgba(232, 0, 28, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 28px;
	color: var(--contact-red);
	transition: background 0.3s ease, transform 0.3s ease;
}

.vv-contact-card:hover .vv-contact-card__icon {
	background: var(--contact-red);
	color: var(--contact-white);
	transform: scale(1.05);
}

.vv-contact-card__icon svg {
	width: 32px;
	height: 32px;
	stroke: currentColor;
	stroke-width: 1.8;
	fill: none;
	transition: stroke 0.3s ease;
}

.vv-contact-card:hover .vv-contact-card__icon svg {
	stroke: var(--contact-white);
}

.vv-contact-card__title {
	font-family: 'Manrope', sans-serif;
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--contact-black);
	margin: 0 0 12px;
}

.vv-contact-card__desc {
	font-family: 'Manrope', sans-serif;
	font-size: 0.95rem;
	color: #555555;
	line-height: 1.5;
	margin: 0 0 28px;
	flex-grow: 1;
}

.vv-contact-card__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'Manrope', sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	text-decoration: none;
	padding: 14px 28px;
	border-radius: 100px;
	transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.vv-contact-card__btn--outline {
	border: 1.5px solid rgba(0, 0, 0, 0.15);
	color: var(--contact-black);
}

.vv-contact-card__btn--outline:hover {
	background: var(--contact-black);
	color: var(--contact-white);
	border-color: var(--contact-black);
	transform: translateY(-2px);
}

.vv-contact-card__btn--primary {
	background: var(--contact-red);
	color: var(--contact-white);
	box-shadow: 0 6px 20px rgba(232, 0, 28, 0.3);
}

.vv-contact-card__btn--primary:hover {
	background: var(--contact-red-dark);
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(232, 0, 28, 0.4);
}

.vv-contact-card__btn svg {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	stroke-width: 2.2;
	fill: none;
}

/* ============================================================
   SHOWROOM & MAP SECTION
   ============================================================ */

.vv-contact-location {
	padding: 100px 0;
	background: #f8f8fa;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.vv-contact-location__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
	display: grid;
	grid-template-columns: 460px 1fr;
	gap: 80px;
	align-items: center;
}

.vv-contact-info__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Manrope', sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--contact-red);
	margin-bottom: 16px;
}

.vv-contact-info__eyebrow::before {
	content: '';
	display: block;
	width: 20px;
	height: 1px;
	background: var(--contact-red);
}

.vv-contact-info__title {
	font-family: 'Manrope', sans-serif;
	font-size: clamp(2rem, 3.5vw, 3rem);
	font-weight: 800;
	color: var(--contact-black);
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin: 0 0 40px;
}

.vv-contact-details {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.vv-contact-detail {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.vv-contact-detail__icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(0, 0, 0, 0.03);
	border: 1px solid rgba(0, 0, 0, 0.06);
	color: var(--contact-red);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.vv-contact-detail__icon svg {
	width: 22px;
	height: 22px;
	stroke: currentColor;
	stroke-width: 1.8;
	fill: none;
}

.vv-contact-detail__text h4 {
	font-family: 'Manrope', sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--contact-black);
	margin: 0 0 6px;
}

.vv-contact-detail__text p {
	font-family: 'Manrope', sans-serif;
	font-size: 0.95rem;
	color: #555555;
	line-height: 1.5;
	margin: 0;
}

.vv-contact-detail__text a {
	color: #555555;
	text-decoration: none;
	transition: color 0.25s ease;
}

.vv-contact-detail__text a:hover {
	color: var(--contact-red);
}

.vv-contact-map {
	position: relative;
	border-radius: var(--contact-radius);
	overflow: hidden;
	aspect-ratio: 16 / 10;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.vv-contact-map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	/* Removed dark filters to display clean, clear roadmap style */
}

/* ============================================================
   SOCIAL FOLLOW GRID
   ============================================================ */

.vv-contact-socials {
	padding: 100px 0;
	background: var(--contact-white);
	text-align: center;
}

.vv-contact-socials__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
}

.vv-contact-socials__eyebrow {
	display: inline-block;
	font-family: 'Manrope', sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--contact-red);
	margin-bottom: 16px;
}

.vv-contact-socials__title {
	font-family: 'Manrope', sans-serif;
	font-size: clamp(2rem, 3.5vw, 2.75rem);
	font-weight: 800;
	color: var(--contact-black);
	letter-spacing: -0.02em;
	margin: 0 0 64px;
}

.vv-contact-socials__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.vv-social-card {
	background: var(--contact-white);
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: var(--contact-radius-sm);
	padding: 40px 32px;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.015);
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
	            border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
	            background 0.4s cubic-bezier(0.22, 1, 0.36, 1),
	            box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.vv-social-card:hover {
	transform: translateY(-6px);
	border-color: rgba(232, 0, 28, 0.25);
	background: var(--contact-white);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
}

.vv-social-card__icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.03);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	color: var(--contact-black);
	transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.vv-social-card:hover .vv-social-card__icon {
	background: var(--contact-red);
	color: var(--contact-white);
	transform: scale(1.05);
}

.vv-social-card__icon svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

/* Ensure outline icons use stroke appropriately if needed */
.vv-social-card__icon svg.use-stroke {
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.vv-social-card__name {
	font-family: 'Manrope', sans-serif;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--contact-black);
	margin-bottom: 4px;
}

.vv-social-card__handle {
	font-family: 'Manrope', sans-serif;
	font-size: 0.85rem;
	color: var(--contact-grey-md);
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

@media (max-width: 1024px) {
	.vv-contact-methods__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.vv-contact-location__inner {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.vv-contact-socials__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 640px) {
	.vv-contact-hero {
		padding: 150px 0 80px;
	}

	.vv-contact-hero__inner,
	.vv-contact-methods__inner,
	.vv-contact-location__inner,
	.vv-contact-socials__inner {
		padding: 0 24px;
	}

	.vv-contact-card {
		padding: 36px 24px;
	}

	.vv-contact-socials__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.vv-contact-socials {
		padding: 80px 0;
	}

	.vv-contact-location {
		padding: 80px 0;
	}
}
