/* Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Arial, sans-serif; background: #000; color: #fff; }

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #000;
}
.logo { height: 70px; }
nav a {
  color: cyan;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Hero */
.hero {
  background: url('assets/hero-background.png') no-repeat center/cover;
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}
.hero-text {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-block;
}
.hero h1 {
  font-size: 2.8rem;
  color: #00ffff;
  text-shadow: 0 0 8px #00ffff;
  margin-bottom: 0.5rem;
}
.hero p {
  color: #ccc;
  font-size: 1.1rem;
}

/* Services */
.services {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  padding: 60px 20px;
  background-color: #111;
}
.service-box {
  background: #1a1a1a;
  padding: 20px 30px;
  border-radius: 10px;
  width: 280px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,255,255,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,255,255,0.3);
}
.service-box h3 { margin-bottom: 10px; font-size: 1.2rem; }
.service-box p { color: #bbb; }

/* Contact */
.contact-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('assets/hero-background.png') no-repeat center/cover;
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
}
.contact-hero .hero-text {
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
  margin-top: 40px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 100%;
}
form {
  display: flex;
  flex-direction: column;
}
input, textarea {
  margin-bottom: 10px;
  padding: 10px;
  font-size: 1rem;
}
button {
  margin-top: 10px;
  padding: 10px;
  background: cyan;
  border: none;
  cursor: pointer;
  font-weight: bold;
}
#confirmation {
  margin-top: 10px;
  color: lightgreen;
  text-align: center;
}
.hidden { display: none; }

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #000;
  font-size: 0.9rem;
  color: #666;
}
