:root {
  --primary: #0b3d91;
  --accent: #fbb034;
  --text: #0f172a;
  --white: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f9fafb;
  color: var(--text);
}

/* Hero */
.sale-hero {
  position: relative;
  height: 100vh;
  background: url("https://picsum.photos/1600/900?business,office") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.sale-hero .overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(11, 61, 145, 0.7);
  z-index: 1;
}

.sale-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  animation: fadeInUp 1.5s ease;
}

.sale-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.btn-contact {
  display: inline-block;
  background: var(--accent);
  color: var(--text);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}
.btn-contact:hover {
  background: #ffa500;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background: var(--primary);
  color: var(--white);
}

/* Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
