/* ========================================
   PIT STOP VERKSTED — Dark Theme
   ======================================== */

/* --- Base --- */
body {
	margin: 0;
	padding: 0;
	background: #111;
	color: #fff;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	padding-top: 110px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

a { color: #fff; transition: color 0.3s; }
a:hover { color: #C41E2A; text-decoration: none; }

img { max-width: 100%; }

.section { padding: 80px 0; }
.section-dark { background: #0a0a0a; }
.section-darker { background: #050505; }

.section-title {
	font-family: 'Oswald', sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 50px;
	letter-spacing: 2px;
}

/* --- Buttons --- */
.btn-pitstop {
	background: #C41E2A;
	color: #fff;
	border: 2px solid #C41E2A;
	padding: 14px 50px;
	font-family: 'Oswald', sans-serif;
	font-size: 1.15rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 3px;
	border-radius: 0;
	transition: all 0.3s;
	display: inline-block;
	transform: skewX(-12deg);
}
.btn-pitstop:hover {
	background: #a0161f;
	border-color: #a0161f;
	color: #fff;
	transform: skewX(-12deg) translateY(-2px);
	box-shadow: 0 5px 20px rgba(196, 30, 42, 0.4);
}

.btn-pitstop-outline {
	background: transparent;
	color: #fff;
	border: 2px solid #C41E2A;
	padding: 14px 50px;
	font-family: 'Oswald', sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 3px;
	border-radius: 0;
	transition: all 0.3s;
	display: inline-block;
	transform: skewX(-12deg);
}
.btn-pitstop-outline span,
.btn-pitstop-outline {
	display: inline-block;
}
.btn-pitstop-outline:hover {
	background: #C41E2A;
	color: #fff;
	box-shadow: 0 0 20px rgba(196, 30, 42, 0.4);
}


/* --- Navbar --- */
.navbar {
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	padding: 0;
	border: none;
	z-index: 1000;
}

.nav-grid {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.nav-side {
	min-width: 0;
}
.nav-side-left {}
.nav-side-right {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 4px;
}

.nav-center {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}
.navbar.scrolled .nav-center {
	padding: 0;
}

.nav-logo {
	flex-shrink: 0;
	margin: 0 25px;
	position: relative;
	z-index: 1010;
}
.nav-logo img {
	height: 180px;
	margin-top: 0;
	margin-bottom: -30px;
	transition: height 0.3s, margin-top 0.3s, margin-bottom 0.3s;
	filter: drop-shadow(0 0 15px rgba(196, 30, 42, 0.4)) drop-shadow(0 0 40px rgba(196, 30, 42, 0.15));
}
.navbar.scrolled .nav-logo img {
	height: 95px;
	margin-top: 0;
	margin-bottom: 0;
}

.nav-menu {
	list-style: none;
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	gap: 5px;
}
.nav-menu li a {
	color: #fff;
	font-family: 'Oswald', sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2.5px;
	padding: 10px 18px;
	transition: color 0.3s;
	white-space: nowrap;
	text-decoration: none;
}
.nav-menu li a:hover {
	color: #C41E2A;
}

.lang-link {
	font-family: 'Oswald', sans-serif;
	font-size: 0.7rem;
	padding: 4px 5px;
	opacity: 0.4;
	letter-spacing: 1px;
	color: #fff;
	text-decoration: none;
	transition: opacity 0.3s;
}
.lang-link:hover {
	opacity: 0.8;
	color: #fff;
}
.lang-link.active {
	opacity: 1;
	color: #C41E2A;
}

/* --- Burger --- */
.nav-burger {
	display: none;
	position: fixed;
	top: 25px;
	right: 20px;
	width: 30px;
	height: 22px;
	cursor: pointer;
	z-index: 1010;
}
.nav-burger span {
	display: block;
	width: 100%;
	height: 2px;
	background: #fff;
	margin-bottom: 6px;
	transition: all 0.3s;
}
.navbar.open .nav-burger span:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}
.navbar.open .nav-burger span:nth-child(2) {
	opacity: 0;
}
.navbar.open .nav-burger span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

/* --- Mobile menu --- */
.nav-mobile {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.92);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	z-index: 9;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
}
.nav-mobile ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.nav-mobile ul li a {
	display: block;
	color: #fff;
	font-family: 'Oswald', sans-serif;
	font-size: 1.4rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 4px;
	padding: 18px 0;
	text-decoration: none;
	transition: color 0.3s;
}
.nav-mobile ul li a:hover {
	color: #C41E2A;
}
.nav-mobile-lang {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,0.1);
}
.nav-mobile-lang .lang-link {
	font-size: 0.9rem;
	padding: 5px 10px;
}

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

@media (max-width: 991px) {
	.nav-grid {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 10px 20px;
	}
	.nav-menu-left, .nav-menu-right {
		display: none;
	}
	.nav-side-left, .nav-side-right {
		display: none;
	}
	.nav-logo {
		margin: 0;
	}
	.nav-logo img {
		height: 70px !important;
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}
	.nav-burger {
		display: block;
	}
}


/* --- Hero --- */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-size: cover;
	background-position: center top;
	margin-top: -110px;
	padding-top: 110px;
}

.hero-overlay {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.3) 0%,
		rgba(0, 0, 0, 0.55) 50%,
		rgba(0, 0, 0, 0.8) 100%
	);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 900px;
	padding: 0 20px;
	margin-top: 5vh;
}

