* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #0a0a0a;
  color: #fff;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(14px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 122, 0, 0.35);
}

.brand {
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-line {
  white-space: nowrap;
  font-size: 34px;
  font-weight: 1000;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(255, 122, 0, 0.7);
}

.brand small {
  margin-top: 5px;
  font-size: 12px;
  letter-spacing: 1px;
  color: #ffb000;
  font-weight: 800;
}

.nav {
  display: flex;
  gap: 18px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
  padding: 12px 18px;
  border-radius: 30px;
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.06);
}

.nav a:hover,
.nav a.active {
  background: linear-gradient(135deg, #ff7900, #ffb000);
  color: #111;
  box-shadow: 0 0 20px rgba(255, 122, 0, 0.6);
  transform: translateY(-3px);
}

.menu-btn {
  display: none;
  border: none;
  background: #ff7900;
  color: #111;
  font-size: 28px;
  padding: 6px 13px;
  border-radius: 10px;
  cursor: pointer;
}

.services {
  padding: 160px 7% 90px;
  background: linear-gradient(180deg, #181818, #070707);
  text-align: center;
}

.services h2,
.zone h2,
.cta h2,
.form-page h1,
.contact-page h1,
.about-content h1 {
  font-size: 44px;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: #fff;
}

.services h2::after,
.zone h2::after,
.about-content h1::after,
.form-page h1::after,
.contact-page h1::after {
  content: "";
  display: block;
  width: 95px;
  height: 5px;
  background: #ff7900;
  margin: 18px auto 0;
  border-radius: 30px;
}

.services-grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  background: #1d1d1d;
  border-radius: 24px;
  overflow: hidden;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  transition: 0.35s;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #ff7900;
  box-shadow: 0 0 35px rgba(255,122,0,0.35);
}

.service-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
}

.service-text {
  padding: 30px;
}

.service-text h3 {
  color: #ff7900;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.service-text p,
.zone p,
.cta p,
.form-page p,
.contact-page p,
.about-content p {
  color: #ddd;
  font-size: 18px;
  line-height: 1.8;
}

.zone {
  padding: 90px 7%;
  background: linear-gradient(135deg, #ff7900, #ffb000);
  color: #111;
  text-align: center;
}

.zone p {
  color: #111;
  font-weight: 900;
  margin-bottom: 30px;
}

.cities {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cities span {
  background: #111;
  color: #fff;
  padding: 15px 25px;
  border-radius: 40px;
  font-weight: 1000;
}

.cta {
  padding: 90px 7%;
  text-align: center;
  background: #111;
}

.cta p {
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 17px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 1000;
  text-transform: uppercase;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-5px);
}

.btn-white {
  background: #fff;
  color: #111;
}

.btn-orange {
  background: linear-gradient(135deg, #ff7900, #ffb000);
  color: #111;
}

.about-page,
.form-page,
.contact-page {
  padding: 160px 7% 90px;
  background: linear-gradient(180deg, #181818, #070707);
  min-height: 100vh;
  text-align: center;
}

.about-image {
  display: flex;
  justify-content: center;
  margin-bottom: 55px;
}

.about-image img {
  width: 100%;
  max-width: 850px;
  border-radius: 28px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.65);
  border: 1px solid rgba(255,122,0,0.35);
}

.about-content {
  max-width: 1050px;
  margin: auto;
}

.about-content h1 {
  color: #ff7900;
  text-shadow: 0 0 25px rgba(255,122,0,0.55);
}

.about-content h2 {
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.about-content p {
  margin-bottom: 25px;
}

.about-content strong {
  color: #ffb000;
}

.about-points {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 35px 0;
}

.about-points span {
  background: linear-gradient(135deg, #ff7900, #ffb000);
  color: #111;
  padding: 15px 24px;
  border-radius: 40px;
  font-weight: 1000;
}

.contact-form {
  max-width: 750px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,122,0,0.35);
  background: #151515;
  color: #fff;
  font-size: 16px;
}

.contact-form textarea {
  height: 160px;
  resize: none;
}

.contact-box {
  max-width: 700px;
  margin: 40px auto 0;
  background: #1d1d1d;
  padding: 35px;
  border-radius: 24px;
  border: 1px solid rgba(255,122,0,0.35);
}

.contact-box h2 {
  color: #ff7900;
  margin-bottom: 20px;
}

footer {
  background: #050505;
  text-align: center;
  padding: 28px 7%;
  color: #aaa;
}

@media (max-width: 900px) {
  .menu-btn {
    display: block;
  }

  .nav {
    position: absolute;
    top: 95px;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    background: #090909;
    padding: 25px;
    text-align: center;
  }

  .nav.active {
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card img {
    height: 320px;
  }

  .brand-line {
    font-size: 25px;
  }

  .services h2,
  .zone h2,
  .cta h2,
  .form-page h1,
  .contact-page h1,
  .about-content h1 {
    font-size: 34px;
  }

  .about-content h2 {
    font-size: 24px;
  }
}