* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f4f4f4;
  color: #222;
}

.header {
  background: #101010;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 18px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: white;
  text-decoration: none;
  font-size: 24px;
  font-weight: 800;
}

.logo span {
  color: #ffcc00;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffcc00;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

.hero {
  min-height: 90vh;
  background:
    linear-gradient(rgba(0,0,0,0.68), rgba(0,0,0,0.68)),
    url("https://images.unsplash.com/photo-1487754180451-c456f719a1fc?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 40px 25px;
}

.hero-box {
  max-width: 850px;
  margin-left: 8%;
  color: white;
}

.small-title {
  color: #ffcc00;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 62px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn,
.btn-outline {
  display: inline-block;
  padding: 15px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn {
  background: #ffcc00;
  color: #111;
}

.btn:hover {
  background: white;
}

.btn-outline {
  border: 2px solid #ffcc00;
  color: #ffcc00;
}

.btn-outline:hover {
  background: #ffcc00;
  color: #111;
}

.section {
  max-width: 1200px;
  margin: auto;
  padding: 70px 25px;
  text-align: center;
}

.section h2 {
  font-size: 38px;
  margin-bottom: 35px;
}

.cards,
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.card,
.service {
  background: white;
  padding: 35px 25px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.10);
  transition: 0.3s;
}

.card:hover,
.service:hover {
  transform: translateY(-8px);
}

.card h3 {
  margin-bottom: 14px;
  font-size: 22px;
}

.card p {
  line-height: 1.6;
}

.service {
  font-size: 21px;
  font-weight: bold;
}

.promo {
  max-width: 1100px;
  margin: 40px auto 80px;
  background: #111;
  color: white;
  padding: 45px;
  border-radius: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

.promo h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.promo p {
  font-size: 42px;
  color: #ffcc00;
  font-weight: bold;
}

.promo span {
  color: #888;
  text-decoration: line-through;
  font-size: 28px;
}

.page-title {
  background:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
    url("https://images.unsplash.com/photo-1625047509168-a7026f36de04?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 95px 25px;
}

.page-title h1 {
  color: #ffcc00;
  font-size: 50px;
  margin-bottom: 12px;
}

.page-title p {
  font-size: 21px;
}

.offer-card {
  max-width: 650px;
  margin: 80px auto;
  background: #111;
  color: white;
  padding: 60px 30px;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.offer-card h2 {
  font-size: 36px;
  margin-bottom: 25px;
}

.old-price {
  color: #888;
  font-size: 34px;
  text-decoration: line-through;
}

.new-price {
  color: #ffcc00;
  font-size: 70px;
  font-weight: bold;
  margin: 10px 0 20px;
}

.offer-card .btn {
  margin-top: 25px;
}

.text-section {
  max-width: 900px;
  margin: 80px auto;
  background: white;
  padding: 45px;
  border-radius: 22px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.10);
}

.text-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.text-section p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.contact-wrapper {
  max-width: 1150px;
  margin: 80px auto;
  padding: 0 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

.contact-info,
.contact-form {
  background: white;
  padding: 38px;
  border-radius: 22px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.10);
}

.contact-info h2,
.contact-form h2 {
  font-size: 30px;
  margin-bottom: 25px;
}

.contact-info p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-link {
  color: #111;
  font-weight: bold;
  text-decoration: none;
}

.contact-link:hover {
  color: #ff9900;
  text-decoration: underline;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
}

.contact-form textarea {
  height: 150px;
  resize: none;
}

.contact-form button {
  width: 100%;
  background: #111;
  color: white;
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #ffcc00;
  color: #111;
}

.map-section {
  max-width: 1150px;
  margin: 0 auto 80px;
  padding: 0 25px;
  text-align: center;
}

.map-section h2 {
  font-size: 34px;
  margin-bottom: 25px;
}

.map-section iframe {
  border-radius: 22px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.footer {
  background: #101010;
  color: white;
  text-align: center;
  padding: 25px;
}

@media (max-width: 850px) {
  .menu-btn {
    display: block;
  }

  .navbar {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
    text-align: center;
    gap: 15px;
  }

  .nav-links.active {
    display: flex;
  }

  .hero-box {
    margin-left: 0;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 18px;
  }

  .promo {
    flex-direction: column;
    text-align: center;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .page-title h1 {
    font-size: 38px;
  }
}