.hero h1 {
	font-family: 'Oswald', sans-serif;
	font-size: 5rem;
	font-weight: 700;
	line-height: 1.05;
	margin-bottom: 20px;
	text-shadow: 3px 3px 15px rgba(0,0,0,0.7);
	letter-spacing: 3px;
}

.hero p {
	font-size: 1.15rem;
	margin-bottom: 45px;
	opacity: 0.75;
	letter-spacing: 1px;
	font-weight: 300;
}

.hero::after {
	content: '';
	position: absolute;
	bottom: 60px;
	left: 10%;
	right: 10%;
	height: 2px;
	background: linear-gradient(90deg, transparent, #C41E2A, transparent);
	z-index: 3;
	box-shadow: 0 0 20px rgba(196, 30, 42, 0.6), 0 0 40px rgba(196, 30, 42, 0.3);
}

.hero-scroll {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 4;
	opacity: 0.25;
	animation: scrollPulse 2s infinite;
}
.hero-scroll span {
	display: block;
	width: 20px;
	height: 20px;
	border-right: 2px solid #C41E2A;
	border-bottom: 2px solid #C41E2A;
	transform: rotate(45deg);
	margin: -8px auto 0;
}

@keyframes scrollPulse {
	0%, 100% { opacity: 0.12; transform: translateX(-50%) translateY(0); }
	50% { opacity: 0.25; transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 768px) {
	.hero h1 { font-size: 2.8rem; }
	.hero p { font-size: 0.95rem; }
}


/* --- Page Header --- */
.page-header {
	position: relative;
	padding: 80px 0 60px;
	background-size: cover;
	background-position: center;
	text-align: center;
}
.page-header-overlay {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0, 0, 0, 0.7);
}
.page-header .container {
	position: relative;
	z-index: 2;
}
.page-header h1 {
	font-family: 'Oswald', sans-serif;
	font-size: 3rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin: 0;
}

/* --- Why Us --- */
.why-us {
	padding: 80px 0;
	background: #0a0a0a;
}

.why-us-img {
	height: 100%;
	min-height: 400px;
	background-size: cover;
	background-position: center;
	border-radius: 4px;
}

.why-us-label {
	color: #C41E2A;
	font-family: 'Oswald', sans-serif;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 10px;
}

.why-us h2 {
	font-size: 3rem;
	margin-bottom: 40px;
	line-height: 1.1;
}

.why-item {
	display: flex;
	margin-bottom: 30px;
}

.why-item-number {
	font-family: 'Oswald', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: #C41E2A;
	min-width: 50px;
}

.why-item h4 {
	font-size: 1.1rem;
	margin-bottom: 5px;
}

.why-item p {
	color: #aaa;
	font-size: 0.9rem;
	margin-bottom: 0;
}


/* --- Service Cards --- */
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

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

.service-card {
	background: #1a1a1a;
	border: 1px solid #333;
	padding: 40px 30px;
	text-align: center;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
}
.service-card:hover {
	border-color: #C41E2A;
	transform: translateY(-5px);
	box-shadow: 0 0 25px rgba(196, 30, 42, 0.5), 0 0 60px rgba(196, 30, 42, 0.25), 0 0 100px rgba(196, 30, 42, 0.1);
}
.service-card::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: radial-gradient(circle, rgba(196, 30, 42, 0.12) 0%, transparent 70%);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.4s, height 0.4s;
	pointer-events: none;
}
.service-card:hover::after {
	width: 300px;
	height: 300px;
}

