/*
Theme Name: Laredo Concrete Cutting
Theme URI: https://example.com
Author: Converted from Horizons export
Description: A rugged, single-page WordPress theme for a land clearing, excavation, demolition and site-prep company. Converted from a React/Tailwind export into a classic WordPress theme with an editable Customizer for contact details.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: laredo-cc
*/

/* =========================================================
   FONTS
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* =========================================================
   RESET / BASE
   ========================================================= */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Inter", sans-serif;
	overflow-x: clip;
	background-color: #fff;
	color: hsl(0, 0%, 9%);
	line-height: 1.5;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font: inherit;
	cursor: pointer;
	background: none;
	border: 0;
	color: inherit;
}

input,
select,
textarea {
	font: inherit;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
p {
	margin: 0;
}

/* =========================================================
   DESIGN TOKENS
   ========================================================= */

:root {
	--background: #ffffff;
	--foreground: hsl(0, 0%, 9%);
	--primary: hsl(0, 84%, 47%);
	--primary-dark: hsl(0, 84%, 40%);
	--charcoal: hsl(0, 0%, 14%);
	--muted: hsl(0, 0%, 96%);
	--muted-foreground: hsl(0, 0%, 40%);
	--border: hsl(240, 5.9%, 90%);
	--radius: 0.5rem;
	--container-xl: 90rem;
	--container-lg: 80rem;
	--container-md: 70rem;
	--container-sm: 56rem;
}

.font-display {
	font-family: "Anton", sans-serif;
	letter-spacing: 0.01em;
}

.font-head {
	font-family: "Oswald", sans-serif;
}

/* =========================================================
   LAYOUT HELPERS
   ========================================================= */

.container {
	margin-left: auto;
	margin-right: auto;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

.container-xl {
	max-width: var(--container-xl);
}

.container-lg {
	max-width: var(--container-lg);
}

.container-md {
	max-width: var(--container-md);
}

.container-sm {
	max-width: var(--container-sm);
}

@media (min-width: 768px) {
	.container {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

.section {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

@media (min-width: 768px) {
	.section {
		padding-top: 7rem;
		padding-bottom: 7rem;
	}
}

.section-dark {
	background: var(--charcoal);
	color: #fff;
}

.section-muted {
	background: var(--muted);
}

.kicker {
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.3em;
	color: var(--primary);
	font-size: 0.875rem;
}

.heading-block {
	margin-bottom: 3rem;
}

.heading-title {
	font-family: "Anton", sans-serif;
	text-transform: uppercase;
	font-size: 2.5rem;
	line-height: 1;
	margin-top: 0.75rem;
}

.heading-title.light {
	color: #fff;
}

@media (min-width: 768px) {
	.heading-title {
		font-size: 3rem;
	}
}

.heading-rule {
	width: 5rem;
	height: 0.375rem;
	background: var(--primary);
	margin-top: 1.25rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 1rem 2rem;
	font-size: 1rem;
	transition:
		transform 0.15s ease,
		background-color 0.2s ease,
		color 0.2s ease,
		border-color 0.2s ease;
}

.btn:active {
	transform: scale(0.98);
}

.btn-primary {
	background: var(--primary);
	color: #fff;
}

.btn-primary:hover {
	background: var(--primary-dark);
}

.btn-outline {
	border: 2px solid rgba(255, 255, 255, 0.4);
	color: #fff;
}

.btn-outline:hover {
	border-color: var(--primary);
	color: var(--primary);
}

.btn-outline-dark {
	border: 2px solid var(--charcoal);
}

.btn-outline-dark:hover {
	background: var(--charcoal);
	color: #fff;
}

.btn-white {
	background: #fff;
	color: var(--charcoal);
}

.btn-white:hover {
	background: rgba(255, 255, 255, 0.9);
}

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

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	transition: background-color 0.3s ease;
	background: transparent;
}

.site-header.is-scrolled {
	background: rgba(35, 35, 35, 0.95);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 5rem;
}

/* Header SVG logo */

.lcc-header-logo {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	flex: 0 0 auto;
	width: 145px;
	height: 76px;
	margin: 0;
	padding: 0;
	overflow: visible;
	text-decoration: none;
}

.lcc-header-logo-image {
	display: block;
	width: 140px;
	height: auto;
	max-width: 140px;
	max-height: 68px;
	margin: 0;
	padding: 0;
	object-fit: contain;
	object-position: left center;
}

.main-nav {
	display: none;
	align-items: center;
	gap: 1.75rem;
}

.main-nav a {
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	font-size: 0.875rem;
	letter-spacing: 0.05em;
	color: rgba(255, 255, 255, 0.8);
	transition: color 0.2s ease;
}

.main-nav a:hover {
	color: var(--primary);
}

.header-cta {
	display: none;
}

.menu-toggle {
	color: #fff;
	padding: 0.5rem;
	background: none;
	border: none;
}

@media (min-width: 1024px) {
	.main-nav {
		display: flex;
	}

	.header-cta {
		display: inline-flex;
	}

	.menu-toggle {
		display: none;
	}
}

@media (max-width: 991px) {
	.lcc-header-logo {
		width: 125px;
		height: 70px;
	}

	.lcc-header-logo-image {
		width: 120px;
		max-width: 120px;
		max-height: 62px;
	}
}

@media (max-width: 767px) {
	.site-header-inner {
		height: 4.5rem;
	}

	.lcc-header-logo {
		width: 105px;
		height: 62px;
	}

	.lcc-header-logo-image {
		width: 100px;
		max-width: 100px;
		max-height: 54px;
	}
}

.mobile-nav {
	display: none;
	background: var(--charcoal);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1rem 1.25rem 1.5rem;
	flex-direction: column;
	gap: 0.25rem;
}

.mobile-nav.is-open {
	display: flex;
}

.mobile-nav a {
	text-align: left;
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: rgba(255, 255, 255, 0.85);
	padding: 0.75rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav .btn {
	margin-top: 0.75rem;
}

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

.hero {
	position: relative;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	overflow: hidden;
	clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}

.hero-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to right,
		rgba(0, 0, 0, 0.9),
		rgba(0, 0, 0, 0.7) 55%,
		rgba(0, 0, 0, 0.3)
	);
}

.hero-inner {
	position: relative;
	width: 100%;
	padding-top: 7rem;
	padding-bottom: 6rem;
}

.hero-content {
	max-width: 48rem;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--primary);
	color: #fff;
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-size: 0.75rem;
	padding: 0.5rem 1rem;
	margin-bottom: 1.5rem;
}

.hero-title {
	font-family: "Anton", sans-serif;
	font-size: 3rem;
	line-height: 0.95;
	color: #fff;
	text-transform: uppercase;
}

.hero-title .accent {
	color: var(--primary);
}

@media (min-width: 640px) {
	.hero-title {
		font-size: 3.75rem;
	}
}

@media (min-width: 1024px) {
	.hero-title {
		font-size: 4.5rem;
	}
}

.hero-text {
	margin-top: 1.5rem;
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.8);
	max-width: 36rem;
	line-height: 1.7;
}

.hero-actions {
	margin-top: 2.25rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

@media (min-width: 640px) {
	.hero-actions {
		flex-direction: row;
	}
}

/* =========================================================
   MARQUEE
   ========================================================= */

.marquee {
	background: var(--primary);
	color: #fff;
	overflow: hidden;
	padding: 0.75rem 0;
	border-top: 4px solid #000;
	border-bottom: 4px solid #000;
}

.marquee-track {
	display: flex;
	white-space: nowrap;
	width: max-content;
	animation: marquee 22s linear infinite;
}

.marquee-track span {
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-size: 0.875rem;
	margin: 0 2rem;
	display: flex;
	align-items: center;
	gap: 2rem;
}

.marquee-track .sep {
	color: rgba(255, 255, 255, 0.5);
}

@keyframes marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.marquee-track {
		animation: none;
	}
}

/* =========================================================
   ABOUT
   ========================================================= */

.about-grid {
	display: grid;
	gap: 3rem;
	align-items: center;
}

@media (min-width: 1024px) {
	.about-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.about-media {
	position: relative;
}

.about-media img {
	width: 100%;
	height: 480px;
	object-fit: cover;
}

.about-badge {
	position: absolute;
	bottom: -1.5rem;
	right: -1rem;
	background: var(--primary);
	color: #fff;
	padding: 1.5rem;
	max-width: 220px;
}

@media (min-width: 768px) {
	.about-badge {
		right: 1.5rem;
	}
}

.about-badge .num {
	font-family: "Anton", sans-serif;
	font-size: 2.25rem;
	line-height: 1;
}

.about-badge p {
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 0.875rem;
	margin-top: 0.25rem;
}

.about-text {
	color: var(--muted-foreground);
	font-size: 1.125rem;
	line-height: 1.7;
}

.about-tags {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-top: 2rem;
}

.about-tag {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	border-left: 4px solid var(--primary);
	background: var(--muted);
	padding: 0.75rem 1rem;
}

.about-tag span {
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	font-size: 0.875rem;
	letter-spacing: 0.03em;
}

.about-tag svg {
	color: var(--primary);
	flex-shrink: 0;
}

/* =========================================================
   SERVICES
   ========================================================= */

.services-grid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

@media (min-width: 1280px) {
	.services-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.service-card {
	background: rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1.5rem;
	transition: border-color 0.2s ease;
}

.service-card:hover {
	border-color: var(--primary);
}

.service-icon {
	display: grid;
	place-items: center;
	width: 3rem;
	height: 3rem;
	background: var(--primary);
	margin-bottom: 1.25rem;
}

.service-icon svg {
	color: #fff;
}

.service-card h3 {
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: #fff;
	font-size: 1.125rem;
	line-height: 1.3;
}

.service-card p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.875rem;
	margin-top: 0.5rem;
	line-height: 1.6;
}

.service-link {
	margin-top: 1rem;
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	color: var(--primary);
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 0.1em;
}

/* =========================================================
   WHY US
   ========================================================= */

.why-us {
	position: relative;
	overflow: hidden;
}

.why-us img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.why-us-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
}

.why-us-inner {
	position: relative;
}

.why-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.why-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

.why-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(6px);
	border-left: 4px solid var(--primary);
	padding: 1.25rem;
}

