
body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: #f9f9fb;
  color: #333;
}


.main-head {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 999;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

.left-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  height: 50px;
}

.nav-list {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-list-item {
  margin: 0 12px;
}

.nav-link {
  text-decoration: none;
  font-weight: 500;
  color: #FF714B;
  padding: 8px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #FF714B;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #FF714B;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.quote-btn {
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  cursor: pointer;
  border: 1px solid #FF714B;
  color: #FF714B;
  padding: 8px 15px;
  background: #fff5f2;
}

.quote-btn:hover {
  background: #ff99cc;
  color: white;
}


.contact {
  padding: 100px 20px 60px; 
  text-align: center;
}

.contact h1 {
  color: #f5c9b0;
  font-family: "Press Start 2P", cursive;
  font-size: 42px;
  margin-bottom: 40px;
}

.form-me {
  max-width: 500px;
  background: white;
  padding: 30px;
  margin: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}


.form-me label {
  text-align: left;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}


.form-me input,
.form-me textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  outline: none;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-me input:focus,
.form-me textarea:focus {
  border: 1px solid #ff714b;
  box-shadow: 0 0 5px rgba(255,113,75,0.3);
}

textarea {
  resize: vertical;
  min-height: 100px;
}


.order-button {
  background-color: #ff714b;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.order-button:hover {
  background-color: #ff5722;
}