.service-card .service-icon {
	font-size: 2.5rem;
	color: #fff;
	margin-bottom: 20px;
	opacity: 0.8;
}

.service-card h4 {
	font-size: 1rem;
	margin-bottom: 15px;
	letter-spacing: 1px;
}

.service-card p {
	color: #999;
	font-size: 0.85rem;
	line-height: 1.6;
	margin-bottom: 0;
}

.service-price {
	margin-top: 15px;
	font-family: 'Oswald', sans-serif;
	font-size: 1rem;
	font-weight: 600;
	color: #C41E2A;
	letter-spacing: 1px;
}

/* --- Service Rows (full page) --- */
.service-row {
	display: flex;
	background: #1a1a1a;
	border: 1px solid #2a2a2a;
	margin-bottom: 30px;
	overflow: hidden;
	transition: border-color 0.3s, box-shadow 0.3s;
}
.service-row:hover {
	border-color: #C41E2A;
	box-shadow: 0 0 20px rgba(196, 30, 42, 0.2);
}

.service-row-reverse {
	flex-direction: row-reverse;
}

.service-row-img {
	flex: 0 0 40%;
	min-height: 280px;
	background-size: cover;
	background-position: center;
	position: relative;
}
.service-row-img::after {
	content: '';
	position: absolute;
	top: 0; right: 0; bottom: 0;
	width: 80px;
	background: linear-gradient(to right, transparent, #1a1a1a);
}
.service-row-reverse .service-row-img::after {
	right: auto;
	left: 0;
	background: linear-gradient(to left, transparent, #1a1a1a);
}

.service-row-img-icon {
	background: #141414;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	color: #333;
}

.service-row-content {
	flex: 1;
	padding: 40px 45px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.service-row-icon {
	font-size: 1.5rem;
	color: #C41E2A;
	margin-bottom: 15px;
}

.service-row-content h3 {
	font-family: 'Oswald', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 15px;
}

.service-row-content p {
	color: #aaa;
	font-size: 0.95rem;
	line-height: 1.7;
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.service-row,
	.service-row-reverse {
		flex-direction: column;
	}
	.service-row-img {
		flex: 0 0 200px;
		min-height: 200px;
	}
	.service-row-img::after {
		display: none;
	}
	.service-row-content {
		padding: 25px 20px;
	}
}


/* --- Gallery Grid --- */
.gallery-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	grid-template-rows: 200px 200px;
	grid-auto-rows: 200px;
	gap: 8px;
}

.gallery-grid .gallery-item {
	overflow: hidden;
	position: relative;
	border: 1px solid #222;
	transition: border-color 0.3s, box-shadow 0.3s;
}

.gallery-grid .gallery-item:hover {
	border-color: #C41E2A;
	box-shadow: 0 0 15px rgba(196, 30, 42, 0.3);
}

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

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

/* first photo: large, spans 2 rows */
.gallery-grid .gallery-item:nth-child(1) {
	grid-row: span 2;
}

/* red corner accents */
.gallery-grid .gallery-item:nth-child(4)::before {
	content: '';
	position: absolute;
	top: -1px; right: -1px;
	width: 25px; height: 25px;
	border-top: 3px solid #C41E2A;
	border-right: 3px solid #C41E2A;
	z-index: 2;
	pointer-events: none;
}
.gallery-grid .gallery-item:nth-child(4)::after {
	content: '';
	position: absolute;
	bottom: -1px; left: -1px;
	width: 25px; height: 25px;
	border-bottom: 3px solid #C41E2A;
	border-left: 3px solid #C41E2A;
	z-index: 2;
	pointer-events: none;
}

/* rows after first 5: reset to even 3-column */
.gallery-grid .gallery-item:nth-child(n+6) {
	grid-column: auto;
	grid-row: auto;
}

@media (max-width: 768px) {
	.gallery-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
		grid-auto-rows: 180px;
	}
	.gallery-grid .gallery-item:nth-child(1) {
		grid-column: span 2;
		grid-row: span 1;
	}
}

/* --- Gallery folders --- */
.gallery-folder-link {
	text-decoration: none;
	display: block;
}
.gallery-folder-thumb {
	height: 220px;
	background-size: cover;
	background-position: center;
	position: relative;
	border: 1px solid #333;
	transition: border-color 0.3s, box-shadow 0.3s;
}
.gallery-folder-thumb:hover {
	border-color: #C41E2A;
	box-shadow: 0 0 20px rgba(196, 30, 42, 0.2);
}
.gallery-folder-name {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0,0,0,0.85));
	padding: 30px 15px 15px;
	font-family: 'Oswald', sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #fff;
	text-align: center;
}