.why-item svg {
	color: var(--primary);
	flex-shrink: 0;
}

.why-item span {
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: #fff;
	font-size: 1.125rem;
}

/* =========================================================
   PROCESS
   ========================================================= */

.process-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.process-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

.process-card {
	position: relative;
	border-top: 4px solid var(--charcoal);
	background: var(--muted);
	padding: 1.75rem;
	transition: border-color 0.2s ease;
}

.process-card:hover {
	border-color: var(--primary);
}

.process-card .num {
	font-family: "Anton", sans-serif;
	font-size: 3.75rem;
	line-height: 1;
	color: rgba(220, 38, 38, 0.2);
}

.process-card h3 {
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	font-size: 1.25rem;
	margin-top: 0.5rem;
}

.process-card p {
	color: var(--muted-foreground);
	margin-top: 0.5rem;
	line-height: 1.6;
}

/* =========================================================
   GALLERY / BEFORE-AFTER
   ========================================================= */

.before-after {
	position: relative;
	width: 100%;
	height: 360px;
	overflow: hidden;
	user-select: none;
}

@media (min-width: 768px) {
	.before-after {
		height: 460px;
	}
}

.before-after img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.before-after-clip {
	position: absolute;
	inset: 0;
	overflow: hidden;
	width: 50%;
}

