* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #f7f2ea;
  color: #1c1c1c;
  line-height: 1.6;
}

.navbar {
  background: #111111;
  color: white;
  padding: 22px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  color: white;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
}

.navbar a {
  color: white;
  text-decoration: none;
  margin-left: 24px;
  font-weight: bold;
}

.hero {
  min-height: 85vh;
  padding: 100px 8%;
  background: linear-gradient(135deg, #111111, #3a2d24);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tagline {
  color: #d8b98f;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 56px;
  max-width: 950px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-text {
  max-width: 650px;
  font-size: 20px;
  margin-bottom: 30px;
  color: #f2e8dc;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  background: #d8b98f;
  color: #111;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  width: fit-content;
}

.secondary-btn {
  background: transparent;
  color: white;
  border: 2px solid #d8b98f;
}

section {
  padding: 80px 8%;
}

section h2 {
  font-size: 38px;
  margin-bottom: 30px;
}

.about p {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: 18px;
}

.section-intro {
  max-width: 800px;
  margin-bottom: 28px;
  color: #f2e8dc;
}

.cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 18px;
  flex: 1;
  min-width: 250px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.card h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.featured {
  border: 3px solid #d8b98f;
  transform: scale(1.03);
}

.price {
  font-size: 34px;
  font-weight: bold;
  color: #3a2d24;
  margin: 10px 0;
}

.dark-section {
  background: #111111;
  color: white;
}

.dark-card {
  background: #1f1f1f;
  color: white;
  border: 1px solid #333;
}

form {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 650px;
}

input,
textarea,
select {
  padding: 16px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 16px;
  background: white;
}

textarea {
  min-height: 140px;
}

button {
  background: #111111;
  color: white;
  border: none;
  padding: 16px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

button:hover,
.btn:hover {
  opacity: 0.85;
}

footer {
  background: #111111;
  color: white;
  text-align: center;
  padding: 28px;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 18px;
  }

  .navbar nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .navbar a {
    margin-left: 0;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero {
    padding: 80px 6%;
  }

  section {
    padding: 60px 6%;
  }

  .cards {
    flex-direction: column;
  }

  .featured {
    transform: none;
  }
}