@media (max-width: 768px) {
	.gallery-grid { grid-template-columns: repeat(2, 1fr); }
	.gallery-grid .gallery-item:first-child { grid-column: span 1; grid-row: span 1; }
}


/* --- Booking Form --- */
.booking-section {
	position: relative;
	padding: 100px 0;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

.booking-section .hero-overlay {
	background: rgba(0, 0, 0, 0.75);
}

.booking-section .booking-content {
	position: relative;
	z-index: 2;
	text-align: center;
}

.booking-section h2 {
	font-size: 3rem;
	margin-bottom: 15px;
}

.booking-section .booking-subtitle {
	color: #aaa;
	font-size: 1.1rem;
	margin-bottom: 40px;
}

.booking-form {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
	max-width: 800px;
	margin: 0 auto;
}

.booking-form input[type="text"],
.booking-form input[type="tel"],
.booking-form input[type="email"] {
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.2);
	color: #fff;
	padding: 14px 25px;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.95rem;
	border-radius: 0;
	min-width: 180px;
	flex: 1;
	outline: none;
	transition: border-color 0.3s;
	transform: skewX(-12deg);
}

.booking-form input::placeholder { color: #666; }
.booking-form input:focus { border-color: #C41E2A; }

.booking-form .btn-pitstop {
	border-radius: 0;
	padding: 14px 45px;
}

@media (max-width: 768px) {
	.booking-form { flex-direction: column; padding: 0 20px; }
	.booking-form input,
	.booking-form .btn-pitstop { width: 100%; min-width: auto; transform: skewX(-8deg); }
}

/* --- Booking Page --- */
.booking-hero {
	position: relative;
	padding: 120px 0 80px;
	background-size: cover;
	background-position: center;
	text-align: center;
	min-height: 40vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.booking-form-full {
	background: #1a1a1a;
	border: 1px solid #2a2a2a;
	padding: 40px;
}
.booking-form-full h3 {
	margin-bottom: 5px;
}

.form-field {
	margin-bottom: 20px;
}
.form-field label {
	display: block;
	font-family: 'Oswald', sans-serif;
	font-size: 0.8rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #888;
	margin-bottom: 8px;
}
.form-field input,
.form-field textarea {
	width: 100%;
	background: rgba(255,255,255,0.05);
	border: 1px solid #333;
	color: #fff;
	padding: 12px 18px;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.95rem;
	outline: none;
	transition: border-color 0.3s;
	transform: skewX(-5deg);
}
.form-field input:focus,
.form-field textarea:focus {
	border-color: #C41E2A;
}
.form-field textarea {
	resize: vertical;
	min-height: 100px;
}

.booking-info {
	background: #141414;
	border: 1px solid #2a2a2a;
	padding: 35px;
	height: 100%;
}

.booking-info-block {
	margin-bottom: 25px;
	padding-bottom: 25px;
	border-bottom: 1px solid #222;
}
.booking-info-block:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}
.booking-info-block h4 {
	font-size: 0.9rem;
	letter-spacing: 1.5px;
	margin-bottom: 8px;
}
.booking-info-block h4 i {
	margin-right: 10px;
}
.booking-info-block p,
.booking-info-block .working-hours {
	color: #aaa;
	font-size: 0.9rem;
	margin-bottom: 0;
}
.booking-info-block a {
	color: #ccc;
}
.booking-info-block a:hover {
	color: #C41E2A;
}

.booking-success {
	text-align: center;
	padding: 80px 20px;
	background: #1a1a1a;
	border: 1px solid #2a2a2a;
}
.booking-success-icon {
	font-size: 4rem;
	color: #28a745;
	margin-bottom: 20px;
}
.booking-success h2 {
	color: #28a745;
}
.booking-success p {
	color: #aaa;
}

.form-success {
	background: rgba(40, 167, 69, 0.15);
	border: 1px solid #28a745;
	color: #28a745;
	padding: 20px;
	border-radius: 4px;
	text-align: center;
	margin-bottom: 30px;
}

.form-error {
	background: rgba(196, 30, 42, 0.15);
	border: 1px solid #C41E2A;
	color: #C41E2A;
	padding: 20px;
	border-radius: 4px;
	text-align: center;
	margin-bottom: 30px;
}


/* --- Reviews --- */
.review-card {
	background: #1a1a1a;
	border: 1px solid #333;
	padding: 30px;
	margin-bottom: 20px;
	border-radius: 4px;
}

.review-card .review-name {
	font-family: 'Oswald', sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 5px;
}

.review-card .review-car {
	color: #C41E2A;
	font-size: 0.8rem;
	margin-bottom: 15px;
}

.review-card .review-stars {
	color: #f5c518;
	margin-bottom: 15px;
}

.review-card .review-text {
	color: #ccc;
	font-size: 0.9rem;
	line-height: 1.7;
}


/* --- Contacts --- */
.contacts-info {
	margin-bottom: 40px;
}
.contacts-info p {
	font-size: 1.05rem;
	margin-bottom: 10px;
}
.contacts-info i {
	color: #C41E2A;
	width: 25px;
	margin-right: 10px;
}

.contacts-map iframe {
	width: 100%;
	height: 400px;
	border: none;
	filter: grayscale(0.8) brightness(0.7);
	border-radius: 4px;
}
.contacts-map iframe:hover {
	filter: grayscale(0) brightness(1);
	transition: filter 0.5s;
}


/* --- Footer --- */
#footer {
	background: #0a0a0a;
	padding: 60px 0 0;
	border-top: 1px solid #222;
	margin-top: 0;
}

.footer-logo {
	max-height: 80px;
	margin-bottom: 20px;
}

.footer-desc {
	color: #888;
	font-size: 0.85rem;
	line-height: 1.7;
}

.footer-col h5 {
	font-family: 'Oswald', sans-serif;
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 20px;
}

.footer-col p {
	color: #999;
	font-size: 0.9rem;
	margin-bottom: 8px;
}

.footer-col p i {
	color: #C41E2A;
	width: 20px;
	margin-right: 8px;
}

.working-hours {
	color: #999;
	font-size: 0.9rem;
	line-height: 1.8;
}

.footer-social {
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	gap: 15px;
	padding-top: 40px;
}

.social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	border: 1px solid #555;
	border-radius: 50%;
	font-size: 1.2rem;
	color: #fff;
	transition: all 0.3s;
}
.social-icon:hover {
	background: #C41E2A;
	border-color: #C41E2A;
	color: #fff;
}

.footer-bottom {
	margin-top: 40px;
	padding: 20px 0;
	border-top: 1px solid #222;
}
.footer-bottom p {
	color: #666;
	font-size: 0.8rem;
	margin: 0;
}

@media (max-width: 768px) {
	.footer-col { margin-bottom: 30px; }
	.footer-social { justify-content: flex-start; padding-top: 0; }
}


/* --- Utility --- */
.text-red { color: #C41E2A; }
.bg-dark-card { background: #1a1a1a; }
.mb-0 { margin-bottom: 0 !important; }
.optional {}
.mobile {}
@media all and (max-width: 768px) { .optional { display: none } }
@media all and (min-width: 768px) { .mobile { display: none } }

