* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
	background: #0a0a0a;
	color: #fff;
}

.container {
	width: 90%;
	max-width: 1100px;
	margin: auto;
	padding: 0 10px;
}

h1,
h2,
h3 {
	line-height: 1.2;
}

/* ACCESSIBILITY */
a:focus,
button:focus {
	outline: 2px solid red;
	outline-offset: 3px;
}

/* ANIMATION  */
.navbar a,
.btn {
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar a:hover {
	color: red;
	transform: scale(1.05);
}

/* NAVBAR */
.navbar {
	position: fixed;
	width: 100%;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(10px);
	z-index: 1000;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}
.navbar nav {
	display: flex;
}

.navbar a {
	color: white;
	margin-left: 20px;
	text-decoration: none;
}

/* HERO */
.logo {
	font-size: 1.5rem;
	font-weight: bold;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.hero {
	height: 100vh;
	position: relative;
	background: #000; /* Fallback color */
	overflow: hidden; /* Prevents video overflow on small screens */
}

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

.overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
}

.hero-content {
	position: relative;
	top: 40%;
	max-width: 600px;
}
.hero p {
	margin-top: 10px;
	font-size: 1.1rem;
}
.hero h1 {
	font-size: clamp(2rem, 8vw, 3.5rem);
}

.btn {
	display: inline-block;
	margin-top: 15px;
	padding: 10px 20px;
	background: red;
	color: white;
	text-decoration: none;
	border-radius: 5px;
}

/* INTRO (2nd HERO FEEL) */
.intro {
	padding: 80px 0;
	text-align: center;
	background: #0f0f0f;
}

.intro h2 {
	font-size: 2.2rem;
	margin-bottom: 15px;
}

.intro p {
	max-width: 700px;
	margin: auto;
	color: #ccc;
}

/* SERVICES */
.services {
	padding: 80px 0;
	text-align: center;
}

.grid {
	display: flex;
	gap: 20px;
}

.card {
	flex: 1;
	padding: 20px;
	background: #111;
	border-radius: 10px;
	transition: 0.3s;
}

.card:hover {
	transform: translateY(-5px);
}

/* SHOWCASE */
.showcase {
	padding: 80px 0;
}

.showcase h2 {
	text-align: center;
	margin-bottom: 30px;
}

/* GRID (modern) */
.video-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

/* CARD */
.video-card {
	background: #111;
	border-radius: 12px;
	overflow: hidden;
	transition: 0.3s;
	border: 1px solid #222;
}

/* HOVER EFFECT */
.video-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* VIDEO */
.video-card video {
	width: 100%;
	aspect-ratio: 16 / 9; /* Maintains consistent height */
	object-fit: cover;
	display: block;
}

/* TEXT */
.video-info {
	padding: 15px;
}

.video-info h3 {
	margin-bottom: 5px;
}

.video-info p {
	color: #aaa;
	font-size: 0.9rem;
}

/* CTA */
.cta {
	padding: 60px 0;
	text-align: center;
	background: #111;
}
/* CONTACT */
.contact {
	padding: 80px 0;
	background: #0f0f0f;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

/* LEFT */
.contact-info h2 {
	margin-bottom: 15px;
}

.contact-info p {
	margin-bottom: 10px;
	color: #ccc;
}

/* FORM */
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.contact-form input,
.contact-form textarea {
	padding: 12px;
	background: #111;
	border: 1px solid #222;
	color: white;
	border-radius: 6px;
}

.contact-form textarea {
	min-height: 120px;
	resize: none;
}

.contact-form button {
	padding: 12px;
	background: red;
	border: none;
	color: white;
	cursor: pointer;
	border-radius: 6px;
}

/* MESSAGES */
.success {
	color: lightgreen;
}

.error {
	color: red;
}
/* FAQ SECTION */
.faq {
	padding: 80px 0;
	background: #0f0f0f;
}

.faq h2 {
	text-align: center;
	margin-bottom: 30px;
}

.faq-item {
	border-bottom: 1px solid #222;
	padding: 15px 0;
}

.faq-question {
	display: flex;
	justify-content: space-between;
	cursor: pointer;
	font-size: 1.1rem;
}

.faq-question span {
	transition: 0.3s;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: 0.3s ease;
}

.faq-answer p {
	margin-top: 10px;
	color: #ccc;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
	max-height: 200px;
}

.faq-item.active .faq-question span {
	transform: rotate(45deg);
}

/* PRE-FOOTER */
.prefooter {
	background: #0d0d0d;
	padding: 60px 0;
	border-top: 1px solid #222;
}

.prefooter-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.prefooter h3 {
	margin-bottom: 15px;
}

.prefooter ul {
	list-style: none;
}

.prefooter li {
	margin-bottom: 10px;
}

.prefooter a {
	color: #ccc;
	text-decoration: none;
}

.prefooter a:hover {
	color: #fff;
}

.prefooter p {
	color: #ccc;
	margin-bottom: 10px;
}

.socials a {
	display: block;
	margin-bottom: 8px;
}
/* FOOTER */
.footer {
	padding: 20px;
	text-align: center;
	background: #000;
}

/* HAMBURGER */
.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 5px;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: white;
	transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}

/* ===================================== */
/* TABLET (<= 992px) */
/* ===================================== */
@media (max-width: 992px) {
	.hero h1 {
		font-size: 2.5rem;
	}

	.grid {
		flex-wrap: wrap;
	}

	.card {
		flex: 1 1 calc(50% - 20px);
	}

	.video-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	#nav-menu.active {
		max-height: 400px;
		display: flex; /* Ensures it shows up if the base state was hidden */
	}
}

