@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap");
@import url("fontawesome-all.min.css");

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
	--orange: #FF6B00;
	--orange-glow: #FF8C00;
	--orange-dim: #cc5500;
	--pit: #111111;
	--steel: #1E1E1E;
	--steel-mid: #2A2A2A;
	--steel-light: #3A3A3A;
	--chrome: #888888;
	--light: #F0F0F0;
	--white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
	font-family: 'Inter', sans-serif;
	background: var(--pit);
	color: var(--light);
	overflow-x: hidden;
	line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

/* ── NAV ── */

nav {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(17, 17, 17, 0.92);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(255, 107, 0, 0.15);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 5%;
	height: 68px;
}

.logo {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 28px;
	letter-spacing: 3px;
	color: var(--white);
	display: flex;
	align-items: center;
	gap: 12px;
}

.logo img {
	height: 44px;
	width: auto;
}

.logo-dot {
	width: 10px;
	height: 10px;
	background: var(--orange);
	border-radius: 50%;
	box-shadow: 0 0 12px var(--orange);
	animation: pulse 2s ease-in-out infinite;
	flex-shrink: 0;
}

@keyframes pulse {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.4); opacity: 0.7; }
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
}

.nav-links a {
	color: var(--chrome);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
	color: var(--orange);
}

.nav-social {
	display: flex;
	gap: 16px;
	align-items: center;
}

.nav-social a {
	color: var(--chrome);
	font-size: 16px;
	transition: color 0.2s;
}

.nav-social a:hover { color: var(--orange); }

.nav-cta {
	background: var(--orange);
	color: var(--white) !important;
	padding: 10px 22px;
	border-radius: 4px;
	letter-spacing: 1px !important;
	font-weight: 600 !important;
	transition: background 0.2s, transform 0.15s !important;
}

.nav-cta:hover {
	background: var(--orange-glow) !important;
	transform: translateY(-1px);
	color: var(--white) !important;
}

.nav-toggle {
	display: none;
	background: none;
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: var(--white);
	font-size: 20px;
	padding: 8px 12px;
	border-radius: 4px;
	cursor: pointer;
}

/* ── HERO ── */

.hero {
	min-height: 92vh;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	padding: 80px 5% 60px;
	position: relative;
	overflow: hidden;
	gap: 40px;
}

.hero-home {
	background:
		linear-gradient(90deg, rgba(17, 17, 17, 0.95) 0%, rgba(17, 17, 17, 0.75) 50%, rgba(17, 17, 17, 0.5) 100%),
		url("../../New images/pexels-cottonbro-6503529.jpg") center / cover no-repeat;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 80% at 75% 50%, rgba(255, 107, 0, 0.07) 0%, transparent 70%);
	pointer-events: none;
}

.hero::after {
	content: '';
	position: absolute;
	top: -40%;
	right: -5%;
	width: 55%;
	height: 200%;
	background: repeating-linear-gradient(
		-60deg,
		transparent,
		transparent 28px,
		rgba(255, 107, 0, 0.035) 28px,
		rgba(255, 107, 0, 0.035) 30px
	);
	pointer-events: none;
}

.hero-text { position: relative; z-index: 2; }

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 107, 0, 0.12);
	border: 1px solid rgba(255, 107, 0, 0.3);
	color: var(--orange);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 7px 14px;
	border-radius: 2px;
	margin-bottom: 28px;
}

.hero-badge::before {
	content: '';
	width: 6px;
	height: 6px;
	background: var(--orange);
	border-radius: 50%;
}

h1 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: clamp(64px, 9vw, 110px);
	line-height: 0.9;
	letter-spacing: 2px;
	color: var(--white);
	margin-bottom: 24px;
}

h1 span { color: var(--orange); }

.hero-sub {
	font-size: 17px;
	color: var(--chrome);
	line-height: 1.7;
	max-width: 440px;
	margin-bottom: 44px;
	font-weight: 300;
}

