/* Opener styles */
#opener.opener-screen {
	position: fixed;
	z-index: 10000;
	top: 0; left: 0;
	width: 100vw; height: 100vh;
	background: linear-gradient(120deg, #111 80%, #232323 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.2rem;
	letter-spacing: 0.03em;
	color: #eaeaea;
	text-shadow: 0 0 8px #000, 0 0 24px #fff1, 0 0 2px #fff;
	transition: opacity 1s;
}
#opener.hidden { opacity: 0; pointer-events: none; transition: opacity 1s; }
.opener-lines {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 1.45rem;
	line-height: 1.7;
	max-width: 420px;
	min-width: 260px;
	margin: 0 auto;
	padding: 2.2em 2em;
	border-radius: 1em;
	background: rgba(10,10,10,0.92);
	color: #eaeaea;
	text-shadow: 0 0 8px #000, 0 0 24px #fff1, 0 0 2px #fff;
	box-shadow: 0 4px 32px #000b;
}
body {
	margin: 0;
	padding: 0;
	min-height: 100vh;
	font-family: 'Montserrat', Arial, sans-serif;
	background: linear-gradient(120deg, #181818 80%, #232323 100%);
	color: #eaeaea;
	overflow-x: hidden;
}
.hero {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	height: 100vh;
	width: 100vw;
	box-sizing: border-box;
	background: rgba(0,0,0,0.5);
	text-align: center;
	position: relative;
	overflow: hidden;
}
.hero-bg-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	object-fit: cover;
	z-index: 0;
	opacity: 0.45;
	pointer-events: none;
	filter: grayscale(1) contrast(1.18) brightness(0.6) blur(1.2px);
	box-shadow: 0 0 0 9999px rgba(0,0,0,0.45) inset;
}
.hero::after {
	content: '';
	position: absolute;
	top: 0; left: 0; width: 100vw; height: 100vh;
	pointer-events: none;
	z-index: 1;
	background: radial-gradient(ellipse at center, rgba(0,0,0,0) 60%, rgba(0,0,0,0.7) 100%);
}
.branding {
	transition: opacity 1.5s;
}
.branding h1 {
	font-size: 3rem;
	letter-spacing: 0.1em;
	margin: 0;
	animation: fadeInDown 1.2s cubic-bezier(.77,0,.18,1) 0.2s both;
	color: #fff;
	text-shadow:
		0 0 8px #000,
		0 0 24px #000,
		2px 2px 24px #000,
		0 0 12px #fff1;
	filter: drop-shadow(0 0 12px #000);
}
.branding .tagline {
	font-size: 1.5rem;
	margin: 1rem 0 0 0;
	color: #eaeaea;
	text-shadow:
		0 0 8px #000,
		0 0 24px #000,
		2px 2px 24px #000,
		0 0 12px #fff1;
	filter: drop-shadow(0 0 12px #000);
}
.intro {
	margin: 2rem auto 0 auto;
	max-width: 600px;
	font-size: 1.2rem;
	color: #e0e0e0;
	animation: fadeIn 1.5s cubic-bezier(.77,0,.18,1) 1.2s both;
	transition: opacity 1.5s;
}
.services {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
	margin: 3rem auto;
	max-width: 1100px;
	background: linear-gradient(120deg, #181818 80%, #232323 100%);
	box-shadow: 0 0 32px #000b inset;
}
.service-card {
	background: rgba(20,20,20,0.92);
	border-radius: 1rem;
	box-shadow: 0 8px 32px 0 rgba(31,38,135,0.37);
	padding: 2rem 1.5rem;
	min-width: 260px;
	max-width: 320px;
	flex: 1 1 260px;
	transition: transform 0.4s cubic-bezier(.77,0,.18,1), box-shadow 0.4s;
	opacity: 0;
	transform: translateY(40px);
}
.service-card.visible {
	opacity: 1;
	transform: translateY(0);
	box-shadow: 0 12px 40px 0 rgba(31,38,135,0.47);
}
.service-card h2 {
	margin-top: 0;
	color: #eaeaea;
	text-shadow: 0 0 8px #000, 0 0 16px #fff1;
}
.service-card p {
	margin-bottom: 0;
	color: #d0d0d0;
	text-shadow: 0 0 6px #000, 0 0 12px #fff1;
}
.service-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin: 2.5em 0;
  gap: 0;
}
.service-row:nth-child(even) {
  flex-direction: row-reverse;
}
.service-img {
  flex: 0 0 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,10,0.85);
  box-shadow: 0 4px 32px #000b, 0 0 24px #fff1;
  border-radius: 1em 0 0 1em;
  overflow: hidden;
  min-height: 260px;
  max-width: 340px;
}
.service-row:nth-child(even) .service-img {
  border-radius: 0 1em 1em 0;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.7) contrast(1.15) brightness(0.85);
  box-shadow: 0 0 24px #000a;
}
.service-desc {
  flex: 1 1 340px;
  background: rgba(20,20,20,0.96);
  color: #eaeaea;
  padding: 2.2em 2em 2em 2em;
  border-radius: 0 1em 1em 0;
  box-shadow: 0 4px 32px #000b inset;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 260px;
  max-width: 540px;
  text-align: left;
  position: relative;
}
.service-row:nth-child(even) .service-desc {
  border-radius: 1em 0 0 1em;
}
.service-desc h2 {
  margin: 0 0 0.2em 0;
  font-size: 2rem;
  color: #fff;
  text-shadow: 0 0 8px #000, 0 0 16px #fff1;
}
.service-tag {
  font-size: 1.1rem;
  color: #ffd700;
  letter-spacing: 0.04em;
  margin-bottom: 0.7em;
  text-shadow: 0 0 8px #000, 0 0 16px #fff1;
}
.service-desc p {
  color: #d0d0d0;
  text-shadow: 0 0 6px #000, 0 0 12px #fff1;
  font-size: 1.13rem;
  margin: 0 0 0.2em 0;
}
@keyframes fadeInDown {
	from { opacity: 0; transform: translateY(-40px); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(40px); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}
@media (max-width: 900px) {
	.services { flex-direction: column; align-items: center; }
}

/* Modal styles */
.service-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10,10,10,0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20000;
  transition: opacity 0.3s;
}
.service-modal .modal-content {
  background: #181818;
  color: #eaeaea;
  border-radius: 1.2em;
  box-shadow: 0 8px 48px #000c, 0 0 0 4px #232323;
  padding: 2.5em 2em 2em 2em;
  max-width: 420px;
  width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: fadeInUp 0.4s cubic-bezier(.77,0,.18,1);
}
.close-modal {
  position: absolute;
  top: 1.1em;
  right: 1.3em;
  font-size: 2.2rem;
  color: #ffd700;
  cursor: pointer;
  z-index: 10;
  text-shadow: 0 0 8px #000, 0 0 16px #fff1;
  transition: color 0.2s;
}
.close-modal:hover {
  color: #fff;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin-top: 1.2em;
  justify-content: center;
}
.gallery img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 0.5em;
  box-shadow: 0 2px 12px #000a;
  background: #232323;
}
@media (max-width: 600px) {
  .service-modal .modal-content {
    padding: 1.2em 0.5em 1em 0.5em;
    max-width: 98vw;
  }
  .gallery img {
    width: 90px;
    height: 60px;
  }
}