/* ===================================== */
/* MOBILE (<= 768px) */
/* ===================================== */
@media (max-width: 768px) {
	/* NAVBAR */
	.hamburger {
		display: flex;
	}

	.navbar nav {
		position: absolute;
		top: 60px;
		left: 0;
		width: 100%;
		background: rgba(0, 0, 0, 0.95);
		flex-direction: column;
		align-items: center;

		max-height: 0;
		overflow: hidden;
		transition: 0.3s;
	}

	.navbar nav a {
		padding: 15px 0;
		width: 100%;
		text-align: center;
	}

	#nav-menu.active {
		max-height: 500px; /* Increased to fit all links */
		padding: 20px 0; /* Adds breathing room when open */
		opacity: 1;
		display: flex; /* Ensures it shows up if the base state was hidden */
	}

	/* HERO */
	.hero {
		height: 80vh;
	}

	.hero-content {
		top: 30%;
		text-align: center;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero p {
		font-size: 1rem;
	}
	.intro {
		padding: 50px 0;
	}

	.intro h2 {
		font-size: 1.6rem;
	}
	/* SERVICES */
	.grid {
		flex-direction: column;
	}

	.card {
		width: 100%;
	}
	.video-grid {
		grid-template-columns: 1fr;
	}
	/* CTA */
	.cta h2 {
		font-size: 1.5rem;
	}
	.contact-grid {
		grid-template-columns: 1fr;
	}
	.faq {
		padding: 50px 0;
	}

	.faq-question {
		font-size: 1rem;
	}
	.prefooter-grid {
		grid-template-columns: 1fr 1fr;
	}
}

/* ===================================== */
/* SMALL PHONES (<= 480px) */
/* ===================================== */
@media (max-width: 480px) {
	.hero h1 {
		font-size: 1.6rem;
	}

	.btn {
		padding: 8px 16px;
		font-size: 0.9rem;
	}

	.services {
		padding: 50px 0;
	}

	.showcase {
		padding: 50px 0;
	}
	.prefooter-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}
	#nav-menu.active {
		max-height: 400px;
		display: flex;
	}
}
