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

body{
  min-height:100vh;
  background:
  linear-gradient(rgba(0,0,0,0.82),
  rgba(0,0,0,0.88)),
  url("../images/exterior.jpg");

  background-size:cover;
  background-position:center;

  display:flex;
  justify-content:center;
  align-items:center;

  padding:40px 20px;
  color:white;
}

.inquire-container{
  width:100%;
  max-width:700px;

  background:
  linear-gradient(
    135deg,
    #ffffff,
    #ffffff
  );

  border-radius:32px;

  padding:55px;

  box-shadow:
  0 25px 60px rgba(0,0,0,0.55);

  border:1px solid rgba(255,255,255,0.4);
}


.logo{
  width:180px;

  margin-bottom:20px;

  object-fit:contain;

  filter:
  drop-shadow(0 6px 18px rgba(0,0,0,0.18));
}


.small-title{
  color:#c79700;

  font-size:13px;

  font-weight:800;

  letter-spacing:4px;

  margin-bottom:14px;
}

h1{
   font-size:54px;


  line-height:1;

  margin-bottom:22px;

  font-weight:800;

  color:#111;
}

.description{
  color:#444;

  line-height:1.8;

  font-size:16px;

  max-width:500px;

  margin-bottom:35px;
}

form{
  display:flex;
  flex-direction:column;
  gap:22px;
}

input,
textarea{
  width:100%;

  background:#121212;

  border:1px solid rgba(255,255,255,0.08);

  color:white;

  padding:18px 22px;

  border-radius:18px;

  font-size:16px;

  transition:0.3s;

  outline:none;

    box-shadow:
  inset 0 0 0 1px rgba(255,255,255,0.03);
}


textarea{
  min-height:180px;
  resize:none;
}

input::placeholder,
textarea::placeholder{
  color:#8f8f8f;
}

input:focus,
textarea:focus{
  border-color:#f5c400;

  background:#1d1d1d;

  box-shadow:
  0 0 0 4px rgba(245,196,0,0.08);
}

button{
  height:64px;

  border:none;

  border-radius:18px;

  background:linear-gradient(
    135deg,
    #f5c400,
    #ffcc00
  );

  color:#111;

  font-size:17px;

  font-weight:800;

  cursor:pointer;

  transition:0.35s;
}

button:hover{
  transform:translateY(-3px);

  box-shadow:
  0 10px 25px rgba(245,196,0,0.25);

  opacity:0.95;
}

.back-home{
  display:inline-flex;

  align-items:center;

  gap:10px;

  margin-top:30px;

  color:#111;

  text-decoration:none;

  font-weight:700;

  transition:0.3s;
}

.back-home:hover{
  transform:translateX(-5px);
}

@media(max-width:768px){

  .inquire-container{
    padding:45px 25px;
    border-radius:24px;
  }

  h1{
    font-size:40px;
  }

  .description{
    font-size:15px;
  }

  input,
  textarea{
    padding:16px 18px;
  }

  button{
    height:58px;
    font-size:16px;
  }

}

@media(max-width:480px){

  body{
    padding:20px 12px;
  }

  .inquire-container{
    padding:35px 20px;
    border-radius:20px;
  }

  .logo{
    width:140px;
  }

  .small-title{
    font-size:11px;
    letter-spacing:3px;
  }

  h1{
    font-size:34px;
    line-height:1.05;
  }

  .description{
    font-size:14px;
    line-height:1.7;
  }

  input,
  textarea{
    font-size:15px;
    border-radius:16px;
  }

  textarea{
    min-height:150px;
  }

  button{
    height:54px;
    font-size:15px;
    border-radius:16px;
  }

  .back-home{
    font-size:14px;
  }

}