body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  background-color: #111;
  color: #fff;
  padding-top: 0;
}

header {
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  min-height: 80px;
}

.hamburger {
  display: none !important;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 10000;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background-color: #fff;
  margin: 4px 0;
  transition: 0.3s;
  border-radius: 3px;
}

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

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

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

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav a.cta {
  background: linear-gradient(to right, #ff00cc, #3333ff);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  color: #fff;
}

.logo img {
  animation: laserGlow 2.5s infinite ease-in-out;
  max-height: 180px;
  height: auto;
  width: auto;
}

@keyframes laserGlow {
  0% {
    filter: drop-shadow(0 0 5px #ff00cc) drop-shadow(0 0 10px #3333ff);
  }
  50% {
    filter: drop-shadow(0 0 15px #ff00cc) drop-shadow(0 0 25px #3333ff);
  }
  100% {
    filter: drop-shadow(0 0 5px #ff00cc) drop-shadow(0 0 10px #3333ff);
  }
}

.logo img:hover {
  animation: bounceLogo 0.6s ease;
}

@keyframes bounceLogo {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-10px); }
  50%  { transform: translateY(5px); }
  70%  { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

.hero {
  text-align: center;
  padding: 60px 20px 40px 20px;
  background: linear-gradient(135deg, #ff00cc, #3333ff);
  color: white;
  margin-top: 220px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.5rem;
  margin: 0 0 10px 0;
  color: white;
}

.hero .tagline {
  font-size: 1.2rem;
  margin: 0 0 30px 0;
  color: white;
}

.business-info {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}

.business-info p {
  margin: 10px 0;
  font-size: 1.1rem;
  color: white;
}

.contact-page {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  color: #fff;
}

.contact-page h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.contact-page h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 10px;
}

.contact-form label {
  font-weight: bold;
  margin-bottom: 0.25rem;
  color: #ff00cc;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 2px solid #333;
  border-radius: 5px;
  font-size: 1rem;
  background: #222;
  color: #fff;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff00cc;
}

.contact-form button {
  background-color: #ff00cc;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  font-weight: bold;
}

.contact-form button:hover {
  background-color: #e600b3;
}

.contact-info {
  margin-top: 2rem;
  font-size: 1rem;
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 10px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin: 10px 0;
  font-size: 1.1rem;
}

.social-links {
  text-align: center;
  margin-top: 2rem;
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 10px;
}

.social-links .icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.social-icon {
  display: inline-block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icon img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
}

.social-icon:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 15px rgba(255, 0, 204, 0.8));
}

.map-section {
  margin-top: 3rem;
  text-align: center;
  padding: 2rem;
  background: #1a1a1a;
  border-radius: 10px;
}

.map-section h2 {
  margin-bottom: 1rem;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #000;
  font-size: 0.9rem;
  margin-top: 3rem;
}

footer img {
  animation: laserGlow 2.5s infinite ease-in-out;
  max-height: 180px;
  height: auto;
  width: auto;
  display: block;
  margin: 0 auto 1rem auto;
}

footer img:hover {
  animation: bounceLogo 0.6s ease;
}

@media screen and (max-width: 768px) {
  header {
    padding: 1rem;
  }

  .logo img {
    max-height: 120px !important;
  }

  .hamburger {
    display: flex !important;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: #000;
    transition: right 0.3s ease;
    padding-top: 140px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 2rem;
  }

  nav li {
    border-bottom: 1px solid #333;
    padding: 1rem 0;
  }

  nav a {
    display: block;
    font-size: 1.2rem;
  }

  nav a.cta {
    margin-top: 1rem;
    text-align: center;
  }

  .hero {
    margin-top: 160px;
    padding: 2rem 1rem;
  }

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

  .business-info {
    padding: 15px;
  }

  .business-info p {
    font-size: 1rem;
  }

  .contact-page {
    padding: 0.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .social-links .icons {
    gap: 1.5rem;
  }

  .social-icon img {
    width: 50px;
    height: 50px;
  }
}
