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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: #050505;
  color: #ffffff;
  line-height: 1.6;
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at top, #1a1a1a, #000000);
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3), rgba(0,0,0,0.9));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 300;
  color: #D4AF37;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.hero p {
  opacity: 0.85;
  margin-bottom: 24px;
}

.cta {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #D4AF37, #b8962e);
  color: #000;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
}

section {
  padding: 80px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.services h2, .about h2, .quote h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #D4AF37;
  font-weight: 400;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: linear-gradient(145deg, #0a0a0a, #020202);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  opacity: 0.85;
}

.quote form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

input, textarea {
  padding: 14px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
}

button {
  padding: 14px;
  background: linear-gradient(135deg, #D4AF37, #b8962e);
  border: none;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 40px 20px;
  background: #000000;
  opacity: 0.9;
}

footer p {
  margin-bottom: 8px;
}

copyright {
  opacity: 0.6;
  font-size: 14px;
}