.before-after-clip img {
	width: 100vw;
	max-width: none;
}

.ba-tag {
	position: absolute;
	top: 1rem;
	background: rgba(0, 0, 0, 0.8);
	color: #fff;
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	padding: 0.375rem 0.75rem;
}

.ba-tag.before {
	left: 1rem;
}

.ba-tag.after {
	right: 1rem;
	background: var(--primary);
}

.ba-handle {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 3px;
	background: #fff;
	left: 50%;
	pointer-events: none;
}

.ba-handle-grip {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: grid;
	place-items: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: var(--primary);
	color: #fff;
}

.ba-range {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: ew-resize;
	margin: 0;
}

.gallery-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
	margin-top: 2rem;
}

@media (min-width: 640px) {
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.gallery-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.gallery-item {
	position: relative;
	overflow: hidden;
	height: 224px;
	background: #000;
	display: block;
	width: 100%;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gallery-item:hover img {
	transform: scale(1.1);
}

.gallery-caption {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	opacity: 0;
	transition: opacity 0.2s ease;
	display: flex;
	align-items: flex-end;
	padding: 1rem;
}

.gallery-item:hover .gallery-caption {
	opacity: 1;
}

.gallery-caption span {
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: #fff;
	font-size: 0.875rem;
}

.gallery-plus {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	display: grid;
	place-items: center;
	width: 2rem;
	height: 2rem;
	background: var(--primary);
	color: #fff;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.gallery-item:hover .gallery-plus {
	opacity: 1;
}

.lightbox {
	position: fixed;
	inset: 0;
	z-index: 60;
	background: rgba(0, 0, 0, 0.9);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
}

.lightbox.is-open {
	display: flex;
}

.lightbox img {
	max-width: 100%;
	max-height: 85vh;
	object-fit: contain;
}

.lightbox-close {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	color: #fff;
}

/* =========================================================
   AREAS
   ========================================================= */

.areas-text {
	color: var(--muted-foreground);
	font-size: 1.125rem;
	max-width: 42rem;
	margin-bottom: 2rem;
}

.areas-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.areas-list span {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border: 2px solid var(--charcoal);
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	font-size: 0.875rem;
	padding: 0.75rem 1.25rem;
	transition:
		background-color 0.2s ease,
		color 0.2s ease,
		border-color 0.2s ease;
}

.areas-list span:hover {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
}

/* =========================================================
   FAQ
   ========================================================= */

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.faq-item {
	border: 1px solid var(--border);
	background: #fff;
	padding: 0 1.25rem;
}

.faq-item summary {
	list-style: none;
	cursor: pointer;
	padding: 1.25rem 0;
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary .chevron {
	flex-shrink: 0;
	transition: transform 0.2s ease;
	color: var(--primary);
}

.faq-item[open] summary .chevron {
	transform: rotate(180deg);
}

.faq-item p {
	color: var(--muted-foreground);
	line-height: 1.6;
	padding-bottom: 1.25rem;
	margin: 0;
}

/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta {
	position: relative;
	overflow: hidden;
	padding: 6rem 0;
	text-align: center;
}

.final-cta img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.final-cta-overlay-1 {
	position: absolute;
	inset: 0;
	background: rgba(220, 38, 38, 0.8);
	mix-blend-mode: multiply;
}

.final-cta-overlay-2 {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
}

.final-cta-inner {
	position: relative;
}

.final-cta h2 {
	font-family: "Anton", sans-serif;
	font-size: 2.5rem;
	text-transform: uppercase;
	color: #fff;
	line-height: 1;
}

@media (min-width: 768px) {
	.final-cta h2 {
		font-size: 3.75rem;
	}
}

.final-cta p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.125rem;
	margin-top: 1.5rem;
	max-width: 42rem;
	margin-left: auto;
	margin-right: auto;
}

.final-cta-actions {
	margin-top: 2.25rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: center;
}

@media (min-width: 640px) {
	.final-cta-actions {
		flex-direction: row;
	}
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact-grid {
	display: grid;
	gap: 3rem;
	grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
	.contact-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.contact-form {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media (min-width: 640px) {
	.contact-form {
		grid-template-columns: 1fr 1fr;
	}
}

.contact-form .full {
	grid-column: 1 / -1;
}

.field {
	width: 100%;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #fff;
	padding: 0.75rem 1rem;
	transition: border-color 0.2s ease;
}

.field::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.field:focus {
	outline: none;
	border-color: var(--primary);
}

select.field {
	color: rgba(255, 255, 255, 0.4);
}

select.field option {
	color: #000;
}

.contact-form button[type="submit"] {
	grid-column: 1 / -1;
}

.form-notice {
	grid-column: 1 / -1;
	padding: 1rem;
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	font-size: 0.875rem;
	letter-spacing: 0.02em;
}

.form-notice.success {
	background: rgba(34, 197, 94, 0.15);
	border: 1px solid rgba(34, 197, 94, 0.4);
	color: #86efac;
}

.form-notice.error {
	background: rgba(220, 38, 38, 0.15);
	border: 1px solid rgba(220, 38, 38, 0.4);
	color: #fca5a5;
}

.contact-cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media (min-width: 640px) {
	.contact-cards {
		grid-template-columns: 1fr 1fr;
	}
}

.contact-card {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1.25rem;
	transition: border-color 0.2s ease;
}

.contact-card:hover {
	border-color: var(--primary);
}

.contact-card svg {
	color: var(--primary);
	flex-shrink: 0;
	margin-top: 0.125rem;
}

.contact-card .label {
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.5);
}

.contact-card .value {
	color: #fff;
	font-size: 0.875rem;
	margin-top: 0.25rem;
	word-break: break-all;
}

.contact-map {
	min-height: 280px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	overflow: hidden;
}

.contact-map iframe {
	width: 100%;
	height: 100%;
	min-height: 280px;
	border: 0;
}

.contact-side {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.contact-side .contact-map {
	flex: 1;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
	background: #000;
	color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
	display: grid;
	gap: 2.5rem;
	grid-template-columns: 1fr;
	padding-top: 3.5rem;
	padding-bottom: 3.5rem;
}

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

.footer-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: #fff;
	margin-bottom: 1rem;
}

.footer-about p {
	font-size: 0.875rem;
	line-height: 1.7;
}

.footer-social {
	display: flex;
	gap: 0.75rem;
	margin-top: 1.25rem;
}

.footer-social a {
	display: grid;
	place-items: center;
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid rgba(255, 255, 255, 0.15);
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease;
}

.footer-social a:hover {
	background: var(--primary);
	border-color: var(--primary);
}

.footer-col h4 {
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: #fff;
	margin-bottom: 1rem;
}

.footer-col ul {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	font-size: 0.875rem;
}

.footer-col a {
	transition: color 0.2s ease;
}

.footer-col a:hover {
	color: var(--primary);
}

.footer-col ul li a.contact-line {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1.5rem 0;
	text-align: center;
	font-size: 0.75rem;
}

/* =========================================================
   UTILITIES
   ========================================================= */

.flex {
	display: flex;
}

.items-center {
	align-items: center;
}

.gap-2 {
	gap: 0.5rem;
}

.text-center {
	text-align: center;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* =========================================================
   FOOTER CREDIT
   ========================================================= */

.footer-developed {
	margin-top: 0.5rem;
	font-size: 0.85rem;
	text-align: center;
	color: rgba(255,255,255,0.65);
}

.footer-developed a {
	color: #00b3d9;
	font-weight: 600;
	text-decoration: none;
	transition: opacity .2s ease;
}

.footer-developed a:hover {
	opacity: .8;
	text-decoration: underline;
}
.footer-bottom .footer-developed {
	margin-top: 8px;
	text-align: center;
	color: rgba(255, 255, 255, 0.65);
}

.footer-bottom .footer-developed a,
.footer-bottom .footer-developed a:visited,
.footer-bottom .footer-developed a:hover,
.footer-bottom .footer-developed a:focus {
	color: #00b3d9 !important;
	font-weight: 700 !important;
	text-decoration: none;
}

.footer-bottom .footer-developed a:hover {
	opacity: 0.8;
}

/* =========================================
   THANK YOU PAGE
========================================= */

.thank-you-page {
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 140px 20px 100px;
}

.thank-you-inner {
	max-width: 760px;
	margin: 0 auto;
}

.thank-you-icon {
	width: 90px;
	height: 90px;
	margin: 0 auto 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #ed1c24;
	border-radius: 50%;
	color: #ed1c24;
}

.thank-you-title {
	font-size: clamp(48px, 8vw, 90px);
	line-height: 1;
	text-transform: uppercase;
	color: #fff;
	margin: 15px 0 25px;
}

.thank-you-page .heading-rule {
	margin-left: auto;
	margin-right: auto;
}

.thank-you-lead {
	font-size: 22px;
	font-weight: 600;
	color: #fff;
	margin: 30px auto 15px;
	max-width: 650px;
}

.thank-you-text {
	font-size: 17px;
	line-height: 1.7;
	color: rgba(255,255,255,.7);
	max-width: 650px;
	margin: 0 auto;
}

.thank-you-actions {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
	margin-top: 40px;
}

@media (max-width: 600px) {

	.thank-you-page {
		padding: 110px 20px 70px;
	}

	.thank-you-actions {
		flex-direction: column;
	}

	.thank-you-actions .btn {
		width: 100%;
		justify-content: center;
	}

}