.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
	display: inline-block;
	background: var(--orange);
	color: var(--white);
	padding: 16px 36px;
	border: none;
	border-radius: 4px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
	position: relative;
	overflow: hidden;
}

.btn-primary::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
	opacity: 0;
	transition: opacity 0.2s;
}

.btn-primary:hover {
	background: var(--orange-glow);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(255, 107, 0, 0.35);
	color: var(--white);
}

.btn-primary:hover::after { opacity: 1; }

.btn-ghost {
	display: inline-block;
	background: transparent;
	color: var(--light);
	padding: 16px 36px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 4px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	cursor: pointer;
	transition: border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn-ghost:hover {
	border-color: var(--orange);
	color: var(--orange);
	transform: translateY(-2px);
}

.hero-visual {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
}

.hero-logo-wrap {
	position: relative;
	animation: floatY 5s ease-in-out infinite;
}

.hero-logo-wrap img {
	width: clamp(260px, 40vw, 420px);
	height: auto;
	filter: drop-shadow(0 20px 60px rgba(255, 107, 0, 0.25));
}

.hero-shadow {
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	width: 200px;
	height: 20px;
	background: radial-gradient(ellipse, rgba(255, 107, 0, 0.25) 0%, transparent 70%);
	animation: shadowPulse 5s ease-in-out infinite;
}

@keyframes floatY {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-16px); }
}

@keyframes shadowPulse {
	0%, 100% { transform: translateX(-50%) scaleX(1); opacity: 0.6; }
	50% { transform: translateX(-50%) scaleX(0.7); opacity: 0.3; }
}

.hero-image-wrap {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.hero-image-wrap img {
	width: 100%;
	height: 420px;
	object-fit: cover;
}

.hero-image-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, transparent 60%);
}

/* ── STATS BAR ── */

.stats-bar {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-item {
	padding: 36px 5%;
	border-right: 1px solid rgba(255, 255, 255, 0.06);
	transition: background 0.2s;
	text-align: center;
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255, 107, 0, 0.04); }

.stat-num {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 52px;
	color: var(--orange);
	line-height: 1;
	letter-spacing: 1px;
}

.stat-label {
	font-size: 12px;
	color: var(--chrome);
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-top: 6px;
}

/* ── SECTIONS ── */

section { padding: 100px 5%; }

.section-eyebrow {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 16px;
}

.section-title {
	font-family: 'Bebas Neue', sans-serif;
	font-size: clamp(42px, 6vw, 70px);
	letter-spacing: 1px;
	color: var(--white);
	line-height: 0.95;
	margin-bottom: 20px;
}

.section-sub {
	font-size: 16px;
	color: var(--chrome);
	line-height: 1.7;
	max-width: 560px;
	font-weight: 300;
	margin-bottom: 60px;
}

/* ── ABOUT ── */

.about-section {
	background: var(--pit);
	position: relative;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.about-text p {
	font-size: 16px;
	color: var(--chrome);
	line-height: 1.8;
	font-weight: 300;
	margin-bottom: 20px;
}

.about-image {
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.07);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.about-image img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}

/* ── SERVICE / PRODUCT CARDS ── */

.products-section { background: var(--steel); }

.card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.product-card {
	background: var(--steel-mid);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 8px;
	overflow: hidden;
	transition: transform 0.3s cubic-bezier(.25, .46, .45, .94), box-shadow 0.3s, border-color 0.3s;
	position: relative;
}

.product-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--orange);
	transform: scaleX(0);
	transition: transform 0.3s;
	transform-origin: left;
	z-index: 2;
}

.product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 107, 0, 0.08);
	border-color: rgba(255, 107, 0, 0.25);
}

.product-card:hover::before { transform: scaleX(1); }

.card-image {
	height: 200px;
	overflow: hidden;
}

.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.product-card:hover .card-image img { transform: scale(1.06); }

.card-body { padding: 28px; }

