* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(135deg, #0d0d1a, #1a0033);
  color: #fff;
  line-height: 1.6;
}

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

.logo {
  height: 50px;
}

.navbar nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #e0c080;
  font-weight: bold;
  transition: 0.3s;
}

.navbar nav a:hover {
  color: #fff;
  text-shadow: 0 0 10px #e0c080;
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url('https://www.transparenttextures.com/patterns/dark-mosaic.png');
}

.glow-text {
  font-size: 3rem;
  color: #e0c080;
  text-shadow: 0 0 10px #e0c080, 0 0 20px #e0c080;
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 5px #e0c080; }
  to { text-shadow: 0 0 20px #fff; }
}

.tagline {
  margin-top: 15px;
  font-size: 1.2rem;
  color: #ccc;
}

.cta-button {
  margin-top: 25px;
  padding: 12px 25px;
  border: none;
  background: linear-gradient(45deg, #e0c080, #a67c52);
  color: #000;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}

.cta-button:hover {
  background: linear-gradient(45deg, #fff, #e0c080);
  box-shadow: 0 0 15px #e0c080;
}

.section {
  padding: 100px 50px;
  text-align: center;
}

.services .service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service-card {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(224,192,128,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(224,192,128,0.6);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

.contact-form input, .contact-form textarea {
  padding: 12px;
  border-radius: 10px;
  border: none;
  outline: none;
}

.footer {
  text-align: center;
  padding: 20px;
  background: rgba(0,0,0,0.8);
}

.footer-logo {
  height: 40px;
  margin-bottom: 10px;
}
