* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background-color: #f9f9f9; color: #222; line-height: 1.6; }

header.hero {
  background: url('https://images.unsplash.com/photo-virtual-tour.jpg') no-repeat center/cover;
  height: 100vh; color: white; position: relative;
  display: flex; align-items: center; justify-content: center; padding: 0 2rem;
}

.navbar { position: absolute; top: 20px; left: 40px; z-index: 10; }
.logo { width: 160px; }

.hero-content {
  background-color: rgba(0, 0, 0, 0.5); padding: 3rem; border-radius: 15px;
  text-align: center;
}

.hero h1 { font-size: 2.8rem; margin-bottom: 1rem; }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; }

.cta-button {
  padding: 0.8rem 1.5rem; background-color: #00b4d8;
  color: white; text-decoration: none; font-weight: bold;
  border-radius: 8px; transition: background 0.3s;
}
.cta-button:hover { background-color: #0077b6; }

section { padding: 4rem 2rem; max-width: 900px; margin: auto; }
.services ul { list-style: none; padding: 0; margin-top: 1rem; }
.services li {
  background-color: #e0f7fa; margin-bottom: 0.5rem;
  padding: 0.8rem 1rem; border-radius: 8px;
}

.virtual-tour {
  background-color: #ffffff; text-align: center; padding-top: 2rem;
}
.tour-wrapper {
  max-width: 900px; margin: 0 auto;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  border-radius: 10px; overflow: hidden;
}

.contact form {
  display: flex; flex-direction: column;
  gap: 1rem; margin-top: 1rem;
}
.contact input,
.contact textarea {
  padding: 0.8rem; font-size: 1rem;
  border: 1px solid #ccc; border-radius: 6px;
  resize: vertical;
}
.contact button {
  background-color: #00b4d8; color: white;
  padding: 0.8rem; border: none; border-radius: 6px;
  cursor: pointer;
}
.contact button:hover { background-color: #0077b6; }

footer {
  text-align: center; padding: 2rem;
  font-size: 0.9rem; background-color: #f0f0f0;
  margin-top: 2rem;
}