.card-tag {
	display: inline-block;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--orange);
	background: rgba(255, 107, 0, 0.1);
	padding: 5px 10px;
	border-radius: 2px;
	margin-bottom: 16px;
}

.card-title {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 30px;
	letter-spacing: 1px;
	color: var(--white);
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.card-title .card-icon {
	color: var(--orange);
	font-size: 22px;
}

.card-desc {
	font-size: 14px;
	color: var(--chrome);
	line-height: 1.6;
	font-weight: 300;
	margin-bottom: 24px;
}

.card-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	color: var(--light);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 4px;
	padding: 10px 18px;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
	width: 100%;
	justify-content: center;
}

.card-btn:hover {
	background: var(--orange);
	border-color: var(--orange);
	color: var(--white);
}

.arrow { transition: transform 0.2s; }
.card-btn:hover .arrow { transform: translateX(4px); }

/* ── WHY SECTION ── */

.why-section {
	background: var(--pit);
	position: relative;
	overflow: hidden;
}

.why-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(
		-45deg,
		transparent,
		transparent 60px,
		rgba(255, 107, 0, 0.015) 60px,
		rgba(255, 107, 0, 0.015) 62px
	);
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2px;
	position: relative;
	z-index: 1;
}

.why-card {
	background: var(--steel);
	padding: 40px 32px;
	transition: background 0.25s, transform 0.25s;
}

.why-card:hover {
	background: var(--steel-mid);
	transform: scale(1.02);
	z-index: 2;
}

.why-icon {
	width: 48px;
	height: 48px;
	background: rgba(255, 107, 0, 0.12);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	font-size: 20px;
	color: var(--orange);
}

.why-title {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 22px;
	color: var(--white);
	letter-spacing: 1px;
	margin-bottom: 10px;
}

.why-desc {
	font-size: 14px;
	color: var(--chrome);
	line-height: 1.65;
	font-weight: 300;
}

/* ── LOCATIONS ── */

.locations-section { background: var(--steel); }

.location-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

.location-card {
	background: var(--steel-mid);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 8px;
	padding: 36px 32px;
	position: relative;
	overflow: hidden;
	transition: border-color 0.25s, transform 0.25s;
}

.location-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--orange);
}

.location-card:hover {
	border-color: rgba(255, 107, 0, 0.3);
	transform: translateY(-4px);
}

.location-card h3 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 28px;
	color: var(--white);
	letter-spacing: 1px;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.location-card h3 .icon { color: var(--orange); font-size: 20px; }

.location-card p {
	font-size: 15px;
	color: var(--chrome);
	line-height: 1.7;
	font-weight: 300;
}

.location-card a {
	color: var(--orange);
	font-weight: 600;
	transition: color 0.2s;
}

.location-card a:hover { color: var(--orange-glow); }

/* ── CTA BAND ── */

.cta-band {
	background: var(--orange);
	padding: 80px 5%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	position: relative;
	overflow: hidden;
}

.cta-band::before {
	content: '';
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(
		-60deg,
		transparent,
		transparent 30px,
		rgba(255, 255, 255, 0.04) 30px,
		rgba(255, 255, 255, 0.04) 32px
	);
}

.cta-band-text { position: relative; z-index: 1; }

.cta-band h2 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: clamp(36px, 5vw, 62px);
	letter-spacing: 2px;
	color: var(--white);
	line-height: 0.95;
	margin-bottom: 12px;
}

.cta-band p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.75);
	font-weight: 300;
}

.btn-white {
	display: inline-block;
	background: var(--white);
	color: var(--orange);
	padding: 18px 44px;
	border: none;
	border-radius: 4px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
	white-space: nowrap;
	position: relative;
	z-index: 1;
	flex-shrink: 0;
}

.btn-white:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
	color: var(--orange);
}

/* ── PAGE HEADER (inner pages) ── */

