/* --------- BASE --------- */
body {
  margin: 0;
  background: #0d0d0d;
  color: #f4f4f4;
  font-family: Arial, sans-serif;
  line-height: 1.7;
}

/* --------- HERO --------- */
.hero {
  padding: 100px 20px;
  text-align: center;
  background-image: url('https://images.unsplash.com/photo-1509223197845-458d87318791?auto=format&fit=crop&w=1920&q=80');
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.75);
}

.hero-content {
  max-width: 800px;
  margin: auto;
  background: rgba(0,0,0,0.55);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(200,150,80,0.35);
}

.hero h1 {
  font-size: 3rem;
  margin: 0;
  color: #d8b56c;
  letter-spacing: 3px;
}

.hero-subtitle {
  margin-top: 15px;
  font-size: 1.2rem;
  color: #f1e7d0;
  line-height: 1.4;
}

/* --------- INTRO --------- */
.intro {
  max-width: 900px;
  margin: 60px auto;
  text-align: center;
  padding: 0 20px;
}

.intro h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #d1b37a;
}

.intro p {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #e0e0e0;
}

/* --------- FORM SECTION --------- */
.form-section {
  display: flex;
  justify-content: center;
  padding: 40px 20px 80px;
}

.form-box {
  width: 100%;
  max-width: 900px;
  background: #161616;
  border: 1px solid #3a3a3a;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
  transition: transform 0.3s ease;
}

.form-box:hover {
  transform: translateY(-6px);
}

iframe {
  border: none;
  width: 100%;
}

/* --------- FOOTER --------- */
footer {
  text-align: center;
  padding: 30px 0;
  color: #888;
  font-size: 0.9rem;
  border-top: 1px solid #222;
}