.page-header {
	padding: 100px 5% 60px;
	background: var(--steel);
	position: relative;
	overflow: hidden;
}

.page-header::after {
	content: '';
	position: absolute;
	top: -40%;
	right: -5%;
	width: 55%;
	height: 200%;
	background: repeating-linear-gradient(
		-60deg,
		transparent,
		transparent 28px,
		rgba(255, 107, 0, 0.035) 28px,
		rgba(255, 107, 0, 0.035) 30px
	);
	pointer-events: none;
}

.page-header-content { position: relative; z-index: 1; }

.page-banner {
	height: 320px;
	overflow: hidden;
}

.page-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.85;
}

/* ── CONTACT GRID ── */

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2px;
	background: rgba(255, 255, 255, 0.06);
}

.contact-item {
	background: var(--steel);
	padding: 40px 32px;
	text-align: center;
	transition: background 0.25s;
}

.contact-item:hover { background: var(--steel-mid); }

.contact-item .why-icon { margin: 0 auto 16px; }

.contact-item h3 {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 20px;
	color: var(--white);
	margin-bottom: 10px;
}

.contact-item p {
	font-size: 14px;
	color: var(--chrome);
	font-weight: 300;
}

.contact-item a {
	color: var(--orange);
	font-weight: 500;
}

.contact-item a:hover { color: var(--orange-glow); }

/* ── FOOTER ── */

footer {
	background: #0A0A0A;
	border-top: 1px solid rgba(255, 107, 0, 0.15);
	padding: 60px 5% 30px;
}

.footer-top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	margin-bottom: 32px;
}

.footer-brand .logo { font-size: 24px; margin-bottom: 16px; }

.footer-desc {
	font-size: 14px;
	color: var(--chrome);
	line-height: 1.7;
	font-weight: 300;
	max-width: 300px;
}

.footer-col h4 {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 20px;
}

.footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-links a {
	font-size: 14px;
	color: var(--chrome);
	transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-social {
	display: flex;
	gap: 16px;
	margin-top: 16px;
}

.footer-social a {
	color: var(--chrome);
	font-size: 18px;
	transition: color 0.2s;
}

.footer-social a:hover { color: var(--orange); }

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-copy { font-size: 12px; color: #555; }

.footer-copy a {
	color: var(--orange);
	transition: color 0.2s;
}

.footer-copy a:hover { color: var(--orange-glow); }

/* ── MOBILE ── */

@media (max-width: 900px) {
	.hero { grid-template-columns: 1fr; padding: 60px 5% 40px; min-height: auto; }
	.hero-visual { order: -1; }
	.hero-logo-wrap img { width: clamp(180px, 50vw, 280px); }
	.hero-image-wrap img { height: 280px; }
	.about-grid { grid-template-columns: 1fr; }
	.about-image img { height: 280px; }
	.footer-top { grid-template-columns: 1fr 1fr; }
	.cta-band { flex-direction: column; text-align: center; }
	.card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
	.nav-toggle { display: block; }

	.nav-links {
		display: none;
		position: absolute;
		top: 68px;
		left: 0;
		right: 0;
		background: rgba(17, 17, 17, 0.98);
		flex-direction: column;
		padding: 24px 5%;
		gap: 20px;
		border-bottom: 1px solid rgba(255, 107, 0, 0.15);
	}

	.nav-links.open { display: flex; }

	.stats-bar { grid-template-columns: repeat(2, 1fr); }

	.stat-item:nth-child(2) { border-right: none; }
	.stat-item:nth-child(1),
	.stat-item:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.06); }

	.why-grid { grid-template-columns: 1fr; }
	section { padding: 70px 5%; }
	.card-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
	.stats-bar { grid-template-columns: 1fr 1fr; }
	.stat-num { font-size: 38px; }
	.footer-top { grid-template-columns: 1fr; }
	.btn-group { flex-direction: column; }
	.btn-primary, .btn-ghost { text-align: center; }